initial commit
This commit is contained in:
0
Packages/Gitignore/.no-sublime-package
Normal file
0
Packages/Gitignore/.no-sublime-package
Normal file
41
Packages/Gitignore/README.md
Normal file
41
Packages/Gitignore/README.md
Normal file
@@ -0,0 +1,41 @@
|
||||
# Sublime Text 3/4 Gitignore plugin
|
||||
|
||||
### Sublime Text 3/4 plugin for compiling gitignore templates from [GitHub's collection](https://github.com/github/gitignore)
|
||||
|
||||
### How it works
|
||||
Open the command Pallet with ```Cmd + Shift + P``` for Mac or ```Ctrl + Shift + P``` for Linux/Windows
|
||||
|
||||
Type ```Gitignore``` and select ```Gitignore: new gitignore```
|
||||
|
||||
Select templates from the list and select `Done` to create your new gitignore.
|
||||
|
||||
Save it to your repo, add it, and you're good to go!
|
||||
|
||||
## Installation
|
||||
|
||||
Look for `Gitignore` on package control!
|
||||
|
||||
### Or
|
||||
|
||||
#### Linux
|
||||
|
||||
```
|
||||
git clone https://github.com/vilhelmen/Sublime-Gitignore ~/.config/sublime-text/Packages/Gitignore
|
||||
```
|
||||
|
||||
#### Windows
|
||||
|
||||
```
|
||||
git clone https://github.com/vilhelmen/Sublime-Gitignore %APPDATA%/Sublime\ Text/Packages/Gitignore
|
||||
```
|
||||
|
||||
|
||||
#### Mac
|
||||
|
||||
```
|
||||
git clone https://github.com/vilhelmen/Sublime-Gitignore ~/Library/Application\ Support/Sublime\ Text/Packages/Gitignore
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
This month's cool number: 247
|
||||
6
Packages/Gitignore/commands.sublime-commands
Normal file
6
Packages/Gitignore/commands.sublime-commands
Normal file
@@ -0,0 +1,6 @@
|
||||
[
|
||||
{
|
||||
"caption": "Gitignore: New gitignore",
|
||||
"command": "compilegitignore"
|
||||
}
|
||||
]
|
||||
16
Packages/Gitignore/compile.sh
Executable file
16
Packages/Gitignore/compile.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Throw out what we have
|
||||
rm -rf gitignore
|
||||
|
||||
# Clone the current listing
|
||||
git clone --depth 1 https://github.com/github/gitignore.git MASTER_GITIGNORE
|
||||
|
||||
# Compile listing
|
||||
mkdir gitignore
|
||||
cp MASTER_GITIGNORE/Global/*.gitignore gitignore/
|
||||
cp MASTER_GITIGNORE/*.gitignore gitignore/
|
||||
rm -rf MASTER_GITIGNORE
|
||||
|
||||
# I was gonna record commits and diff them... or I could just have git notice any changes
|
||||
# git status --porcelain | wc -l | tr -d ' ' != "0" == differences
|
||||
76
Packages/Gitignore/gitignore.py
Normal file
76
Packages/Gitignore/gitignore.py
Normal file
@@ -0,0 +1,76 @@
|
||||
import os
|
||||
|
||||
import sublime
|
||||
import sublime_plugin
|
||||
|
||||
|
||||
class compilegitignoreCommand(sublime_plugin.WindowCommand):
|
||||
_file_listing = None
|
||||
_search_path = None
|
||||
|
||||
def _delayed_init(self):
|
||||
# Put off init until first run to save resources
|
||||
if not self._file_listing:
|
||||
self._search_path = os.path.join(sublime.packages_path(), 'Gitignore', 'gitignore')
|
||||
# Deprecating zipfile package support (sorry!)
|
||||
# It didn't really support unzipped overrides. This will, but I guess an update would wipe it out?
|
||||
# This won't recurse, sorry! I would if we had pathlib!
|
||||
# Also, I suppose it's vulnerable to directories ending in .gitignore
|
||||
self._file_listing = sorted(f[:-10] for f in os.listdir(self._search_path) if f.endswith('.gitignore'))
|
||||
# A set would be much more efficient, but a sorted list is way nicer to display
|
||||
# Might be able to use a sorted dict key set, but it's iffy
|
||||
|
||||
def _run_selection(self):
|
||||
# Gotta do some scoping tricks to maintain the list through the callbacks
|
||||
selection = []
|
||||
# Just gotta keep a copy :(
|
||||
# You COULD stitch iterators together ['Done'], [x for x in self._list_items if x not in selection]
|
||||
# BUT then the selection indices are off
|
||||
listing = self._file_listing.copy()
|
||||
|
||||
def selection_callback(index):
|
||||
if index < 0:
|
||||
# User cancel
|
||||
pass
|
||||
elif selection and index == 0:
|
||||
# Done!
|
||||
self._write_file(selection)
|
||||
else:
|
||||
# user selected something from the list
|
||||
selection.append(listing[index])
|
||||
del listing[index]
|
||||
# Could do some fancy stitching.... but could also not!
|
||||
if len(selection) == 1:
|
||||
listing.insert(0, 'Done')
|
||||
self.window.show_quick_panel(listing, selection_callback)
|
||||
|
||||
self.window.show_quick_panel(listing, selection_callback) # sublime.KEEP_OPEN_ON_FOCUS_LOST ?
|
||||
|
||||
def run(self):
|
||||
self._delayed_init()
|
||||
self._run_selection()
|
||||
|
||||
def _write_file(self, chosen_files):
|
||||
export = []
|
||||
for name in chosen_files:
|
||||
# if the file disappeared, post-indexing, it's not our fault.
|
||||
with open(os.path.join(self._search_path, name + '.gitignore'), 'r') as f:
|
||||
export.append(' '.join(('###', name, '###')))
|
||||
export.append(f.read())
|
||||
|
||||
export = '\n\n'.join(export)
|
||||
# An unconstrained (r)strip may be bad?
|
||||
# For example, the MacOS one has '.Icon\r\r', which strip would mangle if it was at the end of the list
|
||||
# (and sublime mangles if you open it which drives me crazy when I try to add to it)
|
||||
# The gitignore syntax file doesn't mention line endings at all, which is rude.
|
||||
if not export.endswith('\n'):
|
||||
export += '\n'
|
||||
view = sublime.active_window().new_file()
|
||||
# Wild, we can't inject text in a new window without an edit object, so it has to be a second command(??)
|
||||
view.run_command('writegitignore', {'text': export})
|
||||
|
||||
|
||||
class writegitignoreCommand(sublime_plugin.TextCommand):
|
||||
def run(self, edit, **kwargs):
|
||||
self.view.insert(edit, 0, kwargs['text'])
|
||||
self.view.set_name('.gitignore')
|
||||
22
Packages/Gitignore/gitignore/AL.gitignore
Normal file
22
Packages/Gitignore/gitignore/AL.gitignore
Normal file
@@ -0,0 +1,22 @@
|
||||
### 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
|
||||
18
Packages/Gitignore/gitignore/Actionscript.gitignore
Normal file
18
Packages/Gitignore/gitignore/Actionscript.gitignore
Normal file
@@ -0,0 +1,18 @@
|
||||
# Build and Release Folders
|
||||
bin-debug/
|
||||
bin-release/
|
||||
[Oo]bj/
|
||||
[Bb]in/
|
||||
|
||||
# Other files and folders
|
||||
.settings/
|
||||
|
||||
# Executables
|
||||
*.swf
|
||||
*.air
|
||||
*.ipa
|
||||
*.apk
|
||||
|
||||
# Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties`
|
||||
# should NOT be excluded as they contain compiler settings and other important
|
||||
# information for Eclipse / Flash Builder.
|
||||
5
Packages/Gitignore/gitignore/Ada.gitignore
Normal file
5
Packages/Gitignore/gitignore/Ada.gitignore
Normal file
@@ -0,0 +1,5 @@
|
||||
# Object file
|
||||
*.o
|
||||
|
||||
# Ada Library Information
|
||||
*.ali
|
||||
2
Packages/Gitignore/gitignore/Agda.gitignore
Normal file
2
Packages/Gitignore/gitignore/Agda.gitignore
Normal file
@@ -0,0 +1,2 @@
|
||||
*.agdai
|
||||
MAlonzo/**
|
||||
33
Packages/Gitignore/gitignore/Android.gitignore
Normal file
33
Packages/Gitignore/gitignore/Android.gitignore
Normal file
@@ -0,0 +1,33 @@
|
||||
# Gradle files
|
||||
.gradle/
|
||||
build/
|
||||
|
||||
# Local configuration file (sdk path, etc)
|
||||
local.properties
|
||||
|
||||
# Log/OS Files
|
||||
*.log
|
||||
|
||||
# Android Studio generated files and folders
|
||||
captures/
|
||||
.externalNativeBuild/
|
||||
.cxx/
|
||||
*.apk
|
||||
output.json
|
||||
|
||||
# IntelliJ
|
||||
*.iml
|
||||
.idea/
|
||||
misc.xml
|
||||
deploymentTargetDropDown.xml
|
||||
render.experimental.xml
|
||||
|
||||
# Keystore files
|
||||
*.jks
|
||||
*.keystore
|
||||
|
||||
# Google Services (e.g. APIs or Firebase)
|
||||
google-services.json
|
||||
|
||||
# Android Profiling
|
||||
*.hprof
|
||||
3
Packages/Gitignore/gitignore/Anjuta.gitignore
Normal file
3
Packages/Gitignore/gitignore/Anjuta.gitignore
Normal file
@@ -0,0 +1,3 @@
|
||||
# Local configuration folder and symbol database
|
||||
/.anjuta/
|
||||
/.anjuta_sym_db.db
|
||||
1
Packages/Gitignore/gitignore/Ansible.gitignore
Normal file
1
Packages/Gitignore/gitignore/Ansible.gitignore
Normal file
@@ -0,0 +1 @@
|
||||
*.retry
|
||||
2
Packages/Gitignore/gitignore/AppEngine.gitignore
Normal file
2
Packages/Gitignore/gitignore/AppEngine.gitignore
Normal file
@@ -0,0 +1,2 @@
|
||||
# Google App Engine generated folder
|
||||
appengine-generated/
|
||||
@@ -0,0 +1,3 @@
|
||||
# Build folder and log file
|
||||
build/
|
||||
build.log
|
||||
13
Packages/Gitignore/gitignore/ArchLinuxPackages.gitignore
Normal file
13
Packages/Gitignore/gitignore/ArchLinuxPackages.gitignore
Normal file
@@ -0,0 +1,13 @@
|
||||
*.tar
|
||||
*.tar.*
|
||||
*.jar
|
||||
*.exe
|
||||
*.msi
|
||||
*.zip
|
||||
*.tgz
|
||||
*.log
|
||||
*.log.*
|
||||
*.sig
|
||||
|
||||
pkg/
|
||||
src/
|
||||
34
Packages/Gitignore/gitignore/Archives.gitignore
Normal file
34
Packages/Gitignore/gitignore/Archives.gitignore
Normal file
@@ -0,0 +1,34 @@
|
||||
# It's better to unpack these files and commit the raw source because
|
||||
# git has its own built in compression methods.
|
||||
*.7z
|
||||
*.jar
|
||||
*.rar
|
||||
*.zip
|
||||
*.gz
|
||||
*.gzip
|
||||
*.tgz
|
||||
*.bzip
|
||||
*.bzip2
|
||||
*.bz2
|
||||
*.xz
|
||||
*.lzma
|
||||
*.cab
|
||||
*.xar
|
||||
*.zst
|
||||
*.tzst
|
||||
|
||||
# Packing-only formats
|
||||
*.iso
|
||||
*.tar
|
||||
|
||||
# Package management formats
|
||||
*.dmg
|
||||
*.xpi
|
||||
*.gem
|
||||
*.egg
|
||||
*.deb
|
||||
*.rpm
|
||||
*.msi
|
||||
*.msm
|
||||
*.msp
|
||||
*.txz
|
||||
52
Packages/Gitignore/gitignore/Autotools.gitignore
Normal file
52
Packages/Gitignore/gitignore/Autotools.gitignore
Normal file
@@ -0,0 +1,52 @@
|
||||
# http://www.gnu.org/software/automake
|
||||
|
||||
Makefile.in
|
||||
/ar-lib
|
||||
/mdate-sh
|
||||
/py-compile
|
||||
/test-driver
|
||||
/ylwrap
|
||||
.deps/
|
||||
.dirstamp
|
||||
|
||||
# http://www.gnu.org/software/autoconf
|
||||
|
||||
autom4te.cache
|
||||
/autoscan.log
|
||||
/autoscan-*.log
|
||||
/aclocal.m4
|
||||
/compile
|
||||
/config.cache
|
||||
/config.guess
|
||||
/config.h.in
|
||||
/config.log
|
||||
/config.status
|
||||
/config.sub
|
||||
/configure
|
||||
/configure.scan
|
||||
/depcomp
|
||||
/install-sh
|
||||
/missing
|
||||
/stamp-h1
|
||||
|
||||
# https://www.gnu.org/software/libtool/
|
||||
|
||||
/ltmain.sh
|
||||
|
||||
# http://www.gnu.org/software/texinfo
|
||||
|
||||
/texinfo.tex
|
||||
|
||||
# http://www.gnu.org/software/m4/
|
||||
|
||||
m4/libtool.m4
|
||||
m4/ltoptions.m4
|
||||
m4/ltsugar.m4
|
||||
m4/ltversion.m4
|
||||
m4/lt~obsolete.m4
|
||||
|
||||
# Generated Makefile
|
||||
# (meta build system like autotools,
|
||||
# can automatically generate from config.status script
|
||||
# (which is called by configure script))
|
||||
Makefile
|
||||
5
Packages/Gitignore/gitignore/Backup.gitignore
Normal file
5
Packages/Gitignore/gitignore/Backup.gitignore
Normal file
@@ -0,0 +1,5 @@
|
||||
*.bak
|
||||
*.gho
|
||||
*.ori
|
||||
*.orig
|
||||
*.tmp
|
||||
11
Packages/Gitignore/gitignore/Ballerina.gitignore
Normal file
11
Packages/Gitignore/gitignore/Ballerina.gitignore
Normal file
@@ -0,0 +1,11 @@
|
||||
# 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
|
||||
2
Packages/Gitignore/gitignore/Bazaar.gitignore
Normal file
2
Packages/Gitignore/gitignore/Bazaar.gitignore
Normal file
@@ -0,0 +1,2 @@
|
||||
.bzr/
|
||||
.bzrignore
|
||||
4
Packages/Gitignore/gitignore/BricxCC.gitignore
Normal file
4
Packages/Gitignore/gitignore/BricxCC.gitignore
Normal file
@@ -0,0 +1,4 @@
|
||||
# Bricx Command Center IDE
|
||||
# http://bricxcc.sourceforge.net
|
||||
*.bak
|
||||
*.sym
|
||||
32
Packages/Gitignore/gitignore/C++.gitignore
Normal file
32
Packages/Gitignore/gitignore/C++.gitignore
Normal file
@@ -0,0 +1,32 @@
|
||||
# Prerequisites
|
||||
*.d
|
||||
|
||||
# Compiled Object files
|
||||
*.slo
|
||||
*.lo
|
||||
*.o
|
||||
*.obj
|
||||
|
||||
# Precompiled Headers
|
||||
*.gch
|
||||
*.pch
|
||||
|
||||
# Compiled Dynamic libraries
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
|
||||
# Fortran module files
|
||||
*.mod
|
||||
*.smod
|
||||
|
||||
# Compiled Static libraries
|
||||
*.lai
|
||||
*.la
|
||||
*.a
|
||||
*.lib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
52
Packages/Gitignore/gitignore/C.gitignore
Normal file
52
Packages/Gitignore/gitignore/C.gitignore
Normal file
@@ -0,0 +1,52 @@
|
||||
# Prerequisites
|
||||
*.d
|
||||
|
||||
# Object files
|
||||
*.o
|
||||
*.ko
|
||||
*.obj
|
||||
*.elf
|
||||
|
||||
# Linker output
|
||||
*.ilk
|
||||
*.map
|
||||
*.exp
|
||||
|
||||
# Precompiled Headers
|
||||
*.gch
|
||||
*.pch
|
||||
|
||||
# Libraries
|
||||
*.lib
|
||||
*.a
|
||||
*.la
|
||||
*.lo
|
||||
|
||||
# Shared objects (inc. Windows DLLs)
|
||||
*.dll
|
||||
*.so
|
||||
*.so.*
|
||||
*.dylib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
*.i*86
|
||||
*.x86_64
|
||||
*.hex
|
||||
|
||||
# Debug files
|
||||
*.dSYM/
|
||||
*.su
|
||||
*.idb
|
||||
*.pdb
|
||||
|
||||
# Kernel Module Compile Results
|
||||
*.mod*
|
||||
*.cmd
|
||||
.tmp_versions/
|
||||
modules.order
|
||||
Module.symvers
|
||||
Mkfile.old
|
||||
dkms.conf
|
||||
12
Packages/Gitignore/gitignore/CFWheels.gitignore
Normal file
12
Packages/Gitignore/gitignore/CFWheels.gitignore
Normal file
@@ -0,0 +1,12 @@
|
||||
# unpacked plugin folders
|
||||
plugins/**/*
|
||||
|
||||
# files directory where uploads go
|
||||
files
|
||||
|
||||
# DBMigrate plugin: generated SQL
|
||||
db/sql
|
||||
|
||||
# AssetBundler plugin: generated bundles
|
||||
javascripts/bundles
|
||||
stylesheets/bundles
|
||||
12
Packages/Gitignore/gitignore/CMake.gitignore
Normal file
12
Packages/Gitignore/gitignore/CMake.gitignore
Normal file
@@ -0,0 +1,12 @@
|
||||
CMakeLists.txt.user
|
||||
CMakeCache.txt
|
||||
CMakeFiles
|
||||
CMakeScripts
|
||||
Testing
|
||||
Makefile
|
||||
cmake_install.cmake
|
||||
install_manifest.txt
|
||||
compile_commands.json
|
||||
CTestTestfile.cmake
|
||||
_deps
|
||||
CMakeUserPresets.json
|
||||
6
Packages/Gitignore/gitignore/CUDA.gitignore
Normal file
6
Packages/Gitignore/gitignore/CUDA.gitignore
Normal file
@@ -0,0 +1,6 @@
|
||||
*.i
|
||||
*.ii
|
||||
*.gpu
|
||||
*.ptx
|
||||
*.cubin
|
||||
*.fatbin
|
||||
4
Packages/Gitignore/gitignore/CVS.gitignore
Normal file
4
Packages/Gitignore/gitignore/CVS.gitignore
Normal file
@@ -0,0 +1,4 @@
|
||||
/CVS/*
|
||||
**/CVS/*
|
||||
.cvsignore
|
||||
*/.cvsignore
|
||||
25
Packages/Gitignore/gitignore/CakePHP.gitignore
Normal file
25
Packages/Gitignore/gitignore/CakePHP.gitignore
Normal file
@@ -0,0 +1,25 @@
|
||||
# CakePHP 3
|
||||
|
||||
/vendor/*
|
||||
/config/app.php
|
||||
|
||||
/tmp/cache/models/*
|
||||
!/tmp/cache/models/empty
|
||||
/tmp/cache/persistent/*
|
||||
!/tmp/cache/persistent/empty
|
||||
/tmp/cache/views/*
|
||||
!/tmp/cache/views/empty
|
||||
/tmp/sessions/*
|
||||
!/tmp/sessions/empty
|
||||
/tmp/tests/*
|
||||
!/tmp/tests/empty
|
||||
|
||||
/logs/*
|
||||
!/logs/empty
|
||||
|
||||
# CakePHP 2
|
||||
|
||||
/app/tmp/*
|
||||
/app/Config/core.php
|
||||
/app/Config/database.php
|
||||
/vendors/*
|
||||
10
Packages/Gitignore/gitignore/Calabash.gitignore
Normal file
10
Packages/Gitignore/gitignore/Calabash.gitignore
Normal file
@@ -0,0 +1,10 @@
|
||||
# Calabash / Cucumber
|
||||
rerun/
|
||||
reports/
|
||||
screenshots/
|
||||
screenshot*.png
|
||||
test-servers/
|
||||
|
||||
# bundler
|
||||
.bundle
|
||||
vendor
|
||||
9
Packages/Gitignore/gitignore/ChefCookbook.gitignore
Normal file
9
Packages/Gitignore/gitignore/ChefCookbook.gitignore
Normal file
@@ -0,0 +1,9 @@
|
||||
.vagrant
|
||||
/cookbooks
|
||||
|
||||
# Bundler
|
||||
bin/*
|
||||
.bundle/*
|
||||
|
||||
.kitchen/
|
||||
.kitchen.local.yml
|
||||
14
Packages/Gitignore/gitignore/Clojure.gitignore
Normal file
14
Packages/Gitignore/gitignore/Clojure.gitignore
Normal file
@@ -0,0 +1,14 @@
|
||||
pom.xml
|
||||
pom.xml.asc
|
||||
*.jar
|
||||
*.class
|
||||
/lib/
|
||||
/classes/
|
||||
/target/
|
||||
/checkouts/
|
||||
.lein-deps-sum
|
||||
.lein-repl-history
|
||||
.lein-plugins/
|
||||
.lein-failures
|
||||
.nrepl-port
|
||||
.cpcache/
|
||||
3
Packages/Gitignore/gitignore/Cloud9.gitignore
Normal file
3
Packages/Gitignore/gitignore/Cloud9.gitignore
Normal file
@@ -0,0 +1,3 @@
|
||||
# Cloud9 IDE - http://c9.io
|
||||
.c9revisions
|
||||
.c9
|
||||
18
Packages/Gitignore/gitignore/CodeIgniter.gitignore
Normal file
18
Packages/Gitignore/gitignore/CodeIgniter.gitignore
Normal file
@@ -0,0 +1,18 @@
|
||||
*/config/development
|
||||
*/logs/log-*.php
|
||||
!*/logs/index.html
|
||||
*/cache/*
|
||||
!system/cache/*
|
||||
!*/cache/index.html
|
||||
!*/cache/.htaccess
|
||||
|
||||
user_guide_src/build/*
|
||||
user_guide_src/cilexer/build/*
|
||||
user_guide_src/cilexer/dist/*
|
||||
user_guide_src/cilexer/pycilexer.egg-info/*
|
||||
|
||||
#codeigniter 3
|
||||
application/logs/*
|
||||
!application/logs/index.html
|
||||
!application/logs/.htaccess
|
||||
/vendor/
|
||||
4
Packages/Gitignore/gitignore/CodeKit.gitignore
Normal file
4
Packages/Gitignore/gitignore/CodeKit.gitignore
Normal file
@@ -0,0 +1,4 @@
|
||||
# General CodeKit files to ignore
|
||||
config.codekit
|
||||
config.codekit3
|
||||
/min
|
||||
17
Packages/Gitignore/gitignore/CommonLisp.gitignore
Normal file
17
Packages/Gitignore/gitignore/CommonLisp.gitignore
Normal file
@@ -0,0 +1,17 @@
|
||||
*.FASL
|
||||
*.fasl
|
||||
*.lisp-temp
|
||||
*.dfsl
|
||||
*.pfsl
|
||||
*.d64fsl
|
||||
*.p64fsl
|
||||
*.lx64fsl
|
||||
*.lx32fsl
|
||||
*.dx64fsl
|
||||
*.dx32fsl
|
||||
*.fx64fsl
|
||||
*.fx32fsl
|
||||
*.sx64fsl
|
||||
*.sx32fsl
|
||||
*.wx64fsl
|
||||
*.wx32fsl
|
||||
6
Packages/Gitignore/gitignore/Composer.gitignore
Normal file
6
Packages/Gitignore/gitignore/Composer.gitignore
Normal file
@@ -0,0 +1,6 @@
|
||||
composer.phar
|
||||
/vendor/
|
||||
|
||||
# Commit your application's lock file https://getcomposer.org/doc/01-basic-usage.md#commit-your-composer-lock-file-to-version-control
|
||||
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
|
||||
# composer.lock
|
||||
21
Packages/Gitignore/gitignore/Concrete5.gitignore
Normal file
21
Packages/Gitignore/gitignore/Concrete5.gitignore
Normal file
@@ -0,0 +1,21 @@
|
||||
# ignore the error log and .htaccess and others
|
||||
error_log
|
||||
.htaccess
|
||||
|
||||
# concrete5 5.6 specific
|
||||
|
||||
config/site.php
|
||||
files/cache/*
|
||||
files/tmp/*
|
||||
|
||||
# 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
|
||||
45
Packages/Gitignore/gitignore/Coq.gitignore
Normal file
45
Packages/Gitignore/gitignore/Coq.gitignore
Normal file
@@ -0,0 +1,45 @@
|
||||
.*.aux
|
||||
.*.d
|
||||
*.a
|
||||
*.cma
|
||||
*.cmi
|
||||
*.cmo
|
||||
*.cmx
|
||||
*.cmxa
|
||||
*.cmxs
|
||||
*.glob
|
||||
*.ml.d
|
||||
*.ml4.d
|
||||
*.mlg.d
|
||||
*.mli.d
|
||||
*.mllib.d
|
||||
*.mlpack.d
|
||||
*.native
|
||||
*.o
|
||||
*.v.d
|
||||
*.vio
|
||||
*.vo
|
||||
*.vok
|
||||
*.vos
|
||||
.coq-native
|
||||
.csdp.cache
|
||||
.lia.cache
|
||||
.nia.cache
|
||||
.nlia.cache
|
||||
.nra.cache
|
||||
csdp.cache
|
||||
lia.cache
|
||||
nia.cache
|
||||
nlia.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
|
||||
4
Packages/Gitignore/gitignore/CraftCMS.gitignore
Normal file
4
Packages/Gitignore/gitignore/CraftCMS.gitignore
Normal file
@@ -0,0 +1,4 @@
|
||||
# Craft 2 Storage (https://craftcms.com/support/craft-storage-gitignore)
|
||||
# not necessary for Craft 3 (https://github.com/craftcms/craft/issues/26)
|
||||
/craft/storage/*
|
||||
!/craft/storage/rebrand
|
||||
24
Packages/Gitignore/gitignore/D.gitignore
Normal file
24
Packages/Gitignore/gitignore/D.gitignore
Normal file
@@ -0,0 +1,24 @@
|
||||
# Compiled Object files
|
||||
*.o
|
||||
*.obj
|
||||
|
||||
# Compiled Dynamic libraries
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
|
||||
# Compiled Static libraries
|
||||
*.a
|
||||
*.lib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
|
||||
# DUB
|
||||
.dub
|
||||
docs.json
|
||||
__dummy.html
|
||||
docs/
|
||||
|
||||
# Code coverage
|
||||
*.lst
|
||||
5
Packages/Gitignore/gitignore/DM.gitignore
Normal file
5
Packages/Gitignore/gitignore/DM.gitignore
Normal file
@@ -0,0 +1,5 @@
|
||||
*.dmb
|
||||
*.rsc
|
||||
*.int
|
||||
*.lk
|
||||
*.zip
|
||||
27
Packages/Gitignore/gitignore/Dart.gitignore
Normal file
27
Packages/Gitignore/gitignore/Dart.gitignore
Normal file
@@ -0,0 +1,27 @@
|
||||
# See https://www.dartlang.org/guides/libraries/private-files
|
||||
|
||||
# Files and directories created by pub
|
||||
.dart_tool/
|
||||
.packages
|
||||
build/
|
||||
# If you're building an application, you may want to check-in your pubspec.lock
|
||||
pubspec.lock
|
||||
|
||||
# Directory created by dartdoc
|
||||
# If you don't generate documentation locally you can remove this line.
|
||||
doc/api/
|
||||
|
||||
# dotenv environment variables file
|
||||
.env*
|
||||
|
||||
# Avoid committing generated Javascript files:
|
||||
*.dart.js
|
||||
*.info.json # Produced by the --dump-info flag.
|
||||
*.js # When generated by dart2js. Don't specify *.js if your
|
||||
# project includes source files written in JavaScript.
|
||||
*.js_
|
||||
*.js.deps
|
||||
*.js.map
|
||||
|
||||
.flutter-plugins
|
||||
.flutter-plugins-dependencies
|
||||
2
Packages/Gitignore/gitignore/DartEditor.gitignore
Normal file
2
Packages/Gitignore/gitignore/DartEditor.gitignore
Normal file
@@ -0,0 +1,2 @@
|
||||
.project
|
||||
.buildlog
|
||||
81
Packages/Gitignore/gitignore/Delphi.gitignore
Normal file
81
Packages/Gitignore/gitignore/Delphi.gitignore
Normal file
@@ -0,0 +1,81 @@
|
||||
# Uncomment these types if you want even more clean repository. But be careful.
|
||||
# It can make harm to an existing project source. Read explanations below.
|
||||
#
|
||||
# Resource files are binaries containing manifest, project icon and version info.
|
||||
# They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files.
|
||||
#*.res
|
||||
#
|
||||
# Type library file (binary). In old Delphi versions it should be stored.
|
||||
# Since Delphi 2009 it is produced from .ridl file and can safely be ignored.
|
||||
#*.tlb
|
||||
#
|
||||
# Diagram Portfolio file. Used by the diagram editor up to Delphi 7.
|
||||
# Uncomment this if you are not using diagrams or use newer Delphi version.
|
||||
#*.ddp
|
||||
#
|
||||
# Visual LiveBindings file. Added in Delphi XE2.
|
||||
# Uncomment this if you are not using LiveBindings Designer.
|
||||
#*.vlb
|
||||
#
|
||||
# Deployment Manager configuration file for your project. Added in Delphi XE2.
|
||||
# Uncomment this if it is not mobile development and you do not use remote debug feature.
|
||||
#*.deployproj
|
||||
#
|
||||
# C++ object files produced when C/C++ Output file generation is configured.
|
||||
# Uncomment this if you are not using external objects (zlib library for example).
|
||||
#*.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)
|
||||
*.exe
|
||||
*.dll
|
||||
*.bpl
|
||||
*.bpi
|
||||
*.dcp
|
||||
*.so
|
||||
*.apk
|
||||
*.drc
|
||||
*.map
|
||||
*.dres
|
||||
*.rsm
|
||||
*.tds
|
||||
*.dcu
|
||||
*.lib
|
||||
*.a
|
||||
*.o
|
||||
*.ocx
|
||||
|
||||
# Delphi autogenerated files (duplicated info)
|
||||
*.cfg
|
||||
*.hpp
|
||||
*Resource.rc
|
||||
|
||||
# Delphi local files (user-specific info)
|
||||
*.local
|
||||
*.identcache
|
||||
*.projdata
|
||||
*.tvsconfig
|
||||
*.dsk
|
||||
|
||||
# Delphi history and backups
|
||||
__history/
|
||||
__recovery/
|
||||
*.~*
|
||||
|
||||
# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
|
||||
*.stat
|
||||
|
||||
# Boss dependency manager vendor folder https://github.com/HashLoad/boss
|
||||
modules/
|
||||
2
Packages/Gitignore/gitignore/Diff.gitignore
Normal file
2
Packages/Gitignore/gitignore/Diff.gitignore
Normal file
@@ -0,0 +1,2 @@
|
||||
*.patch
|
||||
*.diff
|
||||
7
Packages/Gitignore/gitignore/Dreamweaver.gitignore
Normal file
7
Packages/Gitignore/gitignore/Dreamweaver.gitignore
Normal file
@@ -0,0 +1,7 @@
|
||||
# DW Dreamweaver added files
|
||||
_notes
|
||||
_compareTemp
|
||||
configs/
|
||||
dwsync.xml
|
||||
dw_php_codehinting.config
|
||||
*.mno
|
||||
4
Packages/Gitignore/gitignore/Dropbox.gitignore
Normal file
4
Packages/Gitignore/gitignore/Dropbox.gitignore
Normal file
@@ -0,0 +1,4 @@
|
||||
# Dropbox settings and caches
|
||||
.dropbox
|
||||
.dropbox.attr
|
||||
.dropbox.cache
|
||||
62
Packages/Gitignore/gitignore/Drupal.gitignore
Normal file
62
Packages/Gitignore/gitignore/Drupal.gitignore
Normal file
@@ -0,0 +1,62 @@
|
||||
# gitignore template for Drupal 8 projects
|
||||
#
|
||||
# earlier versions of Drupal are tracked in `community/PHP/`
|
||||
#
|
||||
# follows official upstream conventions:
|
||||
# https://www.drupal.org/docs/develop/using-composer
|
||||
|
||||
# Ignore configuration files that may contain sensitive information
|
||||
/web/sites/*/*settings*.php
|
||||
/web/sites/*/*services*.yml
|
||||
|
||||
# Ignore paths that may contain user-generated content
|
||||
/web/sites/*/files
|
||||
/web/sites/*/public
|
||||
/web/sites/*/private
|
||||
/web/sites/*/files-public
|
||||
/web/sites/*/files-private
|
||||
|
||||
# Ignore paths that may contain temporary files
|
||||
/web/sites/*/translations
|
||||
/web/sites/*/tmp
|
||||
/web/sites/*/cache
|
||||
|
||||
# Ignore drupal core (if not versioning drupal sources)
|
||||
/web/vendor
|
||||
/web/core
|
||||
/web/modules/README.txt
|
||||
/web/profiles/README.txt
|
||||
/web/sites/development.services.yml
|
||||
/web/sites/example.settings.local.php
|
||||
/web/sites/example.sites.php
|
||||
/web/sites/README.txt
|
||||
/web/themes/README.txt
|
||||
/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
|
||||
62
Packages/Gitignore/gitignore/ECU-TEST.gitignore
Normal file
62
Packages/Gitignore/gitignore/ECU-TEST.gitignore
Normal file
@@ -0,0 +1,62 @@
|
||||
# gitignore template for ECU-TEST workspaces - by TraceTronic https://tracetronic.com
|
||||
# website: https://www.ecu-test.com
|
||||
# * all directories are related to the default directories, please adapt the .gitignore if you use customized
|
||||
# directories
|
||||
|
||||
# Dynamic workspace settings
|
||||
# * We don't recommend to ignore the .workspace directory, because of important project specific settings
|
||||
# local user settings
|
||||
.workspace/ETdrive.xml
|
||||
.workspace/favorites.xml
|
||||
.workspace/filters.xml
|
||||
.workspace/generators.xml
|
||||
.workspace/history.xml
|
||||
.workspace/parallelExecution.xml
|
||||
.workspace/signalviewer.xml
|
||||
.workspace/signalViewerHistory.json
|
||||
.workspace/signalviewer2layout.xml
|
||||
.workspace/testeditor.xml
|
||||
.workspace/tooladapter.xml
|
||||
.workspace/view.xml
|
||||
# optional, if your process depends on this file remove exclusion
|
||||
.workspace/interactiveexecution.xml
|
||||
.workspace/pythonlibrary.xml
|
||||
# deprecated, support for older versions
|
||||
.workspace/traceexplorer.xml
|
||||
|
||||
# Custom file formats and test dependencies
|
||||
# * you can manage your artifacts also with TEST-GUIDE (https://www.test-guide.info) and reference them via Playbooks
|
||||
*.arxml
|
||||
*.a2l
|
||||
*.dbc
|
||||
*.hex
|
||||
*.s19
|
||||
[tT]estdata
|
||||
[tT]estdaten
|
||||
|
||||
# Test results and test execution related content
|
||||
# * Git is not intended to store and provide test results for all iterations
|
||||
# * We recommend to use TEST-GUIDE (https://www.test-guide.info) for the test report management
|
||||
TestReports
|
||||
|
||||
# Report generators and templates
|
||||
# * if you want to provide (f.e.) your own report generators exclude the directory here and ignore only the
|
||||
# unnecessary subdirectories
|
||||
Templates
|
||||
|
||||
# Exclude large binary artifacts
|
||||
# * you can manage your artifacts also with TEST-GUIDE (https://www.test-guide.info) and reference them via Playbooks
|
||||
Offline-FIUs
|
||||
Offline-Models
|
||||
Offline-SGBDs
|
||||
*.exe
|
||||
*.msi
|
||||
*.zip
|
||||
*.7z
|
||||
|
||||
# Exclude default and custom temporary directories
|
||||
Backup_*
|
||||
|
||||
# Python bytecode and cache files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
4
Packages/Gitignore/gitignore/EPiServer.gitignore
Normal file
4
Packages/Gitignore/gitignore/EPiServer.gitignore
Normal file
@@ -0,0 +1,4 @@
|
||||
######################
|
||||
## EPiServer Files
|
||||
######################
|
||||
*License.config
|
||||
51
Packages/Gitignore/gitignore/Eagle.gitignore
Normal file
51
Packages/Gitignore/gitignore/Eagle.gitignore
Normal file
@@ -0,0 +1,51 @@
|
||||
# Ignore list for Eagle, a PCB layout tool
|
||||
|
||||
# Backup files
|
||||
*.s#?
|
||||
*.b#?
|
||||
*.l#?
|
||||
*.b$?
|
||||
*.s$?
|
||||
*.l$?
|
||||
|
||||
# Eagle project file
|
||||
# It contains a serial number and references to the file structure
|
||||
# on your computer.
|
||||
# comment the following line if you want to have your project file included.
|
||||
eagle.epf
|
||||
|
||||
# Autorouter files
|
||||
*.pro
|
||||
*.job
|
||||
|
||||
# CAM files
|
||||
*.$$$
|
||||
*.cmp
|
||||
*.ly2
|
||||
*.l15
|
||||
*.sol
|
||||
*.plc
|
||||
*.stc
|
||||
*.sts
|
||||
*.crc
|
||||
*.crs
|
||||
|
||||
*.dri
|
||||
*.drl
|
||||
*.gpi
|
||||
*.pls
|
||||
*.ger
|
||||
*.xln
|
||||
|
||||
*.drd
|
||||
*.drd.*
|
||||
|
||||
*.s#*
|
||||
*.b#*
|
||||
|
||||
*.info
|
||||
|
||||
*.eps
|
||||
|
||||
# file locks introduced since 7.x
|
||||
*.lck
|
||||
60
Packages/Gitignore/gitignore/Eclipse.gitignore
Normal file
60
Packages/Gitignore/gitignore/Eclipse.gitignore
Normal file
@@ -0,0 +1,60 @@
|
||||
.metadata
|
||||
bin/
|
||||
tmp/
|
||||
*.tmp
|
||||
*.bak
|
||||
*.swp
|
||||
*~.nib
|
||||
local.properties
|
||||
.settings/
|
||||
.loadpath
|
||||
.recommenders
|
||||
|
||||
# External tool builders
|
||||
.externalToolBuilders/
|
||||
|
||||
# Locally stored "Eclipse launch configurations"
|
||||
*.launch
|
||||
|
||||
# PyDev specific (Python IDE for Eclipse)
|
||||
*.pydevproject
|
||||
|
||||
# CDT-specific (C/C++ Development Tooling)
|
||||
.cproject
|
||||
|
||||
# CDT- autotools
|
||||
.autotools
|
||||
|
||||
# Java annotation processor (APT)
|
||||
.factorypath
|
||||
|
||||
# PDT-specific (PHP Development Tools)
|
||||
.buildpath
|
||||
|
||||
# sbteclipse plugin
|
||||
.target
|
||||
|
||||
# Tern plugin
|
||||
.tern-project
|
||||
|
||||
# TeXlipse plugin
|
||||
.texlipse
|
||||
|
||||
# STS (Spring Tool Suite)
|
||||
.springBeans
|
||||
|
||||
# Code Recommenders
|
||||
.recommenders/
|
||||
|
||||
# Annotation Processing
|
||||
.apt_generated/
|
||||
.apt_generated_test/
|
||||
|
||||
# Scala IDE specific (Scala & Java development for Eclipse)
|
||||
.cache-main
|
||||
.scala_dependencies
|
||||
.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
|
||||
2
Packages/Gitignore/gitignore/EiffelStudio.gitignore
Normal file
2
Packages/Gitignore/gitignore/EiffelStudio.gitignore
Normal file
@@ -0,0 +1,2 @@
|
||||
# The compilation directory
|
||||
EIFGENs
|
||||
11
Packages/Gitignore/gitignore/Elisp.gitignore
Normal file
11
Packages/Gitignore/gitignore/Elisp.gitignore
Normal file
@@ -0,0 +1,11 @@
|
||||
# Compiled
|
||||
*.elc
|
||||
|
||||
# Packaging
|
||||
.cask
|
||||
|
||||
# Backup files
|
||||
*~
|
||||
|
||||
# Undo-tree save-files
|
||||
*.~undo-tree
|
||||
10
Packages/Gitignore/gitignore/Elixir.gitignore
Normal file
10
Packages/Gitignore/gitignore/Elixir.gitignore
Normal file
@@ -0,0 +1,10 @@
|
||||
/_build
|
||||
/cover
|
||||
/deps
|
||||
/doc
|
||||
/.fetch
|
||||
erl_crash.dump
|
||||
*.ez
|
||||
*.beam
|
||||
/config/*.secret.exs
|
||||
.elixir_ls/
|
||||
4
Packages/Gitignore/gitignore/Elm.gitignore
Normal file
4
Packages/Gitignore/gitignore/Elm.gitignore
Normal file
@@ -0,0 +1,4 @@
|
||||
# elm-package generated files
|
||||
elm-stuff
|
||||
# elm-repl generated files
|
||||
repl-temp-*
|
||||
49
Packages/Gitignore/gitignore/Emacs.gitignore
Normal file
49
Packages/Gitignore/gitignore/Emacs.gitignore
Normal file
@@ -0,0 +1,49 @@
|
||||
# -*- mode: gitignore; -*-
|
||||
*~
|
||||
\#*\#
|
||||
/.emacs.desktop
|
||||
/.emacs.desktop.lock
|
||||
*.elc
|
||||
auto-save-list
|
||||
tramp
|
||||
.\#*
|
||||
|
||||
# Org-mode
|
||||
.org-id-locations
|
||||
*_archive
|
||||
|
||||
# flymake-mode
|
||||
*_flymake.*
|
||||
|
||||
# eshell files
|
||||
/eshell/history
|
||||
/eshell/lastdir
|
||||
|
||||
# elpa packages
|
||||
/elpa/
|
||||
|
||||
# reftex files
|
||||
*.rel
|
||||
|
||||
# AUCTeX auto folder
|
||||
/auto/
|
||||
|
||||
# cask packages
|
||||
.cask/
|
||||
dist/
|
||||
|
||||
# Flycheck
|
||||
flycheck_*.el
|
||||
|
||||
# server auth directory
|
||||
/server/
|
||||
|
||||
# projectiles files
|
||||
.projectile
|
||||
|
||||
# directory configuration
|
||||
.dir-locals.el
|
||||
|
||||
# network security
|
||||
/network-security.data
|
||||
|
||||
4
Packages/Gitignore/gitignore/Ensime.gitignore
Normal file
4
Packages/Gitignore/gitignore/Ensime.gitignore
Normal file
@@ -0,0 +1,4 @@
|
||||
# Ensime specific
|
||||
.ensime
|
||||
.ensime_cache/
|
||||
.ensime_lucene/
|
||||
17
Packages/Gitignore/gitignore/Erlang.gitignore
Normal file
17
Packages/Gitignore/gitignore/Erlang.gitignore
Normal file
@@ -0,0 +1,17 @@
|
||||
.eunit
|
||||
*.o
|
||||
*.beam
|
||||
*.plt
|
||||
erl_crash.dump
|
||||
.concrete/DEV_MODE
|
||||
|
||||
# rebar 2.x
|
||||
.rebar
|
||||
rel/example_project
|
||||
ebin/*.beam
|
||||
deps
|
||||
|
||||
# rebar 3
|
||||
.rebar3
|
||||
_build/
|
||||
_checkouts/
|
||||
1
Packages/Gitignore/gitignore/Espresso.gitignore
Normal file
1
Packages/Gitignore/gitignore/Espresso.gitignore
Normal file
@@ -0,0 +1 @@
|
||||
*.esproj
|
||||
19
Packages/Gitignore/gitignore/ExpressionEngine.gitignore
Normal file
19
Packages/Gitignore/gitignore/ExpressionEngine.gitignore
Normal file
@@ -0,0 +1,19 @@
|
||||
.DS_Store
|
||||
|
||||
# Images
|
||||
images/avatars/
|
||||
images/captchas/
|
||||
images/smileys/
|
||||
images/member_photos/
|
||||
images/signature_attachments/
|
||||
images/pm_attachments/
|
||||
|
||||
# For security do not publish the following files
|
||||
system/expressionengine/config/database.php
|
||||
system/expressionengine/config/config.php
|
||||
|
||||
# Caches
|
||||
sized/
|
||||
thumbs/
|
||||
_thumbs/
|
||||
*/expressionengine/cache/*
|
||||
14
Packages/Gitignore/gitignore/ExtJs.gitignore
Normal file
14
Packages/Gitignore/gitignore/ExtJs.gitignore
Normal file
@@ -0,0 +1,14 @@
|
||||
.architect
|
||||
bootstrap.css
|
||||
bootstrap.js
|
||||
bootstrap.json
|
||||
bootstrap.jsonp
|
||||
build/
|
||||
classic.json
|
||||
classic.jsonp
|
||||
ext/
|
||||
modern.json
|
||||
modern.jsonp
|
||||
resources/sass/.sass-cache/
|
||||
resources/.arch-internal-preview.css
|
||||
.arch-internal-preview.css
|
||||
2
Packages/Gitignore/gitignore/Fancy.gitignore
Normal file
2
Packages/Gitignore/gitignore/Fancy.gitignore
Normal file
@@ -0,0 +1,2 @@
|
||||
*.rbc
|
||||
*.fyc
|
||||
13
Packages/Gitignore/gitignore/Finale.gitignore
Normal file
13
Packages/Gitignore/gitignore/Finale.gitignore
Normal file
@@ -0,0 +1,13 @@
|
||||
*.bak
|
||||
*.db
|
||||
*.avi
|
||||
*.pdf
|
||||
*.ps
|
||||
*.mid
|
||||
*.midi
|
||||
*.mp3
|
||||
*.aif
|
||||
*.wav
|
||||
# Some versions of Finale have a bug and randomly save extra copies of
|
||||
# the music source as "<Filename> copy.mus"
|
||||
*copy.mus
|
||||
28
Packages/Gitignore/gitignore/Firebase.gitignore
Normal file
28
Packages/Gitignore/gitignore/Firebase.gitignore
Normal file
@@ -0,0 +1,28 @@
|
||||
# Firebase build and deployment files
|
||||
/firebase-debug.log
|
||||
/firebase-debug.*.log
|
||||
.firebaserc
|
||||
|
||||
# Firebase Hosting
|
||||
/firebase.json
|
||||
*.cache
|
||||
hosting/.cache
|
||||
|
||||
# Firebase Functions
|
||||
/functions/node_modules/
|
||||
/functions/.env
|
||||
/functions/package-lock.json
|
||||
|
||||
# Firebase Emulators
|
||||
/firebase-*.zip
|
||||
/.firebase/
|
||||
/emulator-ui/
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
# Environment files (local configs)
|
||||
/.env.*
|
||||
45
Packages/Gitignore/gitignore/FlaxEngine.gitignore
Normal file
45
Packages/Gitignore/gitignore/FlaxEngine.gitignore
Normal file
@@ -0,0 +1,45 @@
|
||||
# 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/
|
||||
3
Packages/Gitignore/gitignore/FlexBuilder.gitignore
Normal file
3
Packages/Gitignore/gitignore/FlexBuilder.gitignore
Normal file
@@ -0,0 +1,3 @@
|
||||
bin/
|
||||
bin-debug/
|
||||
bin-release/
|
||||
4
Packages/Gitignore/gitignore/ForceDotCom.gitignore
Normal file
4
Packages/Gitignore/gitignore/ForceDotCom.gitignore
Normal file
@@ -0,0 +1,4 @@
|
||||
.project
|
||||
.settings
|
||||
salesforce.schema
|
||||
Referenced Packages
|
||||
32
Packages/Gitignore/gitignore/Fortran.gitignore
Normal file
32
Packages/Gitignore/gitignore/Fortran.gitignore
Normal file
@@ -0,0 +1,32 @@
|
||||
# Prerequisites
|
||||
*.d
|
||||
|
||||
# Compiled Object files
|
||||
*.slo
|
||||
*.lo
|
||||
*.o
|
||||
*.obj
|
||||
|
||||
# Precompiled Headers
|
||||
*.gch
|
||||
*.pch
|
||||
|
||||
# Compiled Dynamic libraries
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
|
||||
# Fortran module files
|
||||
*.mod
|
||||
*.smod
|
||||
|
||||
# Compiled Static libraries
|
||||
*.lai
|
||||
*.la
|
||||
*.a
|
||||
*.lib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
*.out
|
||||
*.app
|
||||
21
Packages/Gitignore/gitignore/FuelPHP.gitignore
Normal file
21
Packages/Gitignore/gitignore/FuelPHP.gitignore
Normal file
@@ -0,0 +1,21 @@
|
||||
# the composer package lock file and install directory
|
||||
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
|
||||
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
|
||||
# /composer.lock
|
||||
/fuel/vendor
|
||||
|
||||
# the fuelphp document
|
||||
/docs/
|
||||
|
||||
# you may install these packages with `oil package`.
|
||||
# http://fuelphp.com/docs/packages/oil/package.html
|
||||
# /fuel/packages/auth/
|
||||
# /fuel/packages/email/
|
||||
# /fuel/packages/oil/
|
||||
# /fuel/packages/orm/
|
||||
# /fuel/packages/parser/
|
||||
|
||||
# dynamically generated files
|
||||
/fuel/app/logs/*/*/*
|
||||
/fuel/app/cache/*/*
|
||||
/fuel/app/config/crypt.php
|
||||
2
Packages/Gitignore/gitignore/GPG.gitignore
Normal file
2
Packages/Gitignore/gitignore/GPG.gitignore
Normal file
@@ -0,0 +1,2 @@
|
||||
secring.*
|
||||
|
||||
25
Packages/Gitignore/gitignore/GWT.gitignore
Normal file
25
Packages/Gitignore/gitignore/GWT.gitignore
Normal file
@@ -0,0 +1,25 @@
|
||||
*.class
|
||||
|
||||
# Package Files #
|
||||
*.jar
|
||||
*.war
|
||||
|
||||
# gwt caches and compiled units #
|
||||
war/gwt_bree/
|
||||
gwt-unitCache/
|
||||
|
||||
# boilerplate generated classes #
|
||||
.apt_generated/
|
||||
|
||||
# more caches and things from deploy #
|
||||
war/WEB-INF/deploy/
|
||||
war/WEB-INF/classes/
|
||||
|
||||
#compilation logs
|
||||
.gwt/
|
||||
|
||||
#gwt junit compilation files
|
||||
www-test/
|
||||
|
||||
#old GWT (1.5) created this dir
|
||||
.gwt-tmp/
|
||||
5
Packages/Gitignore/gitignore/Gcov.gitignore
Normal file
5
Packages/Gitignore/gitignore/Gcov.gitignore
Normal file
@@ -0,0 +1,5 @@
|
||||
# gcc coverage testing tool files
|
||||
|
||||
*.gcno
|
||||
*.gcda
|
||||
*.gcov
|
||||
16
Packages/Gitignore/gitignore/GitBook.gitignore
Normal file
16
Packages/Gitignore/gitignore/GitBook.gitignore
Normal file
@@ -0,0 +1,16 @@
|
||||
# Node rules:
|
||||
## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
|
||||
.grunt
|
||||
|
||||
## Dependency directory
|
||||
## Commenting this out is preferred by some people, see
|
||||
## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git
|
||||
node_modules
|
||||
|
||||
# Book build output
|
||||
_book
|
||||
|
||||
# eBook build output
|
||||
*.epub
|
||||
*.mobi
|
||||
*.pdf
|
||||
18
Packages/Gitignore/gitignore/GitHubPages.gitignore
Normal file
18
Packages/Gitignore/gitignore/GitHubPages.gitignore
Normal file
@@ -0,0 +1,18 @@
|
||||
# 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
|
||||
25
Packages/Gitignore/gitignore/Go.gitignore
Normal file
25
Packages/Gitignore/gitignore/Go.gitignore
Normal file
@@ -0,0 +1,25 @@
|
||||
# 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
|
||||
*.exe
|
||||
*.exe~
|
||||
*.dll
|
||||
*.so
|
||||
*.dylib
|
||||
|
||||
# Test binary, built with `go test -c`
|
||||
*.test
|
||||
|
||||
# Output of the go coverage tool, specifically when used with LiteIDE
|
||||
*.out
|
||||
|
||||
# Dependency directories (remove the comment below to include it)
|
||||
# vendor/
|
||||
|
||||
# Go workspace file
|
||||
go.work
|
||||
go.work.sum
|
||||
|
||||
# env file
|
||||
.env
|
||||
15
Packages/Gitignore/gitignore/Godot.gitignore
Normal file
15
Packages/Gitignore/gitignore/Godot.gitignore
Normal file
@@ -0,0 +1,15 @@
|
||||
# Godot 4+ specific ignores
|
||||
.godot/
|
||||
|
||||
# Godot-specific ignores
|
||||
.import/
|
||||
export.cfg
|
||||
export_presets.cfg
|
||||
|
||||
# Imported translations (automatically generated from CSV files)
|
||||
*.translation
|
||||
|
||||
# Mono-specific ignores
|
||||
.mono/
|
||||
data_*/
|
||||
mono_crash.*.json
|
||||
21
Packages/Gitignore/gitignore/Gradle.gitignore
Normal file
21
Packages/Gitignore/gitignore/Gradle.gitignore
Normal file
@@ -0,0 +1,21 @@
|
||||
.gradle
|
||||
**/build/
|
||||
!src/**/build/
|
||||
|
||||
# Ignore Gradle GUI config
|
||||
gradle-app.setting
|
||||
|
||||
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
|
||||
!gradle-wrapper.jar
|
||||
|
||||
# Avoid ignore Gradle wrappper properties
|
||||
!gradle-wrapper.properties
|
||||
|
||||
# Cache of project
|
||||
.gradletasknamecache
|
||||
|
||||
# Eclipse Gradle plugin generated files
|
||||
# Eclipse Core
|
||||
.project
|
||||
# JDT-specific (Eclipse Java Development Tools)
|
||||
.classpath
|
||||
33
Packages/Gitignore/gitignore/Grails.gitignore
Normal file
33
Packages/Gitignore/gitignore/Grails.gitignore
Normal file
@@ -0,0 +1,33 @@
|
||||
# .gitignore for Grails 1.2 and 1.3
|
||||
# Although this should work for most versions of grails, it is
|
||||
# suggested that you use the "grails integrate-with --git" command
|
||||
# to generate your .gitignore file.
|
||||
|
||||
# web application files
|
||||
/web-app/WEB-INF/classes
|
||||
|
||||
# default HSQL database files for production mode
|
||||
/prodDb.*
|
||||
|
||||
# general HSQL database files
|
||||
*Db.properties
|
||||
*Db.script
|
||||
|
||||
# logs
|
||||
/stacktrace.log
|
||||
/test/reports
|
||||
/logs
|
||||
|
||||
# project release file
|
||||
/*.war
|
||||
|
||||
# plugin release files
|
||||
/*.zip
|
||||
/plugin.xml
|
||||
|
||||
# older plugin install locations
|
||||
/plugins
|
||||
/web-app/plugins
|
||||
|
||||
# "temporary" build files
|
||||
/target
|
||||
23
Packages/Gitignore/gitignore/Haskell.gitignore
Normal file
23
Packages/Gitignore/gitignore/Haskell.gitignore
Normal file
@@ -0,0 +1,23 @@
|
||||
dist
|
||||
dist-*
|
||||
cabal-dev
|
||||
*.o
|
||||
*.hi
|
||||
*.hie
|
||||
*.chi
|
||||
*.chs.h
|
||||
*.dyn_o
|
||||
*.dyn_hi
|
||||
.hpc
|
||||
.hsenv
|
||||
.cabal-sandbox/
|
||||
cabal.sandbox.config
|
||||
*.prof
|
||||
*.aux
|
||||
*.hp
|
||||
*.eventlog
|
||||
.stack-work/
|
||||
cabal.project.local
|
||||
cabal.project.local~
|
||||
.HTF/
|
||||
.ghc.environment.*
|
||||
47
Packages/Gitignore/gitignore/IAR.gitignore
Normal file
47
Packages/Gitignore/gitignore/IAR.gitignore
Normal file
@@ -0,0 +1,47 @@
|
||||
# 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
|
||||
5
Packages/Gitignore/gitignore/IGORPro.gitignore
Normal file
5
Packages/Gitignore/gitignore/IGORPro.gitignore
Normal file
@@ -0,0 +1,5 @@
|
||||
# Avoid including Experiment files: they can be created and edited locally to test the ipf files
|
||||
*.pxp
|
||||
*.pxt
|
||||
*.uxp
|
||||
*.uxt
|
||||
7
Packages/Gitignore/gitignore/Idris.gitignore
Normal file
7
Packages/Gitignore/gitignore/Idris.gitignore
Normal file
@@ -0,0 +1,7 @@
|
||||
# Idris 2
|
||||
*.ttc
|
||||
*.ttm
|
||||
|
||||
# Idris 1
|
||||
*.ibc
|
||||
*.o
|
||||
63
Packages/Gitignore/gitignore/Images.gitignore
Normal file
63
Packages/Gitignore/gitignore/Images.gitignore
Normal file
@@ -0,0 +1,63 @@
|
||||
# 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
|
||||
19
Packages/Gitignore/gitignore/JBoss.gitignore
Normal file
19
Packages/Gitignore/gitignore/JBoss.gitignore
Normal file
@@ -0,0 +1,19 @@
|
||||
jboss/server/all/deploy/project.ext
|
||||
jboss/server/default/deploy/project.ext
|
||||
jboss/server/minimal/deploy/project.ext
|
||||
jboss/server/all/log/*.log
|
||||
jboss/server/all/tmp/**/*
|
||||
jboss/server/all/data/**/*
|
||||
jboss/server/all/work/**/*
|
||||
jboss/server/default/log/*.log
|
||||
jboss/server/default/tmp/**/*
|
||||
jboss/server/default/data/**/*
|
||||
jboss/server/default/work/**/*
|
||||
jboss/server/minimal/log/*.log
|
||||
jboss/server/minimal/tmp/**/*
|
||||
jboss/server/minimal/data/**/*
|
||||
jboss/server/minimal/work/**/*
|
||||
|
||||
# deployed package files #
|
||||
|
||||
*.DEPLOYED
|
||||
13
Packages/Gitignore/gitignore/JDeveloper.gitignore
Normal file
13
Packages/Gitignore/gitignore/JDeveloper.gitignore
Normal file
@@ -0,0 +1,13 @@
|
||||
# default application storage directory used by the IDE Performance Cache feature
|
||||
.data/
|
||||
|
||||
# used for ADF styles caching
|
||||
temp/
|
||||
|
||||
# default output directories
|
||||
classes/
|
||||
deploy/
|
||||
javadoc/
|
||||
|
||||
# lock file, a part of Oracle Credential Store Framework
|
||||
cwallet.sso.lck
|
||||
50
Packages/Gitignore/gitignore/JENKINS_HOME.gitignore
Normal file
50
Packages/Gitignore/gitignore/JENKINS_HOME.gitignore
Normal file
@@ -0,0 +1,50 @@
|
||||
# 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.
|
||||
5
Packages/Gitignore/gitignore/JEnv.gitignore
Normal file
5
Packages/Gitignore/gitignore/JEnv.gitignore
Normal file
@@ -0,0 +1,5 @@
|
||||
# JEnv local Java version configuration file
|
||||
.java-version
|
||||
|
||||
# Used by previous versions of JEnv
|
||||
.jenv-version
|
||||
24
Packages/Gitignore/gitignore/Java.gitignore
Normal file
24
Packages/Gitignore/gitignore/Java.gitignore
Normal file
@@ -0,0 +1,24 @@
|
||||
# Compiled class file
|
||||
*.class
|
||||
|
||||
# Log file
|
||||
*.log
|
||||
|
||||
# BlueJ files
|
||||
*.ctxt
|
||||
|
||||
# Mobile Tools for Java (J2ME)
|
||||
.mtj.tmp/
|
||||
|
||||
# Package Files #
|
||||
*.jar
|
||||
*.war
|
||||
*.nar
|
||||
*.ear
|
||||
*.zip
|
||||
*.tar.gz
|
||||
*.rar
|
||||
|
||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||
hs_err_pid*
|
||||
replay_pid*
|
||||
7
Packages/Gitignore/gitignore/Jekyll.gitignore
Normal file
7
Packages/Gitignore/gitignore/Jekyll.gitignore
Normal file
@@ -0,0 +1,7 @@
|
||||
_site/
|
||||
.sass-cache/
|
||||
.jekyll-cache/
|
||||
.jekyll-metadata
|
||||
# Ignore folders generated by Bundler
|
||||
.bundle/
|
||||
vendor/
|
||||
77
Packages/Gitignore/gitignore/JetBrains.gitignore
Normal file
77
Packages/Gitignore/gitignore/JetBrains.gitignore
Normal file
@@ -0,0 +1,77 @@
|
||||
# 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
|
||||
.idea/**/workspace.xml
|
||||
.idea/**/tasks.xml
|
||||
.idea/**/usage.statistics.xml
|
||||
.idea/**/dictionaries
|
||||
.idea/**/shelf
|
||||
|
||||
# AWS User-specific
|
||||
.idea/**/aws.xml
|
||||
|
||||
# Generated files
|
||||
.idea/**/contentModel.xml
|
||||
|
||||
# Sensitive or high-churn files
|
||||
.idea/**/dataSources/
|
||||
.idea/**/dataSources.ids
|
||||
.idea/**/dataSources.local.xml
|
||||
.idea/**/sqlDataSources.xml
|
||||
.idea/**/dynamic.xml
|
||||
.idea/**/uiDesigner.xml
|
||||
.idea/**/dbnavigator.xml
|
||||
|
||||
# Gradle
|
||||
.idea/**/gradle.xml
|
||||
.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-build-*/
|
||||
|
||||
# Mongo Explorer plugin
|
||||
.idea/**/mongoSettings.xml
|
||||
|
||||
# File-based project format
|
||||
*.iws
|
||||
|
||||
# IntelliJ
|
||||
out/
|
||||
|
||||
# mpeltonen/sbt-idea plugin
|
||||
.idea_modules/
|
||||
|
||||
# JIRA plugin
|
||||
atlassian-ide-plugin.xml
|
||||
|
||||
# Cursive Clojure plugin
|
||||
.idea/replstate.xml
|
||||
|
||||
# SonarLint plugin
|
||||
.idea/sonarlint/
|
||||
|
||||
# Crashlytics plugin (for Android Studio and IntelliJ)
|
||||
com_crashlytics_export_strings.xml
|
||||
crashlytics.properties
|
||||
crashlytics-build.properties
|
||||
fabric.properties
|
||||
|
||||
# Editor-based Rest Client
|
||||
.idea/httpRequests
|
||||
|
||||
# Android studio 3.1+ serialized cache file
|
||||
.idea/caches/build_file_checksums.ser
|
||||
705
Packages/Gitignore/gitignore/Joomla.gitignore
Normal file
705
Packages/Gitignore/gitignore/Joomla.gitignore
Normal file
@@ -0,0 +1,705 @@
|
||||
/.htaccess
|
||||
/administrator/cache/*
|
||||
/administrator/components/com_actionlogs/*
|
||||
/administrator/components/com_admin/*
|
||||
/administrator/components/com_ajax/*
|
||||
/administrator/components/com_associations/*
|
||||
/administrator/components/com_banners/*
|
||||
/administrator/components/com_cache/*
|
||||
/administrator/components/com_categories/*
|
||||
/administrator/components/com_checkin/*
|
||||
/administrator/components/com_config/*
|
||||
/administrator/components/com_contact/*
|
||||
/administrator/components/com_content/*
|
||||
/administrator/components/com_contenthistory/*
|
||||
/administrator/components/com_cpanel/*
|
||||
/administrator/components/com_fields/*
|
||||
/administrator/components/com_finder/*
|
||||
/administrator/components/com_installer/*
|
||||
/administrator/components/com_joomlaupdate/*
|
||||
/administrator/components/com_languages/*
|
||||
/administrator/components/com_login/*
|
||||
/administrator/components/com_media/*
|
||||
/administrator/components/com_menus/*
|
||||
/administrator/components/com_messages/*
|
||||
/administrator/components/com_modules/*
|
||||
/administrator/components/com_newsfeeds/*
|
||||
/administrator/components/com_plugins/*
|
||||
/administrator/components/com_postinstall/*
|
||||
/administrator/components/com_privacy/*
|
||||
/administrator/components/com_redirect/*
|
||||
/administrator/components/com_search/*
|
||||
/administrator/components/com_tags/*
|
||||
/administrator/components/com_templates/*
|
||||
/administrator/components/com_users/*
|
||||
/administrator/help/*
|
||||
/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.sys.ini
|
||||
/administrator/language/en-GB/en-GB.com_associations.ini
|
||||
/administrator/language/en-GB/en-GB.com_associations.sys.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_cache.ini
|
||||
/administrator/language/en-GB/en-GB.com_cache.sys.ini
|
||||
/administrator/language/en-GB/en-GB.com_categories.ini
|
||||
/administrator/language/en-GB/en-GB.com_categories.sys.ini
|
||||
/administrator/language/en-GB/en-GB.com_checkin.ini
|
||||
/administrator/language/en-GB/en-GB.com_checkin.sys.ini
|
||||
/administrator/language/en-GB/en-GB.com_config.ini
|
||||
/administrator/language/en-GB/en-GB.com_config.sys.ini
|
||||
/administrator/language/en-GB/en-GB.com_contact.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.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.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.sys.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_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.sys.ini
|
||||
/administrator/language/en-GB/en-GB.com_login.ini
|
||||
/administrator/language/en-GB/en-GB.com_login.sys.ini
|
||||
/administrator/language/en-GB/en-GB.com_mailto.sys.ini
|
||||
/administrator/language/en-GB/en-GB.com_media.ini
|
||||
/administrator/language/en-GB/en-GB.com_media.sys.ini
|
||||
/administrator/language/en-GB/en-GB.com_menus.ini
|
||||
/administrator/language/en-GB/en-GB.com_menus.sys.ini
|
||||
/administrator/language/en-GB/en-GB.com_messages.ini
|
||||
/administrator/language/en-GB/en-GB.com_messages.sys.ini
|
||||
/administrator/language/en-GB/en-GB.com_modules.ini
|
||||
/administrator/language/en-GB/en-GB.com_modules.sys.ini
|
||||
/administrator/language/en-GB/en-GB.com_newsfeeds.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.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.sys.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_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.sys.ini
|
||||
/administrator/language/en-GB/en-GB.com_users.ini
|
||||
/administrator/language/en-GB/en-GB.com_users.sys.ini
|
||||
/administrator/language/en-GB/en-GB.com_weblinks.ini
|
||||
/administrator/language/en-GB/en-GB.com_weblinks.sys.ini
|
||||
/administrator/language/en-GB/en-GB.com_wrapper.ini
|
||||
/administrator/language/en-GB/en-GB.com_wrapper.sys.ini
|
||||
/administrator/language/en-GB/en-GB.ini
|
||||
/administrator/language/en-GB/en-GB.lib_joomla.ini
|
||||
/administrator/language/en-GB/en-GB.localise.php
|
||||
/administrator/language/en-GB/en-GB.mod_custom.ini
|
||||
/administrator/language/en-GB/en-GB.mod_custom.sys.ini
|
||||
/administrator/language/en-GB/en-GB.mod_feed.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.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.sys.ini
|
||||
/administrator/language/en-GB/en-GB.mod_login.ini
|
||||
/administrator/language/en-GB/en-GB.mod_login.sys.ini
|
||||
/administrator/language/en-GB/en-GB.mod_menu.ini
|
||||
/administrator/language/en-GB/en-GB.mod_menu.sys.ini
|
||||
/administrator/language/en-GB/en-GB.mod_multilangstatus.ini
|
||||
/administrator/language/en-GB/en-GB.mod_multilangstatus.sys.ini
|
||||
/administrator/language/en-GB/en-GB.mod_online.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.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.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.sys.ini
|
||||
/administrator/language/en-GB/en-GB.mod_submenu.ini
|
||||
/administrator/language/en-GB/en-GB.mod_submenu.sys.ini
|
||||
/administrator/language/en-GB/en-GB.mod_title.ini
|
||||
/administrator/language/en-GB/en-GB.mod_title.sys.ini
|
||||
/administrator/language/en-GB/en-GB.mod_toolbar.ini
|
||||
/administrator/language/en-GB/en-GB.mod_toolbar.sys.ini
|
||||
/administrator/language/en-GB/en-GB.mod_unread.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.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.sys.ini
|
||||
/administrator/language/en-GB/en-GB.plg_authentication_gmail.ini
|
||||
/administrator/language/en-GB/en-GB.plg_authentication_gmail.sys.ini
|
||||
/administrator/language/en-GB/en-GB.plg_authentication_joomla.ini
|
||||
/administrator/language/en-GB/en-GB.plg_authentication_joomla.sys.ini
|
||||
/administrator/language/en-GB/en-GB.plg_authentication_ldap.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.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.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.sys.ini
|
||||
/administrator/language/en-GB/en-GB.plg_content_joomla.ini
|
||||
/administrator/language/en-GB/en-GB.plg_content_joomla.sys.ini
|
||||
/administrator/language/en-GB/en-GB.plg_content_loadmodule.ini
|
||||
/administrator/language/en-GB/en-GB.plg_content_loadmodule.sys.ini
|
||||
/administrator/language/en-GB/en-GB.plg_content_pagebreak.ini
|
||||
/administrator/language/en-GB/en-GB.plg_content_pagebreak.sys.ini
|
||||
/administrator/language/en-GB/en-GB.plg_content_pagenavigation.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.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.sys.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_tinymce.ini
|
||||
/administrator/language/en-GB/en-GB.plg_editors_tinymce.sys.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_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.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.sys.ini
|
||||
/administrator/language/en-GB/en-GB.plg_search_contacts.ini
|
||||
/administrator/language/en-GB/en-GB.plg_search_contacts.sys.ini
|
||||
/administrator/language/en-GB/en-GB.plg_search_content.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.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.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.sys.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_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.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.sys.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.sys.ini
|
||||
/administrator/language/en-GB/en-GB.plg_system_logrotation.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.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.sys.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_sef.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.sys.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_profile.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.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/install.xml
|
||||
/administrator/language/overrides/*
|
||||
/administrator/language/index.html
|
||||
/administrator/logs/*
|
||||
/administrator/manifests/files/joomla.xml
|
||||
/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_feed/*
|
||||
/administrator/modules/mod_latest/*
|
||||
/administrator/modules/mod_latestactions/*
|
||||
/administrator/modules/mod_logged/*
|
||||
/administrator/modules/mod_login/*
|
||||
/administrator/modules/mod_menu/*
|
||||
/administrator/modules/mod_multilangstatus/*
|
||||
/administrator/modules/mod_online/*
|
||||
/administrator/modules/mod_popular/*
|
||||
/administrator/modules/mod_privacy_dashboard/*
|
||||
/administrator/modules/mod_quickicon/*
|
||||
/administrator/modules/mod_sampledata/*
|
||||
/administrator/modules/mod_stats_admin/*
|
||||
/administrator/modules/mod_status/*
|
||||
/administrator/modules/mod_submenu/*
|
||||
/administrator/modules/mod_title/*
|
||||
/administrator/modules/mod_toolbar/*
|
||||
/administrator/modules/mod_unread/*
|
||||
/administrator/modules/mod_version/*
|
||||
/administrator/templates/hathor/*
|
||||
/administrator/templates/isis/*
|
||||
/administrator/templates/system/*
|
||||
/bin/*
|
||||
/cache/*
|
||||
/cli/*
|
||||
/components/com_ajax/*
|
||||
/components/com_banners/*
|
||||
/components/com_config/*
|
||||
/components/com_contact/*
|
||||
/components/com_content/*
|
||||
/components/com_contenthistory/*
|
||||
/components/com_fields/*
|
||||
/components/com_finder/*
|
||||
/components/com_mailto/*
|
||||
/components/com_media/*
|
||||
/components/com_menus/*
|
||||
/components/com_modules/*
|
||||
/components/com_newsfeeds/*
|
||||
/components/com_privacy/*
|
||||
/components/com_search/*
|
||||
/components/com_tags/*
|
||||
/components/com_users/*
|
||||
/components/com_wrapper/*
|
||||
/components/index.html
|
||||
/images/banners/*
|
||||
/images/headers/*
|
||||
/images/sampledata/*
|
||||
/images/index.html
|
||||
/images/joomla*
|
||||
/images/powered_by.png
|
||||
/includes/*
|
||||
/installation/*
|
||||
/language/en-GB/en-GB.com_ajax.ini
|
||||
/language/en-GB/en-GB.com_config.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_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_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.ini
|
||||
/language/en-GB/en-GB.lib_fof.ini
|
||||
/language/en-GB/en-GB.lib_fof.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.lib_joomla.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_phputf8.sys.ini
|
||||
/language/en-GB/en-GB.lib_simplepie.sys.ini
|
||||
/language/en-GB/en-GB.localise.php
|
||||
/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_categories.ini
|
||||
/language/en-GB/en-GB.mod_articles_categories.sys.ini
|
||||
/language/en-GB/en-GB.mod_articles_category.ini
|
||||
/language/en-GB/en-GB.mod_articles_category.sys.ini
|
||||
/language/en-GB/en-GB.mod_articles_latest.ini
|
||||
/language/en-GB/en-GB.mod_articles_latest.sys.ini
|
||||
/language/en-GB/en-GB.mod_articles_news.ini
|
||||
/language/en-GB/en-GB.mod_articles_news.sys.ini
|
||||
/language/en-GB/en-GB.mod_articles_popular.ini
|
||||
/language/en-GB/en-GB.mod_articles_popular.sys.ini
|
||||
/language/en-GB/en-GB.mod_banners.ini
|
||||
/language/en-GB/en-GB.mod_banners.sys.ini
|
||||
/language/en-GB/en-GB.mod_breadcrumbs.ini
|
||||
/language/en-GB/en-GB.mod_breadcrumbs.sys.ini
|
||||
/language/en-GB/en-GB.mod_custom.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.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.sys.ini
|
||||
/language/en-GB/en-GB.mod_languages.ini
|
||||
/language/en-GB/en-GB.mod_languages.sys.ini
|
||||
/language/en-GB/en-GB.mod_login.ini
|
||||
/language/en-GB/en-GB.mod_login.sys.ini
|
||||
/language/en-GB/en-GB.mod_menu.ini
|
||||
/language/en-GB/en-GB.mod_menu.sys.ini
|
||||
/language/en-GB/en-GB.mod_random_image.ini
|
||||
/language/en-GB/en-GB.mod_random_image.sys.ini
|
||||
/language/en-GB/en-GB.mod_related_items.ini
|
||||
/language/en-GB/en-GB.mod_related_items.sys.ini
|
||||
/language/en-GB/en-GB.mod_search.ini
|
||||
/language/en-GB/en-GB.mod_search.sys.ini
|
||||
/language/en-GB/en-GB.mod_stats.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.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.sys.ini
|
||||
/language/en-GB/en-GB.mod_weblinks.ini
|
||||
/language/en-GB/en-GB.mod_weblinks.sys.ini
|
||||
/language/en-GB/en-GB.mod_whosonline.ini
|
||||
/language/en-GB/en-GB.mod_whosonline.sys.ini
|
||||
/language/en-GB/en-GB.mod_wrapper.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.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.sys.ini
|
||||
/language/en-GB/en-GB.tpl_protostar.ini
|
||||
/language/en-GB/en-GB.tpl_protostar.sys.ini
|
||||
/language/en-GB/en-GB.xml
|
||||
/language/en-GB/install.xml
|
||||
/language/overrides/*
|
||||
/language/index.html
|
||||
/layouts/joomla/*
|
||||
/layouts/libraries/*
|
||||
/layouts/plugins/*
|
||||
/layouts/index.html
|
||||
/libraries/cms/*
|
||||
/libraries/fof/*
|
||||
/libraries/idna_convert/*
|
||||
/libraries/joomla/*
|
||||
/libraries/legacy/*
|
||||
/libraries/php-encryption/*
|
||||
/libraries/phpass/*
|
||||
/libraries/phpmailer/*
|
||||
/libraries/phputf8/*
|
||||
/libraries/simplepie/*
|
||||
/libraries/src/*
|
||||
/libraries/vendor/*
|
||||
/libraries/classmap.php
|
||||
/libraries/cms.php
|
||||
/libraries/import.legacy.php
|
||||
/libraries/import.php
|
||||
/libraries/index.html
|
||||
/libraries/loader.php
|
||||
/media/cms/*
|
||||
/media/com_associations/*
|
||||
/media/com_contact/*
|
||||
/media/com_content/*
|
||||
/media/com_contenthistory/*
|
||||
/media/com_fields/*
|
||||
/media/com_finder/*
|
||||
/media/com_joomlaupdate/*
|
||||
/media/com_menus/*
|
||||
/media/com_modules/*
|
||||
/media/com_wrapper/*
|
||||
/media/contacts/*
|
||||
/media/editors/*
|
||||
/media/jui/*
|
||||
/media/mailto/*
|
||||
/media/media/*
|
||||
/media/mod_languages/*
|
||||
/media/mod_sampledata/*
|
||||
/media/overrider/*
|
||||
/media/plg_captcha_recaptcha/*
|
||||
/media/plg_captcha_recaptcha_invisible/*
|
||||
/media/plg_quickicon_extensionupdate/*
|
||||
/media/plg_quickicon_joomlaupdate/*
|
||||
/media/plg_quickicon_privacycheck/*
|
||||
/media/plg_system_highlight/*
|
||||
/media/plg_system_stats/*
|
||||
/media/plg_twofactorauth_totp/*
|
||||
/media/system/*
|
||||
/media/index.html
|
||||
/modules/mod_articles_archive/*
|
||||
/modules/mod_articles_categories/*
|
||||
/modules/mod_articles_category/*
|
||||
/modules/mod_articles_latest/*
|
||||
/modules/mod_articles_news/*
|
||||
/modules/mod_articles_popular/*
|
||||
/modules/mod_banners/*
|
||||
/modules/mod_breadcrumbs/*
|
||||
/modules/mod_custom/*
|
||||
/modules/mod_feed/*
|
||||
/modules/mod_finder/*
|
||||
/modules/mod_footer/*
|
||||
/modules/mod_languages/*
|
||||
/modules/mod_login/*
|
||||
/modules/mod_menu/*
|
||||
/modules/mod_random_image/*
|
||||
/modules/mod_related_items/*
|
||||
/modules/mod_search/*
|
||||
/modules/mod_stats/*
|
||||
/modules/mod_syndicate/*
|
||||
/modules/mod_tags_popular/*
|
||||
/modules/mod_tags_similar/*
|
||||
/modules/mod_users_latest/*
|
||||
/modules/mod_whosonline/*
|
||||
/modules/mod_wrapper/*
|
||||
/modules/index.html
|
||||
/plugins/actionlog/joomla/*
|
||||
/plugins/authentication/cookie/*
|
||||
/plugins/authentication/example/*
|
||||
/plugins/authentication/gmail/*
|
||||
/plugins/authentication/joomla/*
|
||||
/plugins/authentication/ldap/*
|
||||
/plugins/captcha/recaptcha/*
|
||||
/plugins/captcha/recaptcha_invisible/*
|
||||
/plugins/content/confirmconsent/*
|
||||
/plugins/content/contact/*
|
||||
/plugins/content/emailcloak/*
|
||||
/plugins/content/example/*
|
||||
/plugins/content/fields/*
|
||||
/plugins/content/finder/*
|
||||
/plugins/content/geshi/*
|
||||
/plugins/content/joomla/*
|
||||
/plugins/content/loadmodule/*
|
||||
/plugins/content/pagebreak/*
|
||||
/plugins/content/pagenavigation/*
|
||||
/plugins/content/vote/*
|
||||
/plugins/editors/codemirror/*
|
||||
/plugins/editors/none/*
|
||||
/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/pagebreak/*
|
||||
/plugins/editors-xtd/readmore/*
|
||||
/plugins/extension/example/*
|
||||
/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/contacts/*
|
||||
/plugins/finder/content/*
|
||||
/plugins/finder/newsfeeds/*
|
||||
/plugins/finder/tags/*
|
||||
/plugins/installer/folderinstaller/*
|
||||
/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/joomlaupdate/*
|
||||
/plugins/quickicon/phpversioncheck/*
|
||||
/plugins/quickicon/privacycheck/*
|
||||
/plugins/quickicon/index.html
|
||||
/plugins/sampledata/blog/*
|
||||
/plugins/search/categories/*
|
||||
/plugins/search/contacts/*
|
||||
/plugins/search/content/*
|
||||
/plugins/search/newsfeeds/*
|
||||
/plugins/search/tags/*
|
||||
/plugins/search/weblinks/*
|
||||
/plugins/search/index.html
|
||||
/plugins/system/actionlogs/*
|
||||
/plugins/system/cache/*
|
||||
/plugins/system/debug/*
|
||||
/plugins/system/fields/*
|
||||
/plugins/system/highlight/*
|
||||
/plugins/system/languagecode/*
|
||||
/plugins/system/languagefilter/*
|
||||
/plugins/system/log/*
|
||||
/plugins/system/logout/*
|
||||
/plugins/system/logrotation/*
|
||||
/plugins/system/p3p/*
|
||||
/plugins/system/privacyconsent/*
|
||||
/plugins/system/redirect/*
|
||||
/plugins/system/remember/*
|
||||
/plugins/system/sef/*
|
||||
/plugins/system/sessiongc/*
|
||||
/plugins/system/stats/*
|
||||
/plugins/system/updatenotification/*
|
||||
/plugins/system/index.html
|
||||
/plugins/twofactorauth/totp/*
|
||||
/plugins/twofactorauth/yubikey/*
|
||||
/plugins/user/contactcreator/*
|
||||
/plugins/user/example/*
|
||||
/plugins/user/joomla/*
|
||||
/plugins/user/profile/*
|
||||
/plugins/user/terms/*
|
||||
/plugins/user/index.html
|
||||
/plugins/index.html
|
||||
/templates/beez3/*
|
||||
/templates/protostar/*
|
||||
/templates/system/*
|
||||
/templates/index.html
|
||||
/tmp/*
|
||||
/configuration.php
|
||||
/htaccess.txt
|
||||
/index.php
|
||||
/joomla.xml
|
||||
/LICENSE.txt
|
||||
/README.txt
|
||||
/robots.txt.dist
|
||||
/web.config.txt
|
||||
24
Packages/Gitignore/gitignore/Julia.gitignore
Normal file
24
Packages/Gitignore/gitignore/Julia.gitignore
Normal file
@@ -0,0 +1,24 @@
|
||||
# Files generated by invoking Julia with --code-coverage
|
||||
*.jl.cov
|
||||
*.jl.*.cov
|
||||
|
||||
# Files generated by invoking Julia with --track-allocation
|
||||
*.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/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
|
||||
2
Packages/Gitignore/gitignore/KDevelop4.gitignore
Normal file
2
Packages/Gitignore/gitignore/KDevelop4.gitignore
Normal file
@@ -0,0 +1,2 @@
|
||||
*.kdev4
|
||||
.kdev4/
|
||||
3
Packages/Gitignore/gitignore/Kate.gitignore
Normal file
3
Packages/Gitignore/gitignore/Kate.gitignore
Normal file
@@ -0,0 +1,3 @@
|
||||
# Swap Files #
|
||||
.*.kate-swp
|
||||
.swp.*
|
||||
31
Packages/Gitignore/gitignore/KiCad.gitignore
Normal file
31
Packages/Gitignore/gitignore/KiCad.gitignore
Normal file
@@ -0,0 +1,31 @@
|
||||
# For PCBs designed using KiCad: https://www.kicad.org/
|
||||
# Format documentation: https://kicad.org/help/file-formats/
|
||||
|
||||
# Temporary files
|
||||
*.000
|
||||
*.bak
|
||||
*.bck
|
||||
*.kicad_pcb-bak
|
||||
*.kicad_sch-bak
|
||||
*-backups
|
||||
*.kicad_prl
|
||||
*.sch-bak
|
||||
*~
|
||||
_autosave-*
|
||||
*.tmp
|
||||
*-save.pro
|
||||
*-save.kicad_pcb
|
||||
fp-info-cache
|
||||
~*.lck
|
||||
\#auto_saved_files#
|
||||
|
||||
# Netlist files (exported from Eeschema)
|
||||
*.net
|
||||
|
||||
# Autorouter files (exported from Pcbnew)
|
||||
*.dsn
|
||||
*.ses
|
||||
|
||||
# Exported BOM files
|
||||
*.xml
|
||||
*.csv
|
||||
2
Packages/Gitignore/gitignore/Kohana.gitignore
Normal file
2
Packages/Gitignore/gitignore/Kohana.gitignore
Normal file
@@ -0,0 +1,2 @@
|
||||
application/cache/*
|
||||
application/logs/*
|
||||
27
Packages/Gitignore/gitignore/Kotlin.gitignore
Normal file
27
Packages/Gitignore/gitignore/Kotlin.gitignore
Normal file
@@ -0,0 +1,27 @@
|
||||
# Compiled class file
|
||||
*.class
|
||||
|
||||
# Log file
|
||||
*.log
|
||||
|
||||
# BlueJ files
|
||||
*.ctxt
|
||||
|
||||
# Mobile Tools for Java (J2ME)
|
||||
.mtj.tmp/
|
||||
|
||||
# Package Files #
|
||||
*.jar
|
||||
*.war
|
||||
*.nar
|
||||
*.ear
|
||||
*.zip
|
||||
*.tar.gz
|
||||
*.rar
|
||||
|
||||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||
hs_err_pid*
|
||||
replay_pid*
|
||||
|
||||
# Kotlin Gradle plugin data, see https://kotlinlang.org/docs/whatsnew20.html#new-directory-for-kotlin-data-in-gradle-projects
|
||||
.kotlin/
|
||||
17
Packages/Gitignore/gitignore/LabVIEW.gitignore
Normal file
17
Packages/Gitignore/gitignore/LabVIEW.gitignore
Normal file
@@ -0,0 +1,17 @@
|
||||
# Libraries
|
||||
*.lvlibp
|
||||
*.llb
|
||||
|
||||
# Shared objects (inc. Windows DLLs)
|
||||
*.dll
|
||||
*.so
|
||||
*.so.*
|
||||
*.dylib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
|
||||
# Metadata
|
||||
*.aliases
|
||||
*.lvlps
|
||||
.cache/
|
||||
30
Packages/Gitignore/gitignore/Laravel.gitignore
Normal file
30
Packages/Gitignore/gitignore/Laravel.gitignore
Normal file
@@ -0,0 +1,30 @@
|
||||
/vendor/
|
||||
node_modules/
|
||||
npm-debug.log
|
||||
yarn-error.log
|
||||
|
||||
# Laravel 4 specific
|
||||
bootstrap/compiled.php
|
||||
app/storage/
|
||||
|
||||
# Laravel 5 & Lumen specific
|
||||
public/storage
|
||||
public/hot
|
||||
|
||||
# Laravel 5 & Lumen specific with changed public path
|
||||
public_html/storage
|
||||
public_html/hot
|
||||
|
||||
storage/*.key
|
||||
.env
|
||||
Homestead.yaml
|
||||
Homestead.json
|
||||
/.vagrant
|
||||
.phpunit.result.cache
|
||||
|
||||
/public/build
|
||||
/storage/pail
|
||||
.env.backup
|
||||
.env.production
|
||||
.phpactor.json
|
||||
auth.json
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user