Compare commits
118 Commits
reduce-noi
...
annotating
Author | SHA1 | Date | |
---|---|---|---|
|
3d4c6f2148 | ||
|
765ecc398b | ||
|
eab8d4876d | ||
|
d983b4f5e2 | ||
|
0f61d7e240 | ||
|
f515ae6c5c | ||
|
237c94586f | ||
|
8803192fd3 | ||
|
f2c0e3cc5a | ||
|
7d209f8aac | ||
|
a5b891d9d2 | ||
|
a2f49b7b14 | ||
|
86516d2d2a | ||
|
1587f288ee | ||
|
3d9c786bc0 | ||
|
a5f1fb2700 | ||
|
558460c0a8 | ||
|
e0df63986a | ||
|
daa440bce8 | ||
|
98b1db9283 | ||
|
948a87ffc9 | ||
|
c25991c139 | ||
|
cdfa89334d | ||
|
3bb7541f74 | ||
|
b304edf487 | ||
|
4323f1e2c8 | ||
|
a1ed257134 | ||
|
4457dcc517 | ||
|
e27b4277e2 | ||
|
28adf703c1 | ||
|
49e7d64fc6 | ||
|
ebd27357db | ||
|
c9073cf3e2 | ||
|
8559c8a381 | ||
|
747196008e | ||
|
a4ec7f03ca | ||
|
1e33ef1213 | ||
|
d0c5830a25 | ||
|
f7c6c768c9 | ||
|
4e0d738abe | ||
|
305d4b5c98 | ||
|
ef00a6171e | ||
|
8d1ca41535 | ||
|
d6c7caaa02 | ||
|
507c3949be | ||
|
8ab86f6bb7 | ||
|
00e9cd8dec | ||
|
0aee91babc | ||
|
9c8c32fea5 | ||
|
f9cc4d14cc | ||
|
9735a2cadf | ||
|
c7019d8ec3 | ||
|
467e257fdb | ||
|
5ee2b35cd5 | ||
|
f441f790d2 | ||
|
db9ef4a789 | ||
|
ae5f226a51 | ||
|
8547c2e7f2 | ||
|
89c4f789c0 | ||
|
ab8236b358 | ||
|
e1a89ad432 | ||
|
8646d7f7d7 | ||
|
8d0cfa8edb | ||
|
7f5c998513 | ||
|
4948d863fd | ||
|
5b82602847 | ||
|
a2a1ddb858 | ||
|
82ed46d1a5 | ||
|
1d3c5658ba | ||
|
ff510bed45 | ||
|
a773ba9b04 | ||
|
7fd989641e | ||
|
b2e72cc133 | ||
|
77e29837cf | ||
|
ae4c9a065f | ||
|
a4661a2d39 | ||
|
75bcbcf392 | ||
|
d9aed588f4 | ||
|
884d8411c1 | ||
|
2bf7d8a77a | ||
|
925bdbe76e | ||
|
3ee1463b11 | ||
|
57faa80a18 | ||
|
62d6528cb1 | ||
|
498f06dae9 | ||
|
5883804e6c | ||
|
18e0801ff3 | ||
|
2d48f944e3 | ||
|
5b3bb94904 | ||
|
7078949f7d | ||
|
3292d1d35d | ||
|
082ab4a3ec | ||
|
57e9f2a809 | ||
|
b8da0e3a89 | ||
|
ba6f0a94ab | ||
|
2f4cb0220d | ||
|
c7bca99f57 | ||
|
1574483716 | ||
|
03372a587d | ||
|
5c5d4dfff9 | ||
|
a4bc938b3a | ||
|
a818c8ba7e | ||
|
4e33a249cf | ||
|
e71dfbb6d0 | ||
|
08de2b88e2 | ||
|
d060ee0e57 | ||
|
8c0685fd96 | ||
|
9f80691efd | ||
|
fa9a28a68f | ||
|
5d55d5cd9a | ||
|
4a9d41f894 | ||
|
5a46616766 | ||
|
2b1fe3e280 | ||
|
98c0c9d302 | ||
|
75df01fcdc | ||
|
79234283de | ||
|
aa853a08e9 | ||
|
d0748cf9a4 |
@@ -15,7 +15,6 @@ gen/
|
|||||||
# Gradle files
|
# Gradle files
|
||||||
.gradle/
|
.gradle/
|
||||||
build/
|
build/
|
||||||
/*/build/
|
|
||||||
|
|
||||||
# Local configuration file (sdk path, etc)
|
# Local configuration file (sdk path, etc)
|
||||||
local.properties
|
local.properties
|
||||||
|
@@ -1,14 +1,13 @@
|
|||||||
*.tar
|
*.tar
|
||||||
*.tar.*
|
*.tar.*
|
||||||
|
*.jar
|
||||||
|
*.exe
|
||||||
|
*.msi
|
||||||
*.zip
|
*.zip
|
||||||
*.tgz
|
*.tgz
|
||||||
*.log
|
*.log
|
||||||
*.log.*
|
*.log.*
|
||||||
*.sig
|
*.sig
|
||||||
|
|
||||||
# AUR metadata
|
|
||||||
.AURINFO
|
|
||||||
.SRCINFO
|
|
||||||
|
|
||||||
pkg/
|
pkg/
|
||||||
src/
|
src/
|
||||||
|
@@ -27,3 +27,6 @@
|
|||||||
*.i*86
|
*.i*86
|
||||||
*.x86_64
|
*.x86_64
|
||||||
*.hex
|
*.hex
|
||||||
|
|
||||||
|
# Debug files
|
||||||
|
*.dSYM/
|
||||||
|
6
CUDA.gitignore
Normal file
6
CUDA.gitignore
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
*.i
|
||||||
|
*.ii
|
||||||
|
*.gpu
|
||||||
|
*.ptx
|
||||||
|
*.cubin
|
||||||
|
*.fatbin
|
@@ -1,11 +1,11 @@
|
|||||||
CakePHP 3
|
# CakePHP 3
|
||||||
|
|
||||||
/vendor/*
|
/vendor/*
|
||||||
/config/app.php
|
/config/app.php
|
||||||
/tmp/*
|
/tmp/*
|
||||||
/logs/*
|
/logs/*
|
||||||
|
|
||||||
CakePHP 2
|
# CakePHP 2
|
||||||
|
|
||||||
/app/tmp/*
|
/app/tmp/*
|
||||||
/app/Config/core.php
|
/app/Config/core.php
|
||||||
|
@@ -1,6 +1,6 @@
|
|||||||
*/config/development
|
*/config/development
|
||||||
*/logs/log-*.php
|
*/logs/log-*.php
|
||||||
*/logs/!index.html
|
!*/logs/index.html
|
||||||
*/cache/*
|
*/cache/*
|
||||||
*/cache/!index.html
|
!*/cache/index.html
|
||||||
*/cache/!.htaccess
|
!*/cache/.htaccess
|
||||||
|
@@ -26,6 +26,9 @@ local.properties
|
|||||||
# JDT-specific (Eclipse Java Development Tools)
|
# JDT-specific (Eclipse Java Development Tools)
|
||||||
.classpath
|
.classpath
|
||||||
|
|
||||||
|
# Java annotation processor (APT)
|
||||||
|
.factorypath
|
||||||
|
|
||||||
# PDT-specific
|
# PDT-specific
|
||||||
.buildpath
|
.buildpath
|
||||||
|
|
||||||
|
@@ -1,3 +1,4 @@
|
|||||||
# Ensime specific
|
# Ensime specific
|
||||||
.ensime
|
.ensime
|
||||||
|
.ensime_cache/
|
||||||
.ensime_lucene/
|
.ensime_lucene/
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
|
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
|
||||||
|
|
||||||
*.iml
|
*.iml
|
||||||
|
|
||||||
@@ -32,7 +32,7 @@
|
|||||||
## Plugin-specific files:
|
## Plugin-specific files:
|
||||||
|
|
||||||
# IntelliJ
|
# IntelliJ
|
||||||
out/
|
/out/
|
||||||
|
|
||||||
# mpeltonen/sbt-idea plugin
|
# mpeltonen/sbt-idea plugin
|
||||||
.idea_modules/
|
.idea_modules/
|
||||||
|
@@ -1,15 +1,30 @@
|
|||||||
#ignore backup files
|
# Lazarus compiler-generated binaries (safe to delete)
|
||||||
backup/
|
*.exe
|
||||||
|
*.dll
|
||||||
#ignore files generated by the compiler
|
*.so
|
||||||
lib/
|
*.dylib
|
||||||
|
*.lrs
|
||||||
|
*.res
|
||||||
*.compiled
|
*.compiled
|
||||||
|
*.dbg
|
||||||
|
*.ppu
|
||||||
*.o
|
*.o
|
||||||
*.or
|
*.or
|
||||||
*.ppu
|
*.a
|
||||||
|
|
||||||
#ignore debug information files
|
# Lazarus autogenerated files (duplicated info)
|
||||||
*.dbg
|
*.rst
|
||||||
|
*.rsj
|
||||||
|
*.lrt
|
||||||
|
|
||||||
#exclude executable output in windows
|
# Lazarus local files (user-specific info)
|
||||||
*.exe
|
*.lps
|
||||||
|
|
||||||
|
# Lazarus backups and unit output folders.
|
||||||
|
# These can be changed by user in Lazarus/project options.
|
||||||
|
backup/
|
||||||
|
*.bak
|
||||||
|
lib/
|
||||||
|
|
||||||
|
# Application bundle for Mac OS
|
||||||
|
*.app/
|
||||||
|
@@ -4,7 +4,7 @@ This directory contains globally useful gitignores,
|
|||||||
e.g. OS-specific and editor specific.
|
e.g. OS-specific and editor specific.
|
||||||
|
|
||||||
For more on global gitignores:
|
For more on global gitignores:
|
||||||
<http://help.github.com/git-ignore/>
|
<https://help.github.com/articles/ignoring-files/#create-a-global-gitignore>
|
||||||
|
|
||||||
And a good blog post about 'em:
|
And a good blog post about 'em:
|
||||||
<http://augustl.com/blog/2009/global_gitignores>
|
<http://augustl.com/blog/2009/global_gitignores>
|
||||||
|
@@ -1,23 +1,36 @@
|
|||||||
# Waveforms
|
# Waveform formats
|
||||||
*.vpd
|
|
||||||
*.vcd
|
*.vcd
|
||||||
|
*.vpd
|
||||||
*.evcd
|
*.evcd
|
||||||
|
*.fsdb
|
||||||
|
|
||||||
# Binary files
|
# Default name of the simulation executable. A different name can be
|
||||||
|
# specified with this switch (the associated daidir database name is
|
||||||
|
# also taken from here): -o <path>/<filename>
|
||||||
simv
|
simv
|
||||||
|
|
||||||
# Directories used for compilation
|
# Generated for Verilog and VHDL top configs
|
||||||
csrc/
|
|
||||||
simv.daidir/
|
simv.daidir/
|
||||||
|
simv.db.dir/
|
||||||
|
|
||||||
# Log files
|
# Infrastructure necessary to co-simulate SystemC models with
|
||||||
|
# Verilog/VHDL models. An alternate directory may be specified with this
|
||||||
|
# switch: -Mdir=<directory_path>
|
||||||
|
csrc/
|
||||||
|
|
||||||
|
# Log file - the following switch allows to specify the file that will be
|
||||||
|
# used to write all messages from simulation: -l <filename>
|
||||||
*.log
|
*.log
|
||||||
|
|
||||||
# DVE, UCLI related files
|
# Coverage results (generated with urg) and database location. The
|
||||||
DVEfiles/
|
# following switch can also be used: urg -dir <coverage_directory>.vdb
|
||||||
ucli*
|
|
||||||
*.key
|
|
||||||
|
|
||||||
# Coverage related files
|
|
||||||
simv.vdb/
|
simv.vdb/
|
||||||
urgReport/
|
urgReport/
|
||||||
|
|
||||||
|
# DVE and UCLI related files.
|
||||||
|
DVEfiles/
|
||||||
|
ucli.key
|
||||||
|
|
||||||
|
# When the design is elaborated for DirectC, the following file is created
|
||||||
|
# with declarations for C/C++ functions.
|
||||||
|
vc_hdrs.h
|
||||||
|
2
Global/VisualStudioCode.gitignore
Normal file
2
Global/VisualStudioCode.gitignore
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
.settings
|
||||||
|
|
@@ -1,4 +1,12 @@
|
|||||||
|
# Xcode
|
||||||
|
#
|
||||||
|
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
||||||
|
|
||||||
|
## Build generated
|
||||||
build/
|
build/
|
||||||
|
DerivedData
|
||||||
|
|
||||||
|
## Various settings
|
||||||
*.pbxuser
|
*.pbxuser
|
||||||
!default.pbxuser
|
!default.pbxuser
|
||||||
*.mode1v3
|
*.mode1v3
|
||||||
@@ -8,7 +16,8 @@ build/
|
|||||||
*.perspectivev3
|
*.perspectivev3
|
||||||
!default.perspectivev3
|
!default.perspectivev3
|
||||||
xcuserdata
|
xcuserdata
|
||||||
|
|
||||||
|
## Other
|
||||||
*.xccheckout
|
*.xccheckout
|
||||||
*.moved-aside
|
*.moved-aside
|
||||||
DerivedData
|
|
||||||
*.xcuserstate
|
*.xcuserstate
|
||||||
|
@@ -6,7 +6,6 @@ cabal-dev
|
|||||||
*.chs.h
|
*.chs.h
|
||||||
*.dyn_o
|
*.dyn_o
|
||||||
*.dyn_hi
|
*.dyn_hi
|
||||||
.virtualenv
|
|
||||||
.hpc
|
.hpc
|
||||||
.hsenv
|
.hsenv
|
||||||
.cabal-sandbox/
|
.cabal-sandbox/
|
||||||
@@ -14,3 +13,4 @@ cabal.sandbox.config
|
|||||||
*.prof
|
*.prof
|
||||||
*.aux
|
*.aux
|
||||||
*.hp
|
*.hp
|
||||||
|
.stack-work/
|
||||||
|
@@ -1,2 +1,3 @@
|
|||||||
_site/
|
_site/
|
||||||
.sass-cache/
|
.sass-cache/
|
||||||
|
.jekyll-metadata
|
||||||
|
117
Joomla.gitignore
117
Joomla.gitignore
@@ -1,13 +1,14 @@
|
|||||||
/.gitignore
|
/.gitignore
|
||||||
/.htaccess
|
/.htaccess
|
||||||
/administrator/cache/*
|
/administrator/cache/*
|
||||||
/administrator/components/com_contenthistory/*
|
|
||||||
/administrator/components/com_postinstall/*
|
|
||||||
/administrator/components/com_joomlaupdate/*
|
|
||||||
/administrator/components/com_tags/*
|
|
||||||
/administrator/components/com_admin/*
|
/administrator/components/com_admin/*
|
||||||
|
/administrator/components/com_ajax/*
|
||||||
|
/administrator/components/com_tags/*
|
||||||
/administrator/components/com_banners/*
|
/administrator/components/com_banners/*
|
||||||
/administrator/components/com_cache/*
|
/administrator/components/com_cache/*
|
||||||
|
/administrator/components/com_postinstall/*
|
||||||
|
/administrator/components/com_joomlaupdate/*
|
||||||
|
/administrator/components/com_contenthistory/*
|
||||||
/administrator/components/com_categories/*
|
/administrator/components/com_categories/*
|
||||||
/administrator/components/com_checkin/*
|
/administrator/components/com_checkin/*
|
||||||
/administrator/components/com_config/*
|
/administrator/components/com_config/*
|
||||||
@@ -32,7 +33,52 @@
|
|||||||
/administrator/components/index.html
|
/administrator/components/index.html
|
||||||
/administrator/help/*
|
/administrator/help/*
|
||||||
/administrator/includes/*
|
/administrator/includes/*
|
||||||
/administrator/language/en-GB/
|
/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_contenthistory.ini
|
||||||
|
/administrator/language/en-GB/en-GB.com_contenthistory.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.com_joomlaupdate.ini
|
||||||
|
/administrator/language/en-GB/en-GB.com_joomlaupdate.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.com_postinstall.ini
|
||||||
|
/administrator/language/en-GB/en-GB.com_postinstall.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.com_sitemapjen.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.com_tags.ini
|
||||||
|
/administrator/language/en-GB/en-GB.com_tags.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.mod_stats_admin.ini
|
||||||
|
/administrator/language/en-GB/en-GB.mod_stats_admin.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_authentication_cookie.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_authentication_cookie.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_content_contact.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_content_contact.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_content_finder.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_content_finder.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_categories.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_categories.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_contacts.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_contacts.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_content.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_content.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_newsfeeds.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_newsfeeds.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_tags.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_tags.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_weblinks.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_finder_weblinks.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_installer_webinstaller.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_installer_webinstaller.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_search_tags.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_search_tags.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_system_languagecode.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_system_languagecode.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.ini
|
||||||
|
/administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.sys.ini
|
||||||
|
/administrator/language/en-GB/en-GB.tpl_isis.ini
|
||||||
|
/administrator/language/en-GB/en-GB.tpl_isis.sys.ini
|
||||||
|
/administrator/language/en-GB/install.xml
|
||||||
/administrator/language/en-GB/en-GB.com_admin.ini
|
/administrator/language/en-GB/en-GB.com_admin.ini
|
||||||
/administrator/language/en-GB/en-GB.com_admin.sys.ini
|
/administrator/language/en-GB/en-GB.com_admin.sys.ini
|
||||||
/administrator/language/en-GB/en-GB.com_banners.ini
|
/administrator/language/en-GB/en-GB.com_banners.ini
|
||||||
@@ -225,18 +271,21 @@
|
|||||||
/administrator/modules/mod_stats_admin/*
|
/administrator/modules/mod_stats_admin/*
|
||||||
/administrator/modules/index.html
|
/administrator/modules/index.html
|
||||||
/administrator/templates/bluestork/*
|
/administrator/templates/bluestork/*
|
||||||
|
/administrator/templates/isis/*
|
||||||
/administrator/templates/hathor/*
|
/administrator/templates/hathor/*
|
||||||
/administrator/templates/system/*
|
/administrator/templates/system/*
|
||||||
/administrator/templates/isis/*
|
|
||||||
/administrator/templates/index.html
|
/administrator/templates/index.html
|
||||||
/administrator/index.php
|
/administrator/index.php
|
||||||
/bin/*
|
|
||||||
/cache/*
|
/cache/*
|
||||||
|
/bin/*
|
||||||
/cli/*
|
/cli/*
|
||||||
/components/com_banners/*
|
/components/com_banners/*
|
||||||
|
/components/com_ajax/*
|
||||||
|
/components/com_config/*
|
||||||
|
/components/com_contenthistory/*
|
||||||
|
/components/com_tags/*
|
||||||
/components/com_contact/*
|
/components/com_contact/*
|
||||||
/components/com_content/*
|
/components/com_content/*
|
||||||
/components/com_contenthistory/*
|
|
||||||
/components/com_finder/*
|
/components/com_finder/*
|
||||||
/components/com_mailto/*
|
/components/com_mailto/*
|
||||||
/components/com_media/*
|
/components/com_media/*
|
||||||
@@ -245,24 +294,42 @@
|
|||||||
/components/com_users/*
|
/components/com_users/*
|
||||||
/components/com_weblinks/*
|
/components/com_weblinks/*
|
||||||
/components/com_wrapper/*
|
/components/com_wrapper/*
|
||||||
/components/com_ajax/*
|
|
||||||
/components/com_tags/*
|
|
||||||
/components/com_config/*
|
|
||||||
/components/index.html
|
/components/index.html
|
||||||
/images/banners/*
|
/images/banners/*
|
||||||
/images/headers/*
|
|
||||||
/images/sampledata/*
|
/images/sampledata/*
|
||||||
/images/joomla*
|
/images/joomla*
|
||||||
/images/index.html
|
/images/index.html
|
||||||
/images/powered_by.png
|
/images/powered_by.png
|
||||||
/includes/*
|
/includes/*
|
||||||
/installation/*
|
/installation/*
|
||||||
|
/language/en-GB/en-GB.com_ajax.ini
|
||||||
|
/language/en-GB/en-GB.com_config.ini
|
||||||
/language/en-GB/en-GB.com_contact.ini
|
/language/en-GB/en-GB.com_contact.ini
|
||||||
|
/language/en-GB/en-GB.com_finder.ini
|
||||||
|
/language/en-GB/en-GB.com_tags.ini
|
||||||
|
/language/en-GB/en-GB.finder_cli.ini
|
||||||
|
/language/en-GB/en-GB.lib_fof.sys.ini
|
||||||
/language/en-GB/en-GB.com_content.ini
|
/language/en-GB/en-GB.com_content.ini
|
||||||
|
/language/en-GB/en-GB.lib_idna_convert.sys.ini
|
||||||
/language/en-GB/en-GB.com_mailto.ini
|
/language/en-GB/en-GB.com_mailto.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.com_media.ini
|
/language/en-GB/en-GB.com_media.ini
|
||||||
|
/language/en-GB/en-GB.mod_finder.ini
|
||||||
/language/en-GB/en-GB.com_messages.ini
|
/language/en-GB/en-GB.com_messages.ini
|
||||||
|
/language/en-GB/en-GB.mod_tags_popular.ini
|
||||||
|
/language/en-GB/en-GB.mod_tags_popular.sys.ini
|
||||||
|
/language/en-GB/en-GB.mod_tags_similar.ini
|
||||||
|
/language/en-GB/en-GB.mod_tags_similar.sys.ini
|
||||||
|
/language/en-GB/en-GB.mod_finder.sys.ini
|
||||||
|
/language/en-GB/en-GB.tpl_beez3.ini
|
||||||
|
/language/en-GB/en-GB.tpl_beez3.sys.ini
|
||||||
/language/en-GB/en-GB.com_newsfeeds.ini
|
/language/en-GB/en-GB.com_newsfeeds.ini
|
||||||
|
/language/en-GB/en-GB.tpl_protostar.ini
|
||||||
|
/language/en-GB/en-GB.tpl_protostar.sys.ini
|
||||||
/language/en-GB/en-GB.com_search.ini
|
/language/en-GB/en-GB.com_search.ini
|
||||||
/language/en-GB/en-GB.com_users.ini
|
/language/en-GB/en-GB.com_users.ini
|
||||||
/language/en-GB/en-GB.com_weblinks.ini
|
/language/en-GB/en-GB.com_weblinks.ini
|
||||||
@@ -352,12 +419,6 @@
|
|||||||
/media/plg_system_highlight/*
|
/media/plg_system_highlight/*
|
||||||
/media/system/*
|
/media/system/*
|
||||||
/media/index.html
|
/media/index.html
|
||||||
/media/com_banners/*
|
|
||||||
/media/com_contenthistory/*
|
|
||||||
/media/com_joomlaupdate/*
|
|
||||||
/media/jui/*
|
|
||||||
/modules/mod_tags_popular/*
|
|
||||||
/modules/mod_tags_similar/*
|
|
||||||
/modules/mod_articles_archive/*
|
/modules/mod_articles_archive/*
|
||||||
/modules/mod_articles_categories/*
|
/modules/mod_articles_categories/*
|
||||||
/modules/mod_articles_category/*
|
/modules/mod_articles_category/*
|
||||||
@@ -389,6 +450,7 @@
|
|||||||
/plugins/authentication/ldap/*
|
/plugins/authentication/ldap/*
|
||||||
/plugins/authentication/index.html
|
/plugins/authentication/index.html
|
||||||
/plugins/captcha/recaptcha/*
|
/plugins/captcha/recaptcha/*
|
||||||
|
/plugins/captcha/index.html
|
||||||
/plugins/content/emailcloak/*
|
/plugins/content/emailcloak/*
|
||||||
/plugins/content/example/*
|
/plugins/content/example/*
|
||||||
/plugins/content/finder/*
|
/plugins/content/finder/*
|
||||||
@@ -398,6 +460,7 @@
|
|||||||
/plugins/content/pagebreak/*
|
/plugins/content/pagebreak/*
|
||||||
/plugins/content/pagenavigation/*
|
/plugins/content/pagenavigation/*
|
||||||
/plugins/content/vote/*
|
/plugins/content/vote/*
|
||||||
|
/plugins/content/contact/*
|
||||||
/plugins/content/index.html
|
/plugins/content/index.html
|
||||||
/plugins/editors/codemirror/*
|
/plugins/editors/codemirror/*
|
||||||
/plugins/editors/none/*
|
/plugins/editors/none/*
|
||||||
@@ -416,14 +479,18 @@
|
|||||||
/plugins/finder/contacts/*
|
/plugins/finder/contacts/*
|
||||||
/plugins/finder/content/*
|
/plugins/finder/content/*
|
||||||
/plugins/finder/newsfeeds/*
|
/plugins/finder/newsfeeds/*
|
||||||
|
/plugins/finder/tags/*
|
||||||
/plugins/finder/weblinks/*
|
/plugins/finder/weblinks/*
|
||||||
|
/plugins/installer/*
|
||||||
/plugins/quickicon/extensionupdate/*
|
/plugins/quickicon/extensionupdate/*
|
||||||
/plugins/quickicon/joomlaupdate/*
|
/plugins/quickicon/joomlaupdate/*
|
||||||
|
/plugins/quickicon/index.html
|
||||||
/plugins/search/categories/*
|
/plugins/search/categories/*
|
||||||
/plugins/search/contacts/*
|
/plugins/search/contacts/*
|
||||||
/plugins/search/content/*
|
/plugins/search/content/*
|
||||||
/plugins/search/newsfeeds/*
|
/plugins/search/newsfeeds/*
|
||||||
/plugins/search/weblinks/*
|
/plugins/search/weblinks/*
|
||||||
|
/plugins/search/tags/*
|
||||||
/plugins/search/index.html
|
/plugins/search/index.html
|
||||||
/plugins/system/cache/*
|
/plugins/system/cache/*
|
||||||
/plugins/system/debug/*
|
/plugins/system/debug/*
|
||||||
@@ -437,28 +504,20 @@
|
|||||||
/plugins/system/remember/*
|
/plugins/system/remember/*
|
||||||
/plugins/system/sef/*
|
/plugins/system/sef/*
|
||||||
/plugins/system/index.html
|
/plugins/system/index.html
|
||||||
|
/plugins/twofactorauth/*
|
||||||
/plugins/user/contactcreator/*
|
/plugins/user/contactcreator/*
|
||||||
/plugins/user/example/*
|
/plugins/user/example/*
|
||||||
/plugins/user/joomla/*
|
/plugins/user/joomla/*
|
||||||
/plugins/user/profile/*
|
/plugins/user/profile/*
|
||||||
/plugins/user/index.html
|
/plugins/user/index.html
|
||||||
/plugins/index.html
|
/plugins/index.html
|
||||||
/plugins/twofactorauth/totp/*
|
|
||||||
/plugins/content/contact/*
|
|
||||||
/plugins/authentication/cookie/*
|
|
||||||
/plugins/twofactorauth/yubikey/*
|
|
||||||
/plugins/twofactorauth/index.html
|
|
||||||
/plugins/captcha/*
|
|
||||||
/plugins/quickicon/index.html
|
|
||||||
/plugins/finder/tags/*
|
|
||||||
/plugins/search/tags/*
|
|
||||||
/templates/atomic/*
|
/templates/atomic/*
|
||||||
|
/templates/beez3/*
|
||||||
/templates/beez_20/*
|
/templates/beez_20/*
|
||||||
/templates/beez5/*
|
/templates/beez5/*
|
||||||
|
/templates/protostar/*
|
||||||
/templates/system/*
|
/templates/system/*
|
||||||
/templates/index.html
|
/templates/index.html
|
||||||
/templates/beez3/*
|
|
||||||
/templates/protostar/*
|
|
||||||
/tmp/*
|
/tmp/*
|
||||||
/configuration.php
|
/configuration.php
|
||||||
/index.php
|
/index.php
|
||||||
|
@@ -1,2 +0,0 @@
|
|||||||
*.pyc
|
|
||||||
*.class
|
|
11
KiCAD.gitignore
Normal file
11
KiCAD.gitignore
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
# For PCBs designed using KiCAD: http://www.kicad-pcb.org/
|
||||||
|
|
||||||
|
# Temporary files
|
||||||
|
*.000
|
||||||
|
*.bak
|
||||||
|
|
||||||
|
# Netlist files (exported from Eeschema)
|
||||||
|
*.net
|
||||||
|
|
||||||
|
# Autorouter files (exported from Pcbnew)
|
||||||
|
.dsn
|
@@ -1,3 +1,4 @@
|
|||||||
/bootstrap/compiled.php
|
/bootstrap/compiled.php
|
||||||
.env.*.php
|
.env.*.php
|
||||||
.env.php
|
.env.php
|
||||||
|
.env
|
||||||
|
@@ -89,7 +89,7 @@ LICENSE_AFL.txt
|
|||||||
LICENSE.html
|
LICENSE.html
|
||||||
LICENSE.txt
|
LICENSE.txt
|
||||||
LICENSE_EE*
|
LICENSE_EE*
|
||||||
mage
|
/mage
|
||||||
media/customer/
|
media/customer/
|
||||||
media/dhl/
|
media/dhl/
|
||||||
media/downloadable/
|
media/downloadable/
|
||||||
|
@@ -1,7 +1,10 @@
|
|||||||
target/
|
target/
|
||||||
|
**/target/
|
||||||
pom.xml.tag
|
pom.xml.tag
|
||||||
pom.xml.releaseBackup
|
pom.xml.releaseBackup
|
||||||
pom.xml.versionsBackup
|
pom.xml.versionsBackup
|
||||||
pom.xml.next
|
pom.xml.next
|
||||||
release.properties
|
release.properties
|
||||||
dependency-reduced-pom.xml
|
dependency-reduced-pom.xml
|
||||||
|
buildNumber.properties
|
||||||
|
.mvn/timing.properties
|
||||||
|
@@ -1,4 +1,5 @@
|
|||||||
Mercury/
|
Mercury/
|
||||||
|
Mercury.modules
|
||||||
*.mh
|
*.mh
|
||||||
*.err
|
*.err
|
||||||
*.init
|
*.init
|
||||||
|
@@ -1,2 +0,0 @@
|
|||||||
.meteor/local
|
|
||||||
.meteor/meteorite
|
|
@@ -23,5 +23,5 @@ coverage
|
|||||||
build/Release
|
build/Release
|
||||||
|
|
||||||
# Dependency directory
|
# Dependency directory
|
||||||
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
|
# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
|
||||||
node_modules
|
node_modules
|
||||||
|
@@ -1,6 +1,12 @@
|
|||||||
# Xcode
|
# Xcode
|
||||||
#
|
#
|
||||||
|
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
||||||
|
|
||||||
|
## Build generated
|
||||||
build/
|
build/
|
||||||
|
DerivedData
|
||||||
|
|
||||||
|
## Various settings
|
||||||
*.pbxuser
|
*.pbxuser
|
||||||
!default.pbxuser
|
!default.pbxuser
|
||||||
*.mode1v3
|
*.mode1v3
|
||||||
@@ -10,17 +16,28 @@ build/
|
|||||||
*.perspectivev3
|
*.perspectivev3
|
||||||
!default.perspectivev3
|
!default.perspectivev3
|
||||||
xcuserdata
|
xcuserdata
|
||||||
|
|
||||||
|
## Other
|
||||||
*.xccheckout
|
*.xccheckout
|
||||||
*.moved-aside
|
*.moved-aside
|
||||||
DerivedData
|
*.xcuserstate
|
||||||
|
*.xcscmblueprint
|
||||||
|
|
||||||
|
## Obj-C/Swift specific
|
||||||
*.hmap
|
*.hmap
|
||||||
*.ipa
|
*.ipa
|
||||||
*.xcuserstate
|
|
||||||
|
|
||||||
# CocoaPods
|
# CocoaPods
|
||||||
#
|
#
|
||||||
# We recommend against adding the Pods directory to your .gitignore. However
|
# We recommend against adding the Pods directory to your .gitignore. However
|
||||||
# you should judge for yourself, the pros and cons are mentioned at:
|
# you should judge for yourself, the pros and cons are mentioned at:
|
||||||
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
|
# http://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
|
||||||
#
|
#
|
||||||
# Pods/
|
#Pods/
|
||||||
|
|
||||||
|
# Carthage
|
||||||
|
#
|
||||||
|
# Add this line if you want to avoid checking in source code from Carthage dependencies.
|
||||||
|
# Carthage/Checkouts
|
||||||
|
|
||||||
|
Carthage/Build
|
||||||
|
@@ -1,29 +1,25 @@
|
|||||||
# Directories content
|
# Private files
|
||||||
cache/class_index.php
|
# The following files contain your database credentials and other personal data.
|
||||||
cache/smarty/cache/*
|
|
||||||
!cache/smarty/cache/index.php
|
|
||||||
cache/smarty/compile/*
|
|
||||||
!cache/smarty/compile/index.php
|
|
||||||
cache/tcpdf/*
|
|
||||||
!cache/tcpdf/index.php
|
|
||||||
|
|
||||||
|
config/settings.*.php
|
||||||
|
|
||||||
|
# Cache, temp and generated files
|
||||||
|
# The following files are generated by PrestaShop.
|
||||||
|
|
||||||
|
admin-dev/autoupgrade/
|
||||||
|
cache/
|
||||||
config/xml/*.xml
|
config/xml/*.xml
|
||||||
config/settings.inc.php
|
log/
|
||||||
|
*sitemap.xml
|
||||||
|
themes/*/cache/
|
||||||
|
modules/*/config*.xml
|
||||||
|
|
||||||
log/*.log
|
# Site content
|
||||||
|
# The following folders contain product images, virtual products, CSV's, etc.
|
||||||
|
|
||||||
img/*
|
admin-dev/backups/
|
||||||
!img/index.php
|
admin-dev/export/
|
||||||
!img/*/index.php
|
admin-dev/import/
|
||||||
|
download/
|
||||||
tools/smarty*/cache/*.php
|
img/
|
||||||
!tools/smarty*/cache/index.php
|
upload/
|
||||||
tools/smarty*/compile/*.php
|
|
||||||
!tools/smarty*/compile/index.php
|
|
||||||
|
|
||||||
themes/default/cache/*.js
|
|
||||||
themes/default/cache/*.css
|
|
||||||
|
|
||||||
# Ignore files on root directory
|
|
||||||
robots.txt
|
|
||||||
sitemap.xml
|
|
||||||
|
@@ -1,6 +1,7 @@
|
|||||||
# Byte-compiled / optimized / DLL files
|
# Byte-compiled / optimized / DLL files
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
|
*$py.class
|
||||||
|
|
||||||
# C extensions
|
# C extensions
|
||||||
*.so
|
*.so
|
||||||
@@ -41,6 +42,7 @@ htmlcov/
|
|||||||
.cache
|
.cache
|
||||||
nosetests.xml
|
nosetests.xml
|
||||||
coverage.xml
|
coverage.xml
|
||||||
|
*,cover
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
*.mo
|
*.mo
|
||||||
|
@@ -1,6 +1,12 @@
|
|||||||
# Xcode
|
# Xcode
|
||||||
#
|
#
|
||||||
|
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
|
||||||
|
|
||||||
|
## Build generated
|
||||||
build/
|
build/
|
||||||
|
DerivedData
|
||||||
|
|
||||||
|
## Various settings
|
||||||
*.pbxuser
|
*.pbxuser
|
||||||
!default.pbxuser
|
!default.pbxuser
|
||||||
*.mode1v3
|
*.mode1v3
|
||||||
@@ -10,12 +16,16 @@ build/
|
|||||||
*.perspectivev3
|
*.perspectivev3
|
||||||
!default.perspectivev3
|
!default.perspectivev3
|
||||||
xcuserdata
|
xcuserdata
|
||||||
|
|
||||||
|
## Other
|
||||||
*.xccheckout
|
*.xccheckout
|
||||||
*.moved-aside
|
*.moved-aside
|
||||||
DerivedData
|
*.xcuserstate
|
||||||
|
*.xcscmblueprint
|
||||||
|
|
||||||
|
## Obj-C/Swift specific
|
||||||
*.hmap
|
*.hmap
|
||||||
*.ipa
|
*.ipa
|
||||||
*.xcuserstate
|
|
||||||
|
|
||||||
# CocoaPods
|
# CocoaPods
|
||||||
#
|
#
|
||||||
|
@@ -33,6 +33,7 @@
|
|||||||
|
|
||||||
## Auxiliary and intermediate files from other packages:
|
## Auxiliary and intermediate files from other packages:
|
||||||
|
|
||||||
|
|
||||||
# algorithms
|
# algorithms
|
||||||
*.alg
|
*.alg
|
||||||
*.loa
|
*.loa
|
||||||
@@ -70,6 +71,9 @@ acs-*.bib
|
|||||||
*.glo
|
*.glo
|
||||||
*.gls
|
*.gls
|
||||||
|
|
||||||
|
# gnuplottex
|
||||||
|
*-gnuplottex-*
|
||||||
|
|
||||||
# hyperref
|
# hyperref
|
||||||
*.brf
|
*.brf
|
||||||
|
|
||||||
@@ -90,7 +94,8 @@ acs-*.bib
|
|||||||
# minitoc
|
# minitoc
|
||||||
*.maf
|
*.maf
|
||||||
*.mtc
|
*.mtc
|
||||||
*.mtc0
|
*.mtc[0-9]
|
||||||
|
*.mtc[1-9][0-9]
|
||||||
|
|
||||||
# minted
|
# minted
|
||||||
_minted*
|
_minted*
|
||||||
@@ -99,6 +104,9 @@ _minted*
|
|||||||
# morewrites
|
# morewrites
|
||||||
*.mw
|
*.mw
|
||||||
|
|
||||||
|
# mylatexformat
|
||||||
|
*.fmt
|
||||||
|
|
||||||
# nomencl
|
# nomencl
|
||||||
*.nlo
|
*.nlo
|
||||||
|
|
||||||
@@ -112,6 +120,11 @@ _minted*
|
|||||||
*.sympy
|
*.sympy
|
||||||
sympy-plots-for-*.tex/
|
sympy-plots-for-*.tex/
|
||||||
|
|
||||||
|
# TikZ & PGF
|
||||||
|
*.dpth
|
||||||
|
*.md5
|
||||||
|
*.auxlock
|
||||||
|
|
||||||
# todonotes
|
# todonotes
|
||||||
*.tdo
|
*.tdo
|
||||||
|
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
[Ll]ibrary/
|
/[Ll]ibrary/
|
||||||
[Tt]emp/
|
/[Tt]emp/
|
||||||
[Oo]bj/
|
/[Oo]bj/
|
||||||
[Bb]uild/
|
/[Bb]uild/
|
||||||
|
|
||||||
# Autogenerated VS/MD solution and project files
|
# Autogenerated VS/MD solution and project files
|
||||||
*.csproj
|
*.csproj
|
||||||
|
@@ -1,16 +1,22 @@
|
|||||||
## Ignore Visual Studio temporary files, build results, and
|
# temporary files generated by Visual Studio specific to the local user
|
||||||
## files generated by popular Visual Studio add-ons.
|
# contains profile information and other metadata
|
||||||
|
# remove: if no longer targeting Visual Studio 2013 or earlier
|
||||||
# User-specific files
|
|
||||||
*.suo
|
*.suo
|
||||||
*.user
|
*.user
|
||||||
*.userosscache
|
*.userosscache
|
||||||
*.sln.docstates
|
*.sln.docstates
|
||||||
|
#
|
||||||
# User-specific files (MonoDevelop/Xamarin Studio)
|
# new location for Visual Studio 2015
|
||||||
|
.vs/
|
||||||
|
#
|
||||||
|
# specific to MonoDevelop and Xamarin Studio
|
||||||
*.userprefs
|
*.userprefs
|
||||||
|
#
|
||||||
|
# workspace options file
|
||||||
|
# remove: if no longer targeting Visual Studio 6
|
||||||
|
*.opt
|
||||||
|
|
||||||
# Build results
|
# build output folders generated by Visual Studio
|
||||||
[Dd]ebug/
|
[Dd]ebug/
|
||||||
[Dd]ebugPublic/
|
[Dd]ebugPublic/
|
||||||
[Rr]elease/
|
[Rr]elease/
|
||||||
@@ -21,23 +27,57 @@ build/
|
|||||||
bld/
|
bld/
|
||||||
[Bb]in/
|
[Bb]in/
|
||||||
[Oo]bj/
|
[Oo]bj/
|
||||||
|
#
|
||||||
|
# default build log file
|
||||||
|
# remove: if no longer targeting Visual Studio 6
|
||||||
|
*.plg
|
||||||
|
|
||||||
# Visual Studo 2015 cache/options directory
|
# MSTest
|
||||||
.vs/
|
# a test framework from Microsoft
|
||||||
|
# remove: if you are not using the MSTest runner to run your tests
|
||||||
# MSTest test Results
|
|
||||||
[Tt]est[Rr]esult*/
|
[Tt]est[Rr]esult*/
|
||||||
[Bb]uild[Ll]og.*
|
[Bb]uild[Ll]og.*
|
||||||
|
|
||||||
# NUNIT
|
# NUnit
|
||||||
|
# an open source test framework for .NET
|
||||||
|
# url: http://www.nunit.org/
|
||||||
|
# remove: if you are not using the NUnit test runner to run your tests
|
||||||
*.VisualState.xml
|
*.VisualState.xml
|
||||||
TestResult.xml
|
TestResult.xml
|
||||||
|
|
||||||
# Build Results of an ATL Project
|
# ATL (Active Template Library) Project
|
||||||
|
# remove: if you do not have an ATL project in your solution
|
||||||
[Dd]ebugPS/
|
[Dd]ebugPS/
|
||||||
[Rr]eleasePS/
|
[Rr]eleasePS/
|
||||||
dlldata.c
|
dlldata.c
|
||||||
|
|
||||||
|
# DNX
|
||||||
|
# summary: the environment for cross-platform .NET development
|
||||||
|
# url: https://github.com/aspnet/dnx
|
||||||
|
#
|
||||||
|
# locks the package references for a project to specific versions
|
||||||
|
# url: https://github.com/aspnet/Home/wiki/Lock-file
|
||||||
|
# remove: if you would like to lock your dependencies to a specific version
|
||||||
|
# when committing and prevent package restore from selecting a
|
||||||
|
# more recent version
|
||||||
|
project.lock.json
|
||||||
|
#
|
||||||
|
# build output
|
||||||
|
artifacts/
|
||||||
|
|
||||||
|
# Program Database files created by various compilers
|
||||||
|
# used when debugging compiled code - the file essentially represents a lookup
|
||||||
|
# so that symbols can be resolved to the relevant source code
|
||||||
|
# url: https://en.wikipedia.org/wiki/Program_database
|
||||||
|
*.pdb
|
||||||
|
|
||||||
|
# Visual SourceSafe hint files to keep the projects and solutions in sync
|
||||||
|
# with source control - these are no longer necessary once you've moved away
|
||||||
|
# from Visual SourceSafe
|
||||||
|
*.vspscc
|
||||||
|
*.vssscc
|
||||||
|
|
||||||
|
|
||||||
*_i.c
|
*_i.c
|
||||||
*_p.c
|
*_p.c
|
||||||
*_i.h
|
*_i.h
|
||||||
@@ -45,7 +85,6 @@ dlldata.c
|
|||||||
*.meta
|
*.meta
|
||||||
*.obj
|
*.obj
|
||||||
*.pch
|
*.pch
|
||||||
*.pdb
|
|
||||||
*.pgc
|
*.pgc
|
||||||
*.pgd
|
*.pgd
|
||||||
*.rsp
|
*.rsp
|
||||||
@@ -56,14 +95,15 @@ dlldata.c
|
|||||||
*.tmp
|
*.tmp
|
||||||
*.tmp_proj
|
*.tmp_proj
|
||||||
*.log
|
*.log
|
||||||
*.vspscc
|
|
||||||
*.vssscc
|
|
||||||
.builds
|
.builds
|
||||||
*.pidb
|
*.pidb
|
||||||
*.svclog
|
*.svclog
|
||||||
*.scc
|
*.scc
|
||||||
|
|
||||||
# Chutzpah Test files
|
# Chutzpah
|
||||||
|
# a JS unit testing framework for commit
|
||||||
|
# url: https://github.com/mmanela/chutzpah
|
||||||
|
# remove: if you do not use the Chutzpah test runner in your project
|
||||||
_Chutzpah*
|
_Chutzpah*
|
||||||
|
|
||||||
# Visual C++ cache files
|
# Visual C++ cache files
|
||||||
@@ -74,46 +114,70 @@ ipch/
|
|||||||
*.sdf
|
*.sdf
|
||||||
*.cachefile
|
*.cachefile
|
||||||
|
|
||||||
# Visual Studio profiler
|
# temporary files generated by the Visual Studio profiling tools
|
||||||
|
# remove: if you are not using these features of Visual Studio
|
||||||
*.psess
|
*.psess
|
||||||
*.vsp
|
*.vsp
|
||||||
*.vspx
|
*.vspx
|
||||||
|
|
||||||
# TFS 2012 Local Workspace
|
# TFS 2012 Local Workspace
|
||||||
|
# remove: if you are not using TFVC in this repository
|
||||||
$tf/
|
$tf/
|
||||||
|
|
||||||
# Guidance Automation Toolkit
|
# Guidance Automation Toolkit
|
||||||
*.gpState
|
*.gpState
|
||||||
|
|
||||||
# ReSharper is a .NET coding add-in
|
# ReSharper
|
||||||
|
# a Visual Studio extension which supports various project types
|
||||||
|
# url: https://www.jetbrains.com/resharper/
|
||||||
_ReSharper*/
|
_ReSharper*/
|
||||||
*.[Rr]e[Ss]harper
|
*.[Rr]e[Ss]harper
|
||||||
*.DotSettings.user
|
*.DotSettings.user
|
||||||
|
|
||||||
# JustCode is a .NET coding addin-in
|
# JustCode
|
||||||
|
# a Visual Studio extension for various project types
|
||||||
|
# url: https://www.jetbrains.com/resharper/
|
||||||
.JustCode
|
.JustCode
|
||||||
|
|
||||||
# TeamCity is a build add-in
|
# TeamCity
|
||||||
|
# a Visual Studio extension you can download from your TeamCity server
|
||||||
|
# url: https://confluence.jetbrains.com/display/TCD9/Visual+Studio+Addin
|
||||||
_TeamCity*
|
_TeamCity*
|
||||||
|
|
||||||
# DotCover is a Code Coverage Tool
|
# DotCover
|
||||||
|
# a code coverage plugin for Visual Studio
|
||||||
|
# url: https://www.jetbrains.com/dotcover/
|
||||||
*.dotCover
|
*.dotCover
|
||||||
|
|
||||||
# NCrunch
|
# NCrunch
|
||||||
|
# a continuous test runner for Visual Studio
|
||||||
|
# url: http://www.ncrunch.net
|
||||||
_NCrunch_*
|
_NCrunch_*
|
||||||
.*crunch*.local.xml
|
.*crunch*.local.xml
|
||||||
|
nCrunchTemp_*
|
||||||
|
|
||||||
# MightyMoose
|
# MightyMoose
|
||||||
|
# a continuous test runner for Visual Studio
|
||||||
|
# url: http://www.continuoustests.com/
|
||||||
*.mm.*
|
*.mm.*
|
||||||
AutoTest.Net/
|
AutoTest.Net/
|
||||||
|
|
||||||
# Web workbench (sass)
|
# Web Workbench
|
||||||
|
# SASS, LESS and Coffeescript integration for Visual Studio
|
||||||
|
# url: http://www.mindscapehq.com/products/web-workbench
|
||||||
.sass-cache/
|
.sass-cache/
|
||||||
|
|
||||||
# Installshield output folder
|
# InstallShield
|
||||||
|
# installer framework for Windows machines
|
||||||
|
# url: http://www.flexerasoftware.com/producer/products/software-installation/installshield-software-installer/
|
||||||
|
#
|
||||||
|
# output folder
|
||||||
[Ee]xpress/
|
[Ee]xpress/
|
||||||
|
|
||||||
# DocProject is a documentation generator add-in
|
# DocProject
|
||||||
|
# a document generation add-in for Visual Studio based on Sandcastle
|
||||||
|
# url: http://docproject.codeplex.com/
|
||||||
|
# remove: if you are using Visual Studio 2010 or later (which are not supported)
|
||||||
DocProject/buildhelp/
|
DocProject/buildhelp/
|
||||||
DocProject/Help/*.HxT
|
DocProject/Help/*.HxT
|
||||||
DocProject/Help/*.HxC
|
DocProject/Help/*.HxC
|
||||||
@@ -123,24 +187,42 @@ DocProject/Help/*.hhp
|
|||||||
DocProject/Help/Html2
|
DocProject/Help/Html2
|
||||||
DocProject/Help/html
|
DocProject/Help/html
|
||||||
|
|
||||||
# Click-Once directory
|
# ClickOnce installer and deployment
|
||||||
|
# url: https://msdn.microsoft.com/en-us/library/142dbbz4(v=vs.90).aspx
|
||||||
|
# remove: if you do not have ClickOnce publishing enabled for your projects
|
||||||
publish/
|
publish/
|
||||||
|
|
||||||
# Publish Web Output
|
# Publish Web Output
|
||||||
*.[Pp]ublish.xml
|
*.[Pp]ublish.xml
|
||||||
*.azurePubxml
|
*.azurePubxml
|
||||||
# TODO: Comment the next line if you want to checkin your web deploy settings
|
#
|
||||||
# but database connection strings (with potential passwords) will be unencrypted
|
# remove: if you have sensitive details in your database connection strings
|
||||||
|
(such as passwords) committing this settings file will mean
|
||||||
|
that they are stored in an unencrypted state in your repository
|
||||||
*.pubxml
|
*.pubxml
|
||||||
*.publishproj
|
*.publishproj
|
||||||
|
|
||||||
# NuGet Packages
|
# NuGet
|
||||||
|
# summary: the package manager tool used in Visual Studio
|
||||||
|
# url: https://nuget.org
|
||||||
|
#
|
||||||
|
# output packages created by NuGet
|
||||||
*.nupkg
|
*.nupkg
|
||||||
# The packages folder can be ignored because of Package Restore
|
#
|
||||||
|
# Since NuGet 2.7, package restore is now a first class feature of Visual Studio
|
||||||
|
# so you do not need to check in your packages
|
||||||
|
# url: https://docs.nuget.org/consume/package-restore
|
||||||
|
# remove: if you do not wish to restore packages in this way, or have
|
||||||
|
package restore disabled
|
||||||
**/packages/*
|
**/packages/*
|
||||||
# except build/, which is used as an MSBuild target.
|
#
|
||||||
|
# some packages include MSBuild targets files, which are stored in this
|
||||||
|
# location and should be kept in version control
|
||||||
!**/packages/build/
|
!**/packages/build/
|
||||||
# Uncomment if necessary however generally it will be regenerated when needed
|
#
|
||||||
|
# this file is a local listing of where to find your packages.config files, and
|
||||||
|
# is regenerated by Visual Studio during a build
|
||||||
|
# include: if you wish to version this file
|
||||||
#!**/packages/repositories.config
|
#!**/packages/repositories.config
|
||||||
|
|
||||||
# Windows Azure Build Output
|
# Windows Azure Build Output
|
||||||
@@ -150,25 +232,53 @@ csx/
|
|||||||
# Windows Store app package directory
|
# Windows Store app package directory
|
||||||
AppPackages/
|
AppPackages/
|
||||||
|
|
||||||
# Others
|
# Visual Studio cache files
|
||||||
|
# files ending in .cache can be ignored
|
||||||
*.[Cc]ache
|
*.[Cc]ache
|
||||||
ClientBin/
|
# but keep track of directories ending in .cache
|
||||||
|
!*.[Cc]ache/
|
||||||
|
|
||||||
|
# StyleCop
|
||||||
|
# an extension for enforcing coding style in C#
|
||||||
|
# url: https://stylecop.codeplex.com/
|
||||||
|
#
|
||||||
|
# temporary files created by the tool
|
||||||
[Ss]tyle[Cc]op.*
|
[Ss]tyle[Cc]op.*
|
||||||
|
|
||||||
|
# Others
|
||||||
~$*
|
~$*
|
||||||
*~
|
*~
|
||||||
*.dbmdl
|
*.dbmdl
|
||||||
*.dbproj.schemaview
|
*.dbproj.schemaview
|
||||||
|
#
|
||||||
|
#
|
||||||
*.pfx
|
*.pfx
|
||||||
*.publishsettings
|
*.publishsettings
|
||||||
|
#
|
||||||
|
# the local cache of node module installed by NPM
|
||||||
|
# remove: if you are not using nodejs in your solution
|
||||||
|
OR if you wish to keep this cache under version control
|
||||||
node_modules/
|
node_modules/
|
||||||
bower_components/
|
|
||||||
|
# Orleans
|
||||||
|
# a Distributed Actor Model framework for .NET
|
||||||
|
# url: https://github.com/dotnet/Orleans
|
||||||
|
#
|
||||||
|
# code generated as part of compilation
|
||||||
|
orleans.codegen.cs
|
||||||
|
|
||||||
# RIA/Silverlight projects
|
# RIA/Silverlight projects
|
||||||
|
# url: https://www.microsoft.com/silverlight/
|
||||||
|
# output directory for *.xap artifacts
|
||||||
|
ClientBin/
|
||||||
|
# temporary directory used by compiler
|
||||||
Generated_Code/
|
Generated_Code/
|
||||||
|
|
||||||
# Backup & report files from converting an old project file
|
# Migrating Projects
|
||||||
# to a newer Visual Studio version. Backup files are not needed,
|
# When upgrading a solution to a newer version of Visual Studio, there are a
|
||||||
# because we have git ;-)
|
# number of output files created so you can view the log, troubleshoot issues
|
||||||
|
# and potentially revert to a backup. These can be safely ignored, because
|
||||||
|
# you're already using version control.
|
||||||
_UpgradeReport_Files/
|
_UpgradeReport_Files/
|
||||||
Backup*/
|
Backup*/
|
||||||
UpgradeLog*.XML
|
UpgradeLog*.XML
|
||||||
@@ -179,18 +289,18 @@ UpgradeLog*.htm
|
|||||||
*.ldf
|
*.ldf
|
||||||
|
|
||||||
# Business Intelligence projects
|
# Business Intelligence projects
|
||||||
|
# remove: if you do not have Business Intelligence projects in your solution
|
||||||
*.rdl.data
|
*.rdl.data
|
||||||
*.bim.layout
|
*.bim.layout
|
||||||
*.bim_*.settings
|
*.bim_*.settings
|
||||||
|
|
||||||
# Microsoft Fakes
|
# Microsoft Fakes
|
||||||
|
# a local cache of assemblies
|
||||||
|
# url: https://msdn.microsoft.com/en-us/library/hh549175.aspx
|
||||||
|
# remove: if you are not using Microsoft Fakes in your projects
|
||||||
FakesAssemblies/
|
FakesAssemblies/
|
||||||
|
|
||||||
# Node.js Tools for Visual Studio
|
# Node.js Tools for Visual Studio
|
||||||
|
# url: https://github.com/Microsoft/nodejstools
|
||||||
|
# remove: if you do not have this extension installed
|
||||||
.ntvs_analysis.dat
|
.ntvs_analysis.dat
|
||||||
|
|
||||||
# Visual Studio 6 build log
|
|
||||||
*.plg
|
|
||||||
|
|
||||||
# Visual Studio 6 workspace options file
|
|
||||||
*.opt
|
|
||||||
|
@@ -11,3 +11,8 @@ wp-content/cache/
|
|||||||
wp-content/upgrade/
|
wp-content/upgrade/
|
||||||
wp-content/uploads/
|
wp-content/uploads/
|
||||||
wp-content/wp-cache-config.php
|
wp-content/wp-cache-config.php
|
||||||
|
wp-content/plugins/hello.php
|
||||||
|
|
||||||
|
/readme.html
|
||||||
|
/license.txt
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user