12 Commits

Author SHA1 Message Date
Brendan Forster
3d4c6f2148 Merge pull request #2824 from github/reduce-noise
Add an explanation to reduce PHP framework clutter
2018-10-12 10:29:37 -03:00
Brendan Forster
765ecc398b some more annotation 2015-07-04 13:26:41 +09:30
Brendan Forster
eab8d4876d extract a couple of rules and explain them in more detail 2015-07-04 12:56:21 +09:30
Brendan Forster
d983b4f5e2 moved Visual Studio 6 options into relevant sections 2015-07-04 12:38:07 +09:30
Brendan Forster
0f61d7e240 refreshing words 2015-07-04 12:34:17 +09:30
Brendan Forster
f515ae6c5c reordering 2015-07-04 12:20:58 +09:30
Brendan Forster
237c94586f more annotations 2015-07-04 12:18:57 +09:30
Brendan Forster
8803192fd3 some more cleanup 2015-07-04 12:10:06 +09:30
Brendan Forster
f2c0e3cc5a fleshing out the NuGet section 2015-07-04 11:59:31 +09:30
Brendan Forster
7d209f8aac a bit more cleanup 2015-07-04 11:51:03 +09:30
Brendan Forster
a5b891d9d2 first pass at annotating the source 2015-07-04 10:43:43 +09:30
Carl Suster
69fef749cb Add an explanation to reduce PHP framework clutter 2015-03-01 12:53:03 +11:00
98 changed files with 432 additions and 1302 deletions

View File

@@ -1,11 +0,0 @@
**Reasons for making this change:**
_TODO_
**Links to documentation supporting these rule changes:**
_TODO_
If this is a new template:
- **Link to application or projects homepage**: _TODO_

1
.gitignore vendored
View File

@@ -1 +0,0 @@
VERSION

View File

@@ -2,18 +2,10 @@
bin/ bin/
bin-debug/ bin-debug/
bin-release/ bin-release/
[Oo]bj/ # FlashDevelop obj
[Bb]in/ # FlashDevelop bin
# Other files and folders # Other files and folders
.settings/ .settings/
# Executables
*.swf
*.air
*.ipa
*.apk
# Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties` # Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties`
# should NOT be excluded as they contain compiler settings and other important # should NOT be excluded as they contain compiler settings and other important
# information for Eclipse / Flash Builder. # information for Eclipse / Flash Builder.

View File

@@ -2,7 +2,7 @@
*.apk *.apk
*.ap_ *.ap_
# Files for the ART/Dalvik VM # Files for the Dalvik VM
*.dex *.dex
# Java class files # Java class files
@@ -11,7 +11,6 @@
# Generated files # Generated files
bin/ bin/
gen/ gen/
out/
# Gradle files # Gradle files
.gradle/ .gradle/
@@ -25,30 +24,3 @@ proguard/
# Log Files # Log Files
*.log *.log
# Android Studio Navigation editor temp files
.navigation/
# Android Studio captures folder
captures/
# Intellij
*.iml
.idea/workspace.xml
.idea/tasks.xml
.idea/gradle.xml
.idea/libraries
# Keystore files
*.jks
# External native build folder generated in Android Studio 2.2 and later
.externalNativeBuild
# Google Services (e.g. APIs or Firebase)
google-services.json
#Freeline
freeline.py
freeline/
freeline_project_description.json

View File

@@ -1,33 +1,14 @@
# http://www.gnu.org/software/automake # http://www.gnu.org/software/automake
Makefile.in Makefile.in
/ar-lib
/mdate-sh
/py-compile
/test-driver
/ylwrap
# http://www.gnu.org/software/autoconf # http://www.gnu.org/software/autoconf
/autom4te.cache /autom4te.cache
/autoscan.log
/autoscan-*.log
/aclocal.m4 /aclocal.m4
/compile /compile
/config.guess
/config.h.in
/config.sub
/configure /configure
/configure.scan
/depcomp /depcomp
/install-sh /install-sh
/missing /missing
/stamp-h1 /stamp-h1
# https://www.gnu.org/software/libtool/
/ltmain.sh
# http://www.gnu.org/software/texinfo
/texinfo.tex

View File

@@ -1,6 +1,3 @@
# Prerequisites
*.d
# Compiled Object files # Compiled Object files
*.slo *.slo
*.lo *.lo
@@ -18,7 +15,6 @@
# Fortran module files # Fortran module files
*.mod *.mod
*.smod
# Compiled Static libraries # Compiled Static libraries
*.lai *.lai

View File

@@ -1,17 +1,9 @@
# Prerequisites
*.d
# Object files # Object files
*.o *.o
*.ko *.ko
*.obj *.obj
*.elf *.elf
# Linker output
*.ilk
*.map
*.exp
# Precompiled Headers # Precompiled Headers
*.gch *.gch
*.pch *.pch
@@ -38,14 +30,3 @@
# Debug files # Debug files
*.dSYM/ *.dSYM/
*.su
*.idb
*.pdb
# Kernel Module Compile Results
*.mod*
*.cmd
modules.order
Module.symvers
Mkfile.old
dkms.conf

View File

@@ -1,9 +1,5 @@
CMakeCache.txt CMakeCache.txt
CMakeFiles CMakeFiles
CMakeScripts
Testing
Makefile Makefile
cmake_install.cmake cmake_install.cmake
install_manifest.txt install_manifest.txt
compile_commands.json
CTestTestfile.cmake

View File

@@ -28,6 +28,11 @@ high quality, we request that contributions adhere to the following guidelines.
In general, the more you can do to help us understand the change youre making, In general, the more you can do to help us understand the change youre making,
the more likely well be to accept your contribution quickly. the more likely well be to accept your contribution quickly.
If a template is mostly a list of files installed by a particular version of
some software (e.g. a PHP framework) then it's brittle and probably no more
helpful than a simple `ls`. If it's not possible to curate a small set of
useful rules, then the template might not be a good fit for this collection.
Please also understand that we cant list every tool that ever existed. Please also understand that we cant list every tool that ever existed.
Our aim is to curate a collection of the *most common and helpful* templates, Our aim is to curate a collection of the *most common and helpful* templates,
not to make sure we cover every project possible. If we choose not to not to make sure we cover every project possible. If we choose not to

View File

@@ -2,20 +2,8 @@
/vendor/* /vendor/*
/config/app.php /config/app.php
/tmp/*
/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/*
!/logs/empty
# CakePHP 2 # CakePHP 2

View File

@@ -4,8 +4,3 @@
*/cache/* */cache/*
!*/cache/index.html !*/cache/index.html
!*/cache/.htaccess !*/cache/.htaccess
user_guide_src/build/*
user_guide_src/cilexer/build/*
user_guide_src/cilexer/dist/*
user_guide_src/cilexer/pycilexer.egg-info/*

View File

@@ -1,17 +1,3 @@
*.FASL *.FASL
*.fasl *.fasl
*.lisp-temp *.lisp-temp
*.dfsl
*.pfsl
*.d64fsl
*.p64fsl
*.lx64fsl
*.lx32fsl
*.dx64fsl
*.dx32fsl
*.fx64fsl
*.fx32fsl
*.sx64fsl
*.sx32fsl
*.wx64fsl
*.wx32fsl

View File

@@ -1,5 +1,5 @@
composer.phar composer.phar
/vendor/ vendor/
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file # 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 # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file

View File

@@ -1,4 +1,3 @@
config/site.php config/site.php
files/cache/* files/cache/*
files/tmp/* files/tmp/*
.htaccess

View File

@@ -1,30 +1,3 @@
.*.aux
*.a
*.cma
*.cmi
*.cmo
*.cmx
*.cmxa
*.cmxs
*.glob
*.ml.d
*.ml4.d
*.mli.d
*.mllib.d
*.mlpack.d
*.native
*.o
*.v.d
*.vio
*.vo *.vo
.coq-native/ *.glob
.csdp.cache *.v.d
.lia.cache
.nia.cache
.nlia.cache
.nra.cache
csdp.cache
lia.cache
nia.cache
nlia.cache
nra.cache

View File

@@ -1,24 +0,0 @@
# 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

View File

@@ -1,33 +1,14 @@
# See https://www.dartlang.org/tools/private-files.html # Dont commit the following directories created by pub.
.buildlog
# Files and directories created by pub
# SDK 1.20 and later (no longer creates packages directories)
.packages
.pub/ .pub/
build/ build/
packages
# Older SDK versions # Or the files created by dart2js.
# (Include if the minimum SDK version specified in pubsepc.yaml is earlier than 1.20)
.project
.buildlog
**/packages/
# Files created by dart2js
# (Most Dart developers will use pub build to compile Dart, use/modify these
# rules if you intend to use dart2js directly
# Convention is to use extension '.dart.js' for Dart compiled to Javascript to
# differentiate from explicit Javascript files)
*.dart.js *.dart.js
*.part.js *.js_
*.js.deps *.js.deps
*.js.map *.js.map
*.info.json
# Directory created by dartdoc # Include when developing application packages.
doc/api/
# Don't commit pubspec lock file
# (Library packages only! Remove pattern if developing an application package)
pubspec.lock pubspec.lock

View File

@@ -20,10 +20,6 @@
# Deployment Manager configuration file for your project. Added in Delphi XE2. # 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. # Uncomment this if it is not mobile development and you do not use remote debug feature.
#*.deployproj #*.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
# #
# Delphi compiler-generated binaries (safe to delete) # Delphi compiler-generated binaries (safe to delete)
@@ -41,13 +37,9 @@
*.tds *.tds
*.dcu *.dcu
*.lib *.lib
*.a
*.o
*.ocx
# Delphi autogenerated files (duplicated info) # Delphi autogenerated files (duplicated info)
*.cfg *.cfg
*.hpp
*Resource.rc *Resource.rc
# Delphi local files (user-specific info) # Delphi local files (user-specific info)
@@ -59,8 +51,7 @@
# Delphi history and backups # Delphi history and backups
__history/ __history/
__recovery/
*.~* *.~*
# Castalia statistics file (since XE7 Castalia is distributed with Delphi) # Castalia statistics file
*.stat *.stat

View File

@@ -15,7 +15,7 @@ robots.txt
/MAINTAINERS.txt /MAINTAINERS.txt
/UPGRADE.txt /UPGRADE.txt
/README.txt /README.txt
sites/README.txt sites/all/README.txt
sites/all/modules/README.txt sites/all/modules/README.txt
sites/all/themes/README.txt sites/all/themes/README.txt

View File

@@ -11,10 +11,6 @@
# comment the following line if you want to have your project file included. # comment the following line if you want to have your project file included.
eagle.epf eagle.epf
# Autorouter files
*.pro
*.job
# CAM files # CAM files
*.$$$ *.$$$
*.cmp *.cmp
@@ -38,7 +34,3 @@ eagle.epf
*.info *.info
*.eps *.eps
# file locks introduced since 7.x
*.lck

View File

@@ -3,9 +3,3 @@
# Packaging # Packaging
.cask .cask
# Backup files
*~
# Undo-tree save-files
*.~undo-tree

View File

@@ -1,6 +1,4 @@
/_build /_build
/cover
/deps /deps
erl_crash.dump erl_crash.dump
*.ez *.ez
*.beam

View File

@@ -1,4 +0,0 @@
# elm-package generated files
elm-stuff
# elm-repl generated files
repl-temp-*

View File

@@ -4,7 +4,7 @@ deps
*.beam *.beam
*.plt *.plt
erl_crash.dump erl_crash.dump
ebin/*.beam ebin
rel/example_project rel/example_project
.concrete/DEV_MODE .concrete/DEV_MODE
.rebar .rebar

View File

@@ -1,12 +1,4 @@
.architect .architect
bootstrap.css
bootstrap.js
bootstrap.json bootstrap.json
bootstrap.jsonp
build/ build/
classic.json
classic.jsonp
ext/ ext/
modern.json
modern.jsonp
resources/sass/.sass-cache/

View File

@@ -1,21 +1,2 @@
# the composer package lock file and install directory fuel/app/logs/*/*/*
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file fuel/app/cache/*/*
# 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

View File

@@ -1 +0,0 @@
*.retry

View File

@@ -1,2 +0,0 @@
.bzr/
.bzrignore

View File

@@ -1,4 +1,4 @@
/CVS/* /CVS/*
**/CVS/* */CVS/*
.cvsignore .cvsignore
*/.cvsignore */.cvsignore

View File

@@ -1,10 +0,0 @@
# Calabash / Cucumber
rerun/
reports/
screenshots/
screenshot*.png
test-servers/
# bundler
.bundle
vendor

View File

@@ -1,7 +1,3 @@
# DW Dreamweaver added files # DW Dreamweaver added files
_notes _notes
_compareTemp
configs/
dwsync.xml dwsync.xml
dw_php_codehinting.config
*.mno

View File

@@ -1,4 +0,0 @@
# Dropbox settings and caches
.dropbox
.dropbox.attr
.dropbox.cache

View File

@@ -1,5 +1,6 @@
*.pydevproject
.metadata .metadata
.gradle
bin/ bin/
tmp/ tmp/
*.tmp *.tmp
@@ -9,7 +10,6 @@ tmp/
local.properties local.properties
.settings/ .settings/
.loadpath .loadpath
.recommenders
# Eclipse Core # Eclipse Core
.project .project
@@ -20,10 +20,7 @@ local.properties
# Locally stored "Eclipse launch configurations" # Locally stored "Eclipse launch configurations"
*.launch *.launch
# PyDev specific (Python IDE for Eclipse) # CDT-specific
*.pydevproject
# CDT-specific (C/C++ Development Tooling)
.cproject .cproject
# JDT-specific (Eclipse Java Development Tools) # JDT-specific (Eclipse Java Development Tools)
@@ -32,20 +29,11 @@ local.properties
# Java annotation processor (APT) # Java annotation processor (APT)
.factorypath .factorypath
# PDT-specific (PHP Development Tools) # PDT-specific
.buildpath .buildpath
# sbteclipse plugin # sbteclipse plugin
.target .target
# Tern plugin
.tern-project
# TeXlipse plugin # TeXlipse plugin
.texlipse .texlipse
# STS (Spring Tool Suite)
.springBeans
# Code Recommenders
.recommenders/

View File

@@ -1,2 +1,2 @@
# The compilation directory # The compilation directoy
EIFGENs EIFGENs

View File

@@ -30,16 +30,3 @@ tramp
# cask packages # cask packages
.cask/ .cask/
dist/
# Flycheck
flycheck_*.el
# server auth directory
/server/
# projectiles files
.projectile
# directory configuration
.dir-locals.el

View File

@@ -1,2 +0,0 @@
secring.*

View File

@@ -0,0 +1,2 @@
# Temporary data
.ipynb_checkpoints/

View File

@@ -1,27 +1,32 @@
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
*.iml
## Directory-based project format:
.idea/
# if you remove the above rule, at least ignore the following:
# User-specific stuff: # User-specific stuff:
.idea/workspace.xml # .idea/workspace.xml
.idea/tasks.xml # .idea/tasks.xml
# .idea/dictionaries
# Sensitive or high-churn files: # Sensitive or high-churn files:
.idea/dataSources/ # .idea/dataSources.ids
.idea/dataSources.ids # .idea/dataSources.xml
.idea/dataSources.xml # .idea/sqlDataSources.xml
.idea/dataSources.local.xml # .idea/dynamic.xml
.idea/sqlDataSources.xml # .idea/uiDesigner.xml
.idea/dynamic.xml
.idea/uiDesigner.xml
# Gradle: # Gradle:
.idea/gradle.xml # .idea/gradle.xml
.idea/libraries # .idea/libraries
# Mongo Explorer plugin: # Mongo Explorer plugin:
.idea/mongoSettings.xml # .idea/mongoSettings.xml
## File-based project format: ## File-based project format:
*.ipr
*.iws *.iws
## Plugin-specific files: ## Plugin-specific files:
@@ -39,4 +44,3 @@ atlassian-ide-plugin.xml
com_crashlytics_export_strings.xml com_crashlytics_export_strings.xml
crashlytics.properties crashlytics.properties
crashlytics-build.properties crashlytics-build.properties
fabric.properties

View File

@@ -1,13 +1,7 @@
*~ *~
# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
# KDE directory preferences # KDE directory preferences
.directory .directory
# Linux trash folder which might appear on any partition or disk # Linux trash folder which might appear on any partition or disk
.Trash-* .Trash-*
# .nfs files are created when an open file is removed but is still being accessed
.nfs*

View File

@@ -14,9 +14,3 @@
# Simulink Code Generation # Simulink Code Generation
slprj/ slprj/
# Session info
octave-workspace
# Simulink autosave extension
.autosave

View File

@@ -1,6 +1,3 @@
.hg/ /.hg/*
*/.hg/*
.hgignore .hgignore
.hgsigs
.hgsub
.hgsubstate
.hgtags

View File

@@ -8,9 +8,3 @@
# Excel Backup File # Excel Backup File
*.xlk *.xlk
# PowerPoint temporary
~$*.ppt*
# Visio autosave temporary files
*.~vsdx

View File

@@ -3,4 +3,6 @@ build/
nbbuild/ nbbuild/
dist/ dist/
nbdist/ nbdist/
nbactions.xml
nb-configuration.xml
.nb-gradle/ .nb-gradle/

View File

@@ -1,26 +1,24 @@
*.DS_Store .DS_Store
.AppleDouble .AppleDouble
.LSOverride .LSOverride
# Icon must end with two \r # Icon must end with two \r
Icon Icon
# Thumbnails
# Thumbnails ._*
._*
# Files that might appear in the root of a volume
# Files that might appear in the root of a volume .DocumentRevisions-V100
.DocumentRevisions-V100 .fseventsd
.fseventsd .Spotlight-V100
.Spotlight-V100 .TemporaryItems
.TemporaryItems .Trashes
.Trashes .VolumeIcon.icns
.VolumeIcon.icns
.com.apple.timemachine.donotpresent # Directories potentially created on remote AFP share
.AppleDB
# Directories potentially created on remote AFP share .AppleDesktop
.AppleDB Network Trash Folder
.AppleDesktop Temporary Items
Network Trash Folder .apdisk
Temporary Items
.apdisk

View File

@@ -1 +0,0 @@
.otto/

View File

@@ -1,24 +0,0 @@
# .gitignore file for git projects containing Stata files
# Commercial statistical software: http://www.stata.com
# Stata dataset and output files
*.dta
*.gph
*.log
*.smcl
*.stpr
*.stsem
# Graphic export files from Stata
# Stata command graph export: http://www.stata.com/manuals14/g-2graphexport.pdf
#
# You may add graphic export files to your .gitignore. However you should be
# aware that this will exclude all image files from this main directory
# and subdirectories.
# *.ps
# *.eps
# *.wmf
# *.emf
# *.pdf
# *.png
# *.tif

View File

@@ -12,19 +12,3 @@
# sftp configuration file # sftp configuration file
sftp-config.json sftp-config.json
# Package control specific files
Package Control.last-run
Package Control.ca-list
Package Control.ca-bundle
Package Control.system-ca-bundle
Package Control.cache/
Package Control.ca-certs/
Package Control.merged-ca-bundle
Package Control.user-ca-bundle
oscrypto-ca-bundle.crt
bh_unicode_properties.cache
# Sublime-github package stores a github token in this file
# https://packagecontrol.io/packages/sublime-github
GitHub.sublime-settings

View File

@@ -1,15 +1,12 @@
# Ignore tags created by etags, ctags, gtags (GNU global) and cscope # Ignore tags created by etags, ctags, gtags (GNU global) and cscope
TAGS TAGS
.TAGS
!TAGS/ !TAGS/
tags tags
.tags
!tags/ !tags/
gtags.files gtags.files
GTAGS GTAGS
GRTAGS GRTAGS
GPATH GPATH
GSYMS
cscope.files cscope.files
cscope.out cscope.out
cscope.in.out cscope.in.out

View File

@@ -1,12 +1,6 @@
# swap [._]*.s[a-w][a-z]
[._]*.s[a-v][a-z] [._]s[a-w][a-z]
[._]*.sw[a-p] *.un~
[._]s[a-v][a-z]
[._]sw[a-p]
# session
Session.vim Session.vim
# temporary
.netrwhist .netrwhist
*~ *~
# auto-generated tag files
tags

View File

@@ -4,9 +4,6 @@
[Bb]in [Bb]in
[Ii]nclude [Ii]nclude
[Ll]ib [Ll]ib
[Ll]ib64
[Ll]ocal
[Ss]cripts [Ss]cripts
pyvenv.cfg pyvenv.cfg
.venv
pip-selfcheck.json pip-selfcheck.json

View File

@@ -1,5 +1,2 @@
.vscode/* .settings
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json

View File

@@ -1,7 +1,6 @@
# Windows thumbnail cache files # Windows image file caches
Thumbs.db Thumbs.db
ehthumbs.db ehthumbs.db
ehthumbs_vista.db
# Folder config file # Folder config file
Desktop.ini Desktop.ini

View File

@@ -4,7 +4,7 @@
## Build generated ## Build generated
build/ build/
DerivedData/ DerivedData
## Various settings ## Various settings
*.pbxuser *.pbxuser
@@ -15,9 +15,9 @@ DerivedData/
!default.mode2v3 !default.mode2v3
*.perspectivev3 *.perspectivev3
!default.perspectivev3 !default.perspectivev3
xcuserdata/ xcuserdata
## Other ## Other
*.moved-aside
*.xccheckout *.xccheckout
*.xcscmblueprint *.moved-aside
*.xcuserstate

View File

@@ -42,16 +42,6 @@
*_usage.xml *_usage.xml
*_xst.xrpt *_xst.xrpt
# iMPACT generated files
_impactbatch.log
impact.xsl
impact_impact.xwbt
ise_impact.cmd
webtalk_impact.xml
# Core Generator generated files
xaw2verilog.log
# project-wide generated files # project-wide generated files
*.gise *.gise
par_usage_statistics.html par_usage_statistics.html

View File

@@ -1,14 +1,24 @@
# Binaries for programs and plugins # Compiled Object files, Static and Dynamic libs (Shared Objects)
*.exe *.o
*.dll *.a
*.so *.so
*.dylib
# Test binary, build with `go test -c` # Folders
_obj
_test
# Architecture specific extensions/prefixes
*.[568vq]
[568vq].out
*.cgo1.go
*.cgo2.c
_cgo_defun.c
_cgo_gotypes.go
_cgo_export.*
_testmain.go
*.exe
*.test *.test
*.prof
# Output of the go coverage tool, specifically when used with LiteIDE
*.out
# Project-local glide cache, RE: https://github.com/Masterminds/glide/issues/736
.glide/

View File

@@ -1,14 +1,8 @@
.gradle .gradle
/build/ build/
# Ignore Gradle GUI config # Ignore Gradle GUI config
gradle-app.setting gradle-app.setting
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
!gradle-wrapper.jar !gradle-wrapper.jar
# Cache of project
.gradletasknamecache
# # Work around https://youtrack.jetbrains.com/issue/IDEA-116898
# gradle/wrapper/gradle-wrapper.properties

View File

@@ -1,5 +1,4 @@
dist dist
dist-*
cabal-dev cabal-dev
*.o *.o
*.hi *.hi
@@ -14,7 +13,4 @@ cabal.sandbox.config
*.prof *.prof
*.aux *.aux
*.hp *.hp
*.eventlog
.stack-work/ .stack-work/
cabal.project.local
.HTF/

View File

@@ -1,8 +1,5 @@
*.class *.class
# BlueJ files
*.ctxt
# Mobile Tools for Java (J2ME) # Mobile Tools for Java (J2ME)
.mtj.tmp/ .mtj.tmp/

View File

@@ -29,6 +29,8 @@
/administrator/components/com_search/* /administrator/components/com_search/*
/administrator/components/com_templates/* /administrator/components/com_templates/*
/administrator/components/com_users/* /administrator/components/com_users/*
/administrator/components/com_weblinks/*
/administrator/components/index.html
/administrator/help/* /administrator/help/*
/administrator/includes/* /administrator/includes/*
/administrator/language/en-GB/en-GB.com_ajax.ini /administrator/language/en-GB/en-GB.com_ajax.ini
@@ -39,6 +41,7 @@
/administrator/language/en-GB/en-GB.com_joomlaupdate.sys.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.ini
/administrator/language/en-GB/en-GB.com_postinstall.sys.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.ini
/administrator/language/en-GB/en-GB.com_tags.sys.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.ini
@@ -49,7 +52,6 @@
/administrator/language/en-GB/en-GB.plg_content_contact.sys.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.ini
/administrator/language/en-GB/en-GB.plg_content_finder.sys.ini /administrator/language/en-GB/en-GB.plg_content_finder.sys.ini
/administrator/language/en-GB/en-GB.plg_editors-xtd_module*
/administrator/language/en-GB/en-GB.plg_finder_categories.ini /administrator/language/en-GB/en-GB.plg_finder_categories.ini
/administrator/language/en-GB/en-GB.plg_finder_categories.sys.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.ini
@@ -62,10 +64,6 @@
/administrator/language/en-GB/en-GB.plg_finder_tags.sys.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.ini
/administrator/language/en-GB/en-GB.plg_finder_weblinks.sys.ini /administrator/language/en-GB/en-GB.plg_finder_weblinks.sys.ini
/administrator/language/en-GB/en-GB.plg_installer_folderinstaller*
/administrator/language/en-GB/en-GB.plg_installer_packageinstaller*
/administrator/language/en-GB/en-GB.plg_installer_packageinstaller
/administrator/language/en-GB/en-GB.plg_installer_urlinstaller*
/administrator/language/en-GB/en-GB.plg_installer_webinstaller.ini /administrator/language/en-GB/en-GB.plg_installer_webinstaller.ini
/administrator/language/en-GB/en-GB.plg_installer_webinstaller.sys.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.ini
@@ -74,8 +72,6 @@
/administrator/language/en-GB/en-GB.plg_search_tags.sys.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.ini
/administrator/language/en-GB/en-GB.plg_system_languagecode.sys.ini /administrator/language/en-GB/en-GB.plg_system_languagecode.sys.ini
/administrator/language/en-GB/en-GB.plg_system_stats*
/administrator/language/en-GB/en-GB.plg_system_updatenotification*
/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.ini /administrator/language/en-GB/en-GB.plg_twofactorauth_totp.ini
/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.sys.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.ini
@@ -247,11 +243,14 @@
/administrator/language/en-GB/en-GB.plg_user_joomla.sys.ini /administrator/language/en-GB/en-GB.plg_user_joomla.sys.ini
/administrator/language/en-GB/en-GB.plg_user_profile.ini /administrator/language/en-GB/en-GB.plg_user_profile.ini
/administrator/language/en-GB/en-GB.plg_user_profile.sys.ini /administrator/language/en-GB/en-GB.plg_user_profile.sys.ini
/administrator/language/en-GB/en-GB.tpl_bluestork.ini
/administrator/language/en-GB/en-GB.tpl_bluestork.sys.ini
/administrator/language/en-GB/en-GB.tpl_hathor.ini /administrator/language/en-GB/en-GB.tpl_hathor.ini
/administrator/language/en-GB/en-GB.tpl_hathor.sys.ini /administrator/language/en-GB/en-GB.tpl_hathor.sys.ini
/administrator/language/en-GB/en-GB.xml /administrator/language/en-GB/en-GB.xml
/administrator/language/en-GB/index.html
/administrator/language/overrides/* /administrator/language/overrides/*
/administrator/logs/index.html /administrator/language/index.html
/administrator/manifests/* /administrator/manifests/*
/administrator/modules/mod_custom/* /administrator/modules/mod_custom/*
/administrator/modules/mod_feed/* /administrator/modules/mod_feed/*
@@ -270,9 +269,12 @@
/administrator/modules/mod_unread/* /administrator/modules/mod_unread/*
/administrator/modules/mod_version/* /administrator/modules/mod_version/*
/administrator/modules/mod_stats_admin/* /administrator/modules/mod_stats_admin/*
/administrator/modules/index.html
/administrator/templates/bluestork/*
/administrator/templates/isis/* /administrator/templates/isis/*
/administrator/templates/hathor/* /administrator/templates/hathor/*
/administrator/templates/system/* /administrator/templates/system/*
/administrator/templates/index.html
/administrator/index.php /administrator/index.php
/cache/* /cache/*
/bin/* /bin/*
@@ -287,14 +289,13 @@
/components/com_finder/* /components/com_finder/*
/components/com_mailto/* /components/com_mailto/*
/components/com_media/* /components/com_media/*
/components/com_modules/*
/components/com_newsfeeds/* /components/com_newsfeeds/*
/components/com_search/* /components/com_search/*
/components/com_users/* /components/com_users/*
/components/com_weblinks/*
/components/com_wrapper/* /components/com_wrapper/*
/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
@@ -308,7 +309,6 @@
/language/en-GB/en-GB.com_tags.ini /language/en-GB/en-GB.com_tags.ini
/language/en-GB/en-GB.finder_cli.ini /language/en-GB/en-GB.finder_cli.ini
/language/en-GB/en-GB.lib_fof.sys.ini /language/en-GB/en-GB.lib_fof.sys.ini
/language/en-GB/en-GB.lib_fof.ini
/language/en-GB/en-GB.com_content.ini /language/en-GB/en-GB.com_content.ini
/language/en-GB/en-GB.lib_idna_convert.sys.ini /language/en-GB/en-GB.lib_idna_convert.sys.ini
/language/en-GB/en-GB.com_mailto.ini /language/en-GB/en-GB.com_mailto.ini
@@ -391,47 +391,32 @@
/language/en-GB/en-GB.tpl_beez5.ini /language/en-GB/en-GB.tpl_beez5.ini
/language/en-GB/en-GB.tpl_beez5.sys.ini /language/en-GB/en-GB.tpl_beez5.sys.ini
/language/en-GB/en-GB.xml /language/en-GB/en-GB.xml
/language/en-GB/index.html
/language/en-GB/install.xml /language/en-GB/install.xml
/language/overrides/* /language/overrides/*
/language/index.html /language/index.html
/layouts/joomla/*
/layouts/libraries/*
/layouts/plugins/*
/layouts/index.html
/libraries/cms.php /libraries/cms.php
/libraries/cms/* /libraries/cms/*
/libraries/fof/*
/libraries/idna_convert/*
/libraries/joomla/* /libraries/joomla/*
/libraries/legacy/*
/libraries/php-encryption/*
/libraries/phpass/*
/libraries/phpmailer/* /libraries/phpmailer/*
/libraries/phputf8/* /libraries/phputf8/*
/libraries/simplepie/* /libraries/simplepie/*
/libraries/vendor/*
/libraries/classmap.php
/libraries/import.legacy.php
/libraries/index.html /libraries/index.html
/libraries/import.php /libraries/import.php
/libraries/loader.php /libraries/loader.php
/libraries/platform.php
/logs/*
/media/cms/* /media/cms/*
/media/com_contenthistory/*
/media/com_finder/* /media/com_finder/*
/media/com_joomlaupdate/*
/media/com_wrapper/*
/media/contacts/* /media/contacts/*
/media/editors/* /media/editors/*
/media/jui/*
/media/mailto/* /media/mailto/*
/media/media/* /media/media/*
/media/mod_languages/* /media/mod_languages/*
/media/overrider/* /media/overrider/*
/media/plg_captcha_recaptcha/*
/media/plg_quickicon_extensionupdate/* /media/plg_quickicon_extensionupdate/*
/media/plg_quickicon_joomlaupdate/* /media/plg_quickicon_joomlaupdate/*
/media/plg_system_highlight/* /media/plg_system_highlight/*
/media/plg_system_stats/*
/media/system/* /media/system/*
/media/index.html /media/index.html
/modules/mod_articles_archive/* /modules/mod_articles_archive/*
@@ -454,9 +439,8 @@
/modules/mod_search/* /modules/mod_search/*
/modules/mod_stats/* /modules/mod_stats/*
/modules/mod_syndicate/* /modules/mod_syndicate/*
/modules/mod_tags_popular/*
/modules/mod_tags_similar/*
/modules/mod_users_latest/* /modules/mod_users_latest/*
/modules/mod_weblinks/*
/modules/mod_whosonline/* /modules/mod_whosonline/*
/modules/mod_wrapper/* /modules/mod_wrapper/*
/modules/index.html /modules/index.html
@@ -464,8 +448,9 @@
/plugins/authentication/gmail/* /plugins/authentication/gmail/*
/plugins/authentication/joomla/* /plugins/authentication/joomla/*
/plugins/authentication/ldap/* /plugins/authentication/ldap/*
/plugins/authentication/cookie/* /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/*
@@ -476,21 +461,26 @@
/plugins/content/pagenavigation/* /plugins/content/pagenavigation/*
/plugins/content/vote/* /plugins/content/vote/*
/plugins/content/contact/* /plugins/content/contact/*
/plugins/content/index.html
/plugins/editors/codemirror/* /plugins/editors/codemirror/*
/plugins/editors/none/* /plugins/editors/none/*
/plugins/editors/tinymce/* /plugins/editors/tinymce/*
/plugins/editors-xtd/module/* /plugins/editors/index.html
/plugins/editors-xtd/article/* /plugins/editors-xtd/article/*
/plugins/editors-xtd/image/* /plugins/editors-xtd/image/*
/plugins/editors-xtd/pagebreak/* /plugins/editors-xtd/pagebreak/*
/plugins/editors-xtd/readmore/* /plugins/editors-xtd/readmore/*
/plugins/editors-xtd/index.html
/plugins/extension/example/* /plugins/extension/example/*
/plugins/extension/joomla/* /plugins/extension/joomla/*
/plugins/extension/index.html
/plugins/finder/index.html
/plugins/finder/categories/* /plugins/finder/categories/*
/plugins/finder/contacts/* /plugins/finder/contacts/*
/plugins/finder/content/* /plugins/finder/content/*
/plugins/finder/newsfeeds/* /plugins/finder/newsfeeds/*
/plugins/finder/tags/* /plugins/finder/tags/*
/plugins/finder/weblinks/*
/plugins/installer/* /plugins/installer/*
/plugins/quickicon/extensionupdate/* /plugins/quickicon/extensionupdate/*
/plugins/quickicon/joomlaupdate/* /plugins/quickicon/joomlaupdate/*
@@ -513,8 +503,6 @@
/plugins/system/redirect/* /plugins/system/redirect/*
/plugins/system/remember/* /plugins/system/remember/*
/plugins/system/sef/* /plugins/system/sef/*
/plugins/system/stats/*
/plugins/system/updatenotification/*
/plugins/system/index.html /plugins/system/index.html
/plugins/twofactorauth/* /plugins/twofactorauth/*
/plugins/user/contactcreator/* /plugins/user/contactcreator/*
@@ -523,7 +511,10 @@
/plugins/user/profile/* /plugins/user/profile/*
/plugins/user/index.html /plugins/user/index.html
/plugins/index.html /plugins/index.html
/templates/atomic/*
/templates/beez3/* /templates/beez3/*
/templates/beez_20/*
/templates/beez5/*
/templates/protostar/* /templates/protostar/*
/templates/system/* /templates/system/*
/templates/index.html /templates/index.html
@@ -532,4 +523,3 @@
/index.php /index.php
/joomla.xml /joomla.xml
/*.txt /*.txt
/robots.txt.dist

View File

@@ -1,4 +0,0 @@
*.jl.cov
*.jl.*.cov
*.jl.mem
deps/deps.jl

11
KiCAD.gitignore Normal file
View 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

View File

@@ -1,21 +0,0 @@
# For PCBs designed using KiCad: http://www.kicad-pcb.org/
# Temporary files
*.000
*.bak
*.bck
*.kicad_pcb-bak
*~
_autosave-*
*.tmp
# Netlist files (exported from Eeschema)
*.net
# Autorouter files (exported from Pcbnew)
*.dsn
*.ses
# Exported BOM files
*.xml
*.csv

129
LICENSE
View File

@@ -1,116 +1,19 @@
CC0 1.0 Universal Copyright (c) 2014 GitHub, Inc.
Statement of Purpose Permission is hereby granted, free of charge, to any person obtaining a
copy of this software and associated documentation files (the "Software"),
to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following conditions:
The laws of most jurisdictions throughout the world automatically confer The above copyright notice and this permission notice shall be included in
exclusive Copyright and Related Rights (defined below) upon the creator and all copies or substantial portions of the Software.
subsequent owner(s) (each and all, an "owner") of an original work of
authorship and/or a database (each, a "Work").
Certain owners wish to permanently relinquish those rights to a Work for the THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
purpose of contributing to a commons of creative, cultural and scientific IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
works ("Commons") that the public can reliably and without fear of later FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
claims of infringement build upon, modify, incorporate in other works, reuse AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
and redistribute as freely as possible in any form whatsoever and for any LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
purposes, including without limitation commercial purposes. These owners may FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
contribute to the Commons to promote the ideal of a free culture and the DEALINGS IN THE SOFTWARE.
further production of creative, cultural and scientific works, or to gain
reputation or greater distribution for their Work in part through the use and
efforts of others.
For these and/or other purposes and motivations, and without any expectation
of additional consideration or compensation, the person associating CC0 with a
Work (the "Affirmer"), to the extent that he or she is an owner of Copyright
and Related Rights in the Work, voluntarily elects to apply CC0 to the Work
and publicly distribute the Work under its terms, with knowledge of his or her
Copyright and Related Rights in the Work and the meaning and intended legal
effect of CC0 on those rights.
1. Copyright and Related Rights. A Work made available under CC0 may be
protected by copyright and related or neighboring rights ("Copyright and
Related Rights"). Copyright and Related Rights include, but are not limited
to, the following:
i. the right to reproduce, adapt, distribute, perform, display, communicate,
and translate a Work;
ii. moral rights retained by the original author(s) and/or performer(s);
iii. publicity and privacy rights pertaining to a person's image or likeness
depicted in a Work;
iv. rights protecting against unfair competition in regards to a Work,
subject to the limitations in paragraph 4(a), below;
v. rights protecting the extraction, dissemination, use and reuse of data in
a Work;
vi. database rights (such as those arising under Directive 96/9/EC of the
European Parliament and of the Council of 11 March 1996 on the legal
protection of databases, and under any national implementation thereof,
including any amended or successor version of such directive); and
vii. other similar, equivalent or corresponding rights throughout the world
based on applicable law or treaty, and any national implementations thereof.
2. Waiver. To the greatest extent permitted by, but not in contravention of,
applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and
unconditionally waives, abandons, and surrenders all of Affirmer's Copyright
and Related Rights and associated claims and causes of action, whether now
known or unknown (including existing as well as future claims and causes of
action), in the Work (i) in all territories worldwide, (ii) for the maximum
duration provided by applicable law or treaty (including future time
extensions), (iii) in any current or future medium and for any number of
copies, and (iv) for any purpose whatsoever, including without limitation
commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes
the Waiver for the benefit of each member of the public at large and to the
detriment of Affirmer's heirs and successors, fully intending that such Waiver
shall not be subject to revocation, rescission, cancellation, termination, or
any other legal or equitable action to disrupt the quiet enjoyment of the Work
by the public as contemplated by Affirmer's express Statement of Purpose.
3. Public License Fallback. Should any part of the Waiver for any reason be
judged legally invalid or ineffective under applicable law, then the Waiver
shall be preserved to the maximum extent permitted taking into account
Affirmer's express Statement of Purpose. In addition, to the extent the Waiver
is so judged Affirmer hereby grants to each affected person a royalty-free,
non transferable, non sublicensable, non exclusive, irrevocable and
unconditional license to exercise Affirmer's Copyright and Related Rights in
the Work (i) in all territories worldwide, (ii) for the maximum duration
provided by applicable law or treaty (including future time extensions), (iii)
in any current or future medium and for any number of copies, and (iv) for any
purpose whatsoever, including without limitation commercial, advertising or
promotional purposes (the "License"). The License shall be deemed effective as
of the date CC0 was applied by Affirmer to the Work. Should any part of the
License for any reason be judged legally invalid or ineffective under
applicable law, such partial invalidity or ineffectiveness shall not
invalidate the remainder of the License, and in such case Affirmer hereby
affirms that he or she will not (i) exercise any of his or her remaining
Copyright and Related Rights in the Work or (ii) assert any associated claims
and causes of action with respect to the Work, in either case contrary to
Affirmer's express Statement of Purpose.
4. Limitations and Disclaimers.
a. No trademark or patent rights held by Affirmer are waived, abandoned,
surrendered, licensed or otherwise affected by this document.
b. Affirmer offers the Work as-is and makes no representations or warranties
of any kind concerning the Work, express, implied, statutory or otherwise,
including without limitation warranties of title, merchantability, fitness
for a particular purpose, non infringement, or the absence of latent or
other defects, accuracy, or the present or absence of errors, whether or not
discoverable, all to the greatest extent permissible under applicable law.
c. Affirmer disclaims responsibility for clearing rights of other persons
that may apply to the Work or any use thereof, including without limitation
any person's Copyright and Related Rights in the Work. Further, Affirmer
disclaims responsibility for obtaining any necessary consents, permissions
or other rights required for any use of the Work.
d. Affirmer understands and acknowledges that Creative Commons is not a
party to this document and has no duty or obligation with respect to this
CC0 or use of the Work.
For more information, please see
<http://creativecommons.org/publicdomain/zero/1.0/>

View File

@@ -1,20 +1,4 @@
vendor/ /bootstrap/compiled.php
node_modules/
npm-debug.log
# Laravel 4 specific
bootstrap/compiled.php
app/storage/
# Laravel 5 & Lumen specific
public/storage
public/hot
storage/*.key
.env.*.php .env.*.php
.env.php .env.php
.env .env
Homestead.yaml
Homestead.json
# Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer
.rocketeer/

View File

@@ -1,7 +1,6 @@
pom.xml pom.xml
pom.xml.asc pom.xml.asc
*.jar *jar
*.class
/lib/ /lib/
/classes/ /classes/
/target/ /target/

View File

@@ -1,8 +1,8 @@
.htaccess.sample .htaccess.sample
.modgit/ .modgit/
.modman/ .modman/
app/code/community/Phoenix/Moneybookers/ app/code/community/Phoenix/
app/code/community/Cm/RedisSession/ app/code/community/Cm/
app/code/core/ app/code/core/
app/design/adminhtml/default/default/ app/design/adminhtml/default/default/
app/design/frontend/base/ app/design/frontend/base/
@@ -14,7 +14,26 @@ app/design/frontend/default/modern/
app/design/frontend/enterprise/default app/design/frontend/enterprise/default
app/design/install/ app/design/install/
app/etc/modules/Enterprise_* app/etc/modules/Enterprise_*
app/etc/modules/Mage_*.xml app/etc/modules/Mage_All.xml
app/etc/modules/Mage_Api.xml
app/etc/modules/Mage_Api2.xml
app/etc/modules/Mage_Authorizenet.xml
app/etc/modules/Mage_Bundle.xml
app/etc/modules/Mage_Captcha.xml
app/etc/modules/Mage_Centinel.xml
app/etc/modules/Mage_Compiler.xml
app/etc/modules/Mage_ConfigurableSwatches.xml
app/etc/modules/Mage_Connect.xml
app/etc/modules/Mage_CurrencySymbol.xml
app/etc/modules/Mage_Downloadable.xml
app/etc/modules/Mage_ImportExport.xml
app/etc/modules/Mage_LoadTest.xml
app/etc/modules/Mage_Oauth.xml
app/etc/modules/Mage_PageCache.xml
app/etc/modules/Mage_Persistent.xml
app/etc/modules/Mage_Weee.xml
app/etc/modules/Mage_Widget.xml
app/etc/modules/Mage_XmlConnect.xml
app/etc/modules/Phoenix_Moneybookers.xml app/etc/modules/Phoenix_Moneybookers.xml
app/etc/modules/Cm_RedisSession.xml app/etc/modules/Cm_RedisSession.xml
app/etc/applied.patches.list app/etc/applied.patches.list
@@ -24,13 +43,10 @@ app/etc/local.xml.additional
app/etc/local.xml.template app/etc/local.xml.template
app/etc/local.xml app/etc/local.xml
app/.htaccess app/.htaccess
app/bootstrap.php app/locale/
app/locale/en_US/
app/Mage.php app/Mage.php
/cron.php /cron.php
cron.sh cron.sh
dev/.htaccess
dev/tests/functional/
downloader/ downloader/
errors/ errors/
favicon.ico favicon.ico
@@ -74,7 +90,14 @@ LICENSE.html
LICENSE.txt LICENSE.txt
LICENSE_EE* LICENSE_EE*
/mage /mage
media/ media/customer/
media/dhl/
media/downloadable/
media/.htaccess
media/import/
media/xmlconnect/
media/catalog/product/cache/
media/catalog/product/placeholder/default/
/api.php /api.php
nbproject/ nbproject/
pear pear
@@ -82,7 +105,6 @@ pear/
php.ini.sample php.ini.sample
pkginfo/ pkginfo/
RELEASE_NOTES.txt RELEASE_NOTES.txt
shell/.htaccess
shell/abstract.php shell/abstract.php
shell/compiler.php shell/compiler.php
shell/indexer.php shell/indexer.php

View File

@@ -1,4 +1,5 @@
target/ target/
**/target/
pom.xml.tag pom.xml.tag
pom.xml.releaseBackup pom.xml.releaseBackup
pom.xml.versionsBackup pom.xml.versionsBackup
@@ -7,6 +8,3 @@ release.properties
dependency-reduced-pom.xml dependency-reduced-pom.xml
buildNumber.properties buildNumber.properties
.mvn/timing.properties .mvn/timing.properties
# Exclude maven wrapper
!/.mvn/wrapper/maven-wrapper.jar

View File

@@ -1,6 +1,6 @@
# For projects using Nanoc (http://nanoc.ws/) # For projects using nanoc (http://nanoc.ws/)
# Default location for output (needs to match output_dir's value found in nanoc.yaml) # Default location for output, needs to match output_dir's value found in config.yaml
output/ output/
# Temporary file directory # Temporary file directory

View File

@@ -1,13 +1,11 @@
# Logs # Logs
logs logs
*.log *.log
npm-debug.log*
# Runtime data # Runtime data
pids pids
*.pid *.pid
*.seed *.seed
*.pid.lock
# Directory for instrumented libs generated by jscoverage/JSCover # Directory for instrumented libs generated by jscoverage/JSCover
lib-cov lib-cov
@@ -15,40 +13,15 @@ lib-cov
# Coverage directory used by tools like istanbul # Coverage directory used by tools like istanbul
coverage coverage
# nyc test coverage
.nyc_output
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt .grunt
# Bower dependency directory (https://bower.io/)
bower_components
# node-waf configuration # node-waf configuration
.lock-wscript .lock-wscript
# Compiled binary addons (http://nodejs.org/api/addons.html) # Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release build/Release
# Dependency directories # Dependency directory
node_modules/ # https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git
jspm_packages/ node_modules
# Optional npm cache directory
.npm
# Optional eslint cache
.eslintcache
# Optional REPL history
.node_repl_history
# Output of 'npm pack'
*.tgz
# Yarn Integrity file
.yarn-integrity
# dotenv environment variables file
.env

View File

@@ -4,7 +4,7 @@
## Build generated ## Build generated
build/ build/
DerivedData/ DerivedData
## Various settings ## Various settings
*.pbxuser *.pbxuser
@@ -15,26 +15,25 @@ DerivedData/
!default.mode2v3 !default.mode2v3
*.perspectivev3 *.perspectivev3
!default.perspectivev3 !default.perspectivev3
xcuserdata/ xcuserdata
## Other ## Other
*.moved-aside
*.xccheckout *.xccheckout
*.moved-aside
*.xcuserstate
*.xcscmblueprint *.xcscmblueprint
## Obj-C/Swift specific ## Obj-C/Swift specific
*.hmap *.hmap
*.ipa *.ipa
*.dSYM.zip
*.dSYM
# 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:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
# #
# Pods/ #Pods/
# Carthage # Carthage
# #
@@ -42,22 +41,3 @@ xcuserdata/
# Carthage/Checkouts # Carthage/Checkouts
Carthage/Build Carthage/Build
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output
# Code Injection
#
# After new code Injection tools there's a generated folder /iOSInjectionProject
# https://github.com/johnno1962/injectionforxcode
iOSInjectionProject/

View File

@@ -9,12 +9,3 @@ image/data/
image/cache/ image/cache/
system/cache/ system/cache/
system/logs/ system/logs/
system/storage/
# vQmod log files
vqmod/logs/*
# vQmod cache files
vqmod/vqcache/*
vqmod/checked.cache
vqmod/mods.cache

View File

@@ -1,35 +1,20 @@
!Build/
.last_cover_stats
/META.yml
/META.json
/MYMETA.*
*.o
*.pm.tdy
*.bs
# Devel::Cover
cover_db/
# Devel::NYTProf
nytprof.out
# Dizt::Zilla
/.build/
# Module::Build
_build/
Build
Build.bat
# Module::Install
inc/
# ExtUitls::MakeMaker
/blib/ /blib/
/_eumm/ /.build/
/*.gz _build/
cover_db/
inc/
Build
!Build/
Build.bat
.last_cover_stats
/Makefile /Makefile
/Makefile.old /Makefile.old
/MANIFEST.bak /MANIFEST.bak
/META.yml
/META.json
/MYMETA.*
nytprof.out
/pm_to_blib /pm_to_blib
/*.zip *.o
*.bs
/_eumm/

View File

@@ -5,11 +5,13 @@ bin/
/lib/ /lib/
/logs/ /logs/
/modules /modules
/project/project
/project/target /project/target
/target /target
tmp/ tmp/
test-result test-result
server.pid server.pid
*.iml
*.eml *.eml
/dist/ /dist/
.cache .cache

View File

@@ -7,16 +7,9 @@ config/settings.*.php
# The following files are generated by PrestaShop. # The following files are generated by PrestaShop.
admin-dev/autoupgrade/ admin-dev/autoupgrade/
/cache/ cache/
!/cache/index.php
!/cache/cachefs/index.php
!/cache/purifier/index.php
!/cache/push/index.php
!/cache/sandbox/index.php
!/cache/smarty/index.php
!/cache/tcpdf/index.php
config/xml/*.xml config/xml/*.xml
/log/* log/
*sitemap.xml *sitemap.xml
themes/*/cache/ themes/*/cache/
modules/*/config*.xml modules/*/config*.xml
@@ -28,5 +21,5 @@ admin-dev/backups/
admin-dev/export/ admin-dev/export/
admin-dev/import/ admin-dev/import/
download/ download/
/img/* img/
upload/ upload/

View File

@@ -20,7 +20,6 @@ lib64/
parts/ parts/
sdist/ sdist/
var/ var/
wheels/
*.egg-info/ *.egg-info/
.installed.cfg .installed.cfg
*.egg *.egg
@@ -44,7 +43,6 @@ htmlcov/
nosetests.xml nosetests.xml
coverage.xml coverage.xml
*,cover *,cover
.hypothesis/
# Translations # Translations
*.mo *.mo
@@ -52,40 +50,9 @@ coverage.xml
# Django stuff: # Django stuff:
*.log *.log
local_settings.py
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation # Sphinx documentation
docs/_build/ docs/_build/
# PyBuilder # PyBuilder
target/ target/
# Jupyter Notebook
.ipynb_checkpoints
# pyenv
.python-version
# celery beat schedule file
celerybeat-schedule
# dotenv
.env
# virtualenv
.venv
venv/
ENV/
# Spyder project settings
.spyderproject
# Rope project settings
.ropeproject

View File

@@ -23,16 +23,12 @@ moc_*.cpp
qrc_*.cpp qrc_*.cpp
ui_*.h ui_*.h
Makefile* Makefile*
*build-* *-build-*
# QtCreator # QtCreator
*.autosave *.autosave
# QtCtreator Qml #QtCtreator Qml
*.qmlproject.user *.qmlproject.user
*.qmlproject.user.* *.qmlproject.user.*
# QtCtreator CMake
CMakeLists.txt.user*

View File

@@ -2,32 +2,12 @@
.Rhistory .Rhistory
.Rapp.history .Rapp.history
# Session Data files
.RData
# Example code in package build process # Example code in package build process
*-Ex.R *-Ex.R
# Output files from R CMD build
/*.tar.gz
# Output files from R CMD check
/*.Rcheck/
# RStudio files # RStudio files
.Rproj.user/ .Rproj.user/
# produced vignettes # produced vignettes
vignettes/*.html vignettes/*.html
vignettes/*.pdf vignettes/*.pdf
# OAuth2 token, see https://github.com/hadley/httr/releases/tag/v0.3
.httr-oauth
# knitr and R markdown default cache directories
/*_cache/
/cache/
# Temporary files created by R markdown
*.utf8.md
*.knit.md

View File

@@ -31,17 +31,17 @@ high quality, we request that contributions adhere to the following guidelines.
- **Provide a link to the application or projects homepage**. Unless its - **Provide a link to the application or projects homepage**. Unless its
extremely popular, theres a chance the maintainers dont know about or use extremely popular, theres a chance the maintainers dont know about or use
the language, framework, editor, app, or project your change applies to. the language, framework, editor, app, or project your change applies to.
- **Provide links to documentation** supporting the change youre making. - **Provide links to documentation** supporting the change youre making.
Current, canonical documentation mentioning the files being ignored is best. Current, canonical documentation mentioning the files being ignored is best.
If documentation isnt available to support your change, do the best you can If documentation isnt available to support your change, do the best you can
to explain what the files being ignored are for. to explain what the files being ignored are for.
- **Explain why youre making a change**. Even if it seems self-evident, please - **Explain why youre making a change**. Even if it seems self-evident, please
take a sentence or two to tell us why your change or addition should happen. take a sentence or two to tell us why your change or addition should happen.
Its especially helpful to articulate why this change applies to *everyone* Its especially helpful to articulate why this change applies to *everyone*
who works with the applicable technology, rather than just you or your team. who works with the applicable technology, rather than just you or your team.
- **Please consider the scope of your change**. If your change specific to a - **Please consider the scope of your change**. If your change specific to a
certain language or framework, then make sure the change is made to the certain language or framework, then make sure the change is made to the
template for that language or framework, rather than to the template for an template for that language or framework, rather than to the template for an
@@ -53,6 +53,11 @@ high quality, we request that contributions adhere to the following guidelines.
In general, the more you can do to help us understand the change youre making, In general, the more you can do to help us understand the change youre making,
the more likely well be to accept your contribution quickly. the more likely well be to accept your contribution quickly.
If a template is mostly a list of files installed by a particular version of
some software (e.g. a PHP framework) then it's brittle and probably no more
helpful than a simple `ls`. If it's not possible to curate a small set of
useful rules, then the template might not be a good fit for this collection.
Please also understand that we cant list every tool that ever existed. Please also understand that we cant list every tool that ever existed.
Our aim is to curate a collection of the *most common and helpful* templates, Our aim is to curate a collection of the *most common and helpful* templates,
not to make sure we cover every project possible. If we choose not to not to make sure we cover every project possible. If we choose not to
@@ -70,10 +75,10 @@ Heres how we suggest you go about proposing a change to this project:
Using the web-based interface to make changes is fine too, and will help you Using the web-based interface to make changes is fine too, and will help you
by automatically forking the project and prompting to send a pull request too. by automatically forking the project and prompting to send a pull request too.
[fork]: https://help.github.com/articles/fork-a-repo/ [fork]: http://help.github.com/forking/
[branch]: https://help.github.com/articles/creating-and-deleting-branches-within-your-repository [branch]: https://help.github.com/articles/creating-and-deleting-branches-within-your-repository
[pr]: https://help.github.com/articles/using-pull-requests/ [pr]: http://help.github.com/pull-requests/
## License ## License
[CC0-1.0](./LICENSE). [MIT](./LICENSE).

View File

@@ -12,21 +12,15 @@ capybara-*.html
rerun.txt rerun.txt
pickle-email-*.html pickle-email-*.html
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo # TODO Comment out these rules if you are OK with secrets being uploaded to the repo
config/initializers/secret_token.rb config/initializers/secret_token.rb
config/secrets.yml
# Only include if you have production secrets in this file, which is no longer a Rails default ## Environment normalisation:
# config/secrets.yml
# dotenv
# TODO Comment out this rule if environment variables can be committed
.env
## Environment normalization:
/.bundle /.bundle
/vendor/bundle /vendor/bundle
# these should all be checked in to normalize the environment: # these should all be checked in to normalise the environment:
# Gemfile.lock, .ruby-version, .ruby-gemset # Gemfile.lock, .ruby-version, .ruby-gemset
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this: # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
@@ -39,6 +33,3 @@ bower.json
# Ignore pow environment settings # Ignore pow environment settings
.powenv .powenv
# Ignore Byebug command history file.
.byebug_history

View File

@@ -5,29 +5,14 @@
/InstalledFiles /InstalledFiles
/pkg/ /pkg/
/spec/reports/ /spec/reports/
/spec/examples.txt
/test/tmp/ /test/tmp/
/test/version_tmp/ /test/version_tmp/
/tmp/ /tmp/
# Used by dotenv library to load environment variables.
# .env
## Specific to RubyMotion: ## Specific to RubyMotion:
.dat* .dat*
.repl_history .repl_history
build/ build/
*.bridgesupport
build-iPhoneOS/
build-iPhoneSimulator/
## Specific to RubyMotion (use of CocoaPods):
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# vendor/Pods/
## Documentation cache and generated files: ## Documentation cache and generated files:
/.yardoc/ /.yardoc/
@@ -35,7 +20,7 @@ build-iPhoneSimulator/
/doc/ /doc/
/rdoc/ /rdoc/
## Environment normalization: ## Environment normalisation:
/.bundle/ /.bundle/
/vendor/bundle /vendor/bundle
/lib/bundler/man/ /lib/bundler/man/

View File

@@ -1,10 +1,11 @@
# Compiled files
*.o
*.so
*.rlib
*.dll
# Executables
*.exe
# Generated by Cargo # Generated by Cargo
# will have compiled files and executables
/target/ /target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk

View File

@@ -1,2 +1,2 @@
.sass-cache/ .sass-cache
*.css.map *.css.map

View File

@@ -15,7 +15,3 @@ project/plugins/project/
# Scala-IDE specific # Scala-IDE specific
.scala_dependencies .scala_dependencies
.worksheet .worksheet
# ENSIME specific
.ensime_cache/
.ensime

View File

@@ -1,7 +0,0 @@
*.ss~
*.ss#*
.#*.ss
*.scm~
*.scm#*
.#*.scm

View File

@@ -1,18 +0,0 @@
# changes file
*.changes
# system image
*.image
# Pharo Smalltalk Debug log file
PharoDebug.log
# Squeak Smalltalk Debug log file
SqueakDebug.log
# Monticello package cache
/package-cache
# Metacello-github cache
/github-cache
github-*.zip

View File

@@ -7,7 +7,6 @@
# For development the cache directory can be safely ignored and # For development the cache directory can be safely ignored and
# therefore it is ignored. # therefore it is ignored.
/cache/ /cache/
!/cache/index.html
# Ignore some files and directories from the custom directory. # Ignore some files and directories from the custom directory.
/custom/history/ /custom/history/
/custom/modulebuilder/ /custom/modulebuilder/
@@ -23,5 +22,4 @@
*.log *.log
# Ignore the new upload directories. # Ignore the new upload directories.
/upload/ /upload/
!/upload/index.html
/upload_backup/ /upload_backup/

View File

@@ -4,7 +4,7 @@
## Build generated ## Build generated
build/ build/
DerivedData/ DerivedData
## Various settings ## Various settings
*.pbxuser *.pbxuser
@@ -15,35 +15,23 @@ DerivedData/
!default.mode2v3 !default.mode2v3
*.perspectivev3 *.perspectivev3
!default.perspectivev3 !default.perspectivev3
xcuserdata/ xcuserdata
## Other ## Other
*.moved-aside
*.xccheckout *.xccheckout
*.moved-aside
*.xcuserstate
*.xcscmblueprint *.xcscmblueprint
## Obj-C/Swift specific ## Obj-C/Swift specific
*.hmap *.hmap
*.ipa *.ipa
*.dSYM.zip
*.dSYM
## Playgrounds
timeline.xctimeline
playground.xcworkspace
# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
.build/
# 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:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control
# #
# Pods/ # Pods/
@@ -53,15 +41,3 @@ playground.xcworkspace
# Carthage/Checkouts # Carthage/Checkouts
Carthage/Build Carthage/Build
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://github.com/fastlane/fastlane/blob/master/fastlane/docs/Gitignore.md
fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots
fastlane/test_output

View File

@@ -4,16 +4,11 @@
!app/cache/.gitkeep !app/cache/.gitkeep
!app/logs/.gitkeep !app/logs/.gitkeep
# Email spool folder # Cache and logs (Symfony3)
/app/spool/*
# Cache, session files and logs (Symfony3)
/var/cache/* /var/cache/*
/var/logs/* /var/logs/*
/var/sessions/*
!var/cache/.gitkeep !var/cache/.gitkeep
!var/logs/.gitkeep !var/logs/.gitkeep
!var/sessions/.gitkeep
# Parameters # Parameters
/app/config/parameters.yml /app/config/parameters.yml
@@ -40,6 +35,3 @@
# Composer PHAR # Composer PHAR
/composer.phar /composer.phar
# Backup entities generated with doctrine:generate:entities command
**/Entity/*~

View File

@@ -6,10 +6,6 @@
*.fls *.fls
*.out *.out
*.toc *.toc
*.fmt
*.fot
*.cb
*.cb2
## Intermediate documents: ## Intermediate documents:
*.dvi *.dvi
@@ -19,9 +15,6 @@
# *.eps # *.eps
# *.pdf # *.pdf
## Generated if empty string is given at "Please type another file name for output:"
.pdf
## Bibliography auxiliary files (bibtex/biblatex/biber): ## Bibliography auxiliary files (bibtex/biblatex/biber):
*.bbl *.bbl
*.bcf *.bcf
@@ -34,12 +27,13 @@
## Build tool auxiliary files: ## Build tool auxiliary files:
*.fdb_latexmk *.fdb_latexmk
*.synctex *.synctex
*.synctex(busy)
*.synctex.gz *.synctex.gz
*.synctex.gz(busy) *.synctex.gz(busy)
*.pdfsync *.pdfsync
## Auxiliary and intermediate files from other packages: ## Auxiliary and intermediate files from other packages:
# algorithms # algorithms
*.alg *.alg
*.loa *.loa
@@ -52,37 +46,11 @@ acs-*.bib
# beamer # beamer
*.nav *.nav
*.pre
*.snm *.snm
*.vrb *.vrb
# changes #(e)ledmac/(e)ledpar
*.soc
# cprotect
*.cpt
# elsarticle (documentclass of Elsevier journals)
*.spl
# endnotes
*.ent
# fixme
*.lox
# feynmf/feynmp
*.mf
*.mp
*.t[1-9]
*.t[1-9][0-9]
*.tfm
*.[1-9]
*.[1-9][0-9]
#(r)(e)ledmac/(r)(e)ledpar
*.end *.end
*.?end
*.[1-9] *.[1-9]
*.[1-9][0-9] *.[1-9][0-9]
*.[1-9][0-9][0-9] *.[1-9][0-9][0-9]
@@ -102,21 +70,15 @@ acs-*.bib
*.glg *.glg
*.glo *.glo
*.gls *.gls
*.glsdefs
# gnuplottex # gnuplottex
*-gnuplottex-* *-gnuplottex-*
# gregoriotex
*.gaux
*.gtex
# hyperref # hyperref
*.brf *.brf
# knitr # knitr
*-concordance.tex *-concordance.tex
# TODO Comment the next line if you want to keep your tikz graphics files
*.tikz *.tikz
*-tikzDictionary *-tikzDictionary
@@ -131,9 +93,9 @@ acs-*.bib
# minitoc # minitoc
*.maf *.maf
*.mlf *.mtc
*.mlt *.mtc[0-9]
*.mtc[0-9]* *.mtc[1-9][0-9]
# minted # minted
_minted* _minted*
@@ -148,33 +110,16 @@ _minted*
# nomencl # nomencl
*.nlo *.nlo
# pax
*.pax
# sagetex # sagetex
*.sagetex.sage *.sagetex.sage
*.sagetex.py *.sagetex.py
*.sagetex.scmd *.sagetex.scmd
# scrwfile
*.wrt
# sympy # sympy
*.sout *.sout
*.sympy *.sympy
sympy-plots-for-*.tex/ sympy-plots-for-*.tex/
# pdfcomment
*.upa
*.upb
# pythontex
*.pytxcode
pythontex-files-*/
# thmtools
*.loe
# TikZ & PGF # TikZ & PGF
*.dpth *.dpth
*.md5 *.md5
@@ -183,38 +128,9 @@ pythontex-files-*/
# todonotes # todonotes
*.tdo *.tdo
# easy-todo
*.lod
# xindy # xindy
*.xdy *.xdy
# xypic precompiled matrices
*.xyc
# endfloat
*.ttt
*.fff
# Latexian
TSWLatexianTemp*
## Editors:
# WinEdt # WinEdt
*.bak *.bak
*.sav *.sav
# Texpad
.texpadtmp
# Kile
*.backup
# KBibTeX
*~[0-9]*
# auto folder when using emacs and auctex
/auto/*
# expex forward references with \gathertags
*-tags.tex

View File

@@ -1,6 +0,0 @@
# Compiled files
*.tfstate
*.tfstate.backup
# Module directory
.terraform/

View File

@@ -1,20 +1,18 @@
## TYPO3 v6.2 ## TYPO3 v4
# Ignore several upload and file directories. # Ignore serveral upload and file directories.
/fileadmin/user_upload/ /fileadmin/user_upload/
/fileadmin/_temp_/ /fileadmin/_temp_/
/fileadmin/_processed_/
/uploads/ /uploads/
# Ignore cache # Ignore cache
/typo3conf/temp_CACHED* /typo3conf/temp_CACHED*
/typo3conf/temp_fieldInfo.php /typo3conf/temp_fieldInfo.php
/typo3conf/deprecation_*.log # Ignore local config which overrides typo3 config.
/typo3conf/AdditionalConfiguration.php # You should include your local stuff with `@include('localconf_local.php');` at the end of localconf.php.
# See http://stackoverflow.com/questions/11905360/how-best-to-manage-typo3-installations-using-git for details.
/typo3conf/localconf_local.php
# Ignore system folders, you should have them symlinked. # Ignore system folders, you should have them symlinked.
# If not comment out the following entries. # If not comment out the following two entries.
/typo3 /typo3
/typo3_src /t3lib
/typo3_src-*
/.htaccess
/index.php
# Ignore temp directory. # Ignore temp directory.
/typo3temp/ /typo3temp/

View File

@@ -1,11 +1,12 @@
# Note: VisualStudio gitignore rules may also be relevant # Note: VisualStudio gitignore rules may also be relevant
# Umbraco
# Ignore unimportant folders generated by Umbraco # Ignore unimportant folders generated by Umbraco
**/App_Data/ClientDependency/
**/App_Data/ExamineIndexes/
**/App_Data/Logs/ **/App_Data/Logs/
**/App_Data/[Pp]review/ **/App_Data/[Pp]review/
**/App_Data/TEMP/ **/App_Data/TEMP/
**/App_Data/NuGetBackup/ Cached/
# Ignore Umbraco content cache file # Ignore Umbraco content cache file
**/App_Data/umbraco.config **/App_Data/umbraco.config
@@ -14,6 +15,3 @@
# Make sure to include details from VisualStudio.gitignore BEFORE this # Make sure to include details from VisualStudio.gitignore BEFORE this
!**/App_Data/[Pp]ackages/ !**/App_Data/[Pp]ackages/
!**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages !**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages
# ImageProcessor DiskCache
**/App_Data/cache/

View File

@@ -2,15 +2,8 @@
/[Tt]emp/ /[Tt]emp/
/[Oo]bj/ /[Oo]bj/
/[Bb]uild/ /[Bb]uild/
/[Bb]uilds/
/Assets/AssetStoreTools*
# Visual Studio 2015 cache directory # Autogenerated VS/MD solution and project files
/.vs/
# Autogenerated VS/MD/Consulo solution and project files
ExportedObj/
.consulo/
*.csproj *.csproj
*.unityproj *.unityproj
*.sln *.sln
@@ -20,16 +13,9 @@ ExportedObj/
*.userprefs *.userprefs
*.pidb *.pidb
*.booproj *.booproj
*.svd
*.pdb
# Unity3D generated meta files # Unity3D generated meta files
*.pidb.meta *.pidb.meta
# Unity3D Generated File On Crash Reports # Unity3D Generated File On Crash Reports
sysinfo.txt sysinfo.txt
# Builds
*.apk
*.unitypackage

View File

@@ -1,70 +0,0 @@
# Visual Studio 2015 user specific files
.vs/
# Visual Studio 2015 database file
*.VC.db
# Compiled Object files
*.slo
*.lo
*.o
*.obj
# Precompiled Headers
*.gch
*.pch
# Compiled Dynamic libraries
*.so
*.dylib
*.dll
# Fortran module files
*.mod
# Compiled Static libraries
*.lai
*.la
*.a
*.lib
# Executables
*.exe
*.out
*.app
*.ipa
# These project files can be generated by the engine
*.xcodeproj
*.xcworkspace
*.sln
*.suo
*.opensdf
*.sdf
*.VC.db
*.VC.opendb
# Precompiled Assets
SourceArt/**/*.png
SourceArt/**/*.tga
# Binary Files
Binaries/*
# Builds
Build/*
# Don't ignore icon files in Build
!Build/**/*.ico
# Built data for maps
*_BuiltData.uasset
# Configuration files generated by the Editor
Saved/*
# Compiled source files for the engine to use
Intermediate/*
# Cache files for the editor to use
DerivedDataCache/*

View File

@@ -1,52 +1,82 @@
## 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
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# 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/
[Rr]eleases/ [Rr]eleases/
x64/ x64/
x86/ x86/
build/
bld/ bld/
[Bb]in/ [Bb]in/
[Oo]bj/ [Oo]bj/
[Ll]og/ #
# default build log file
# remove: if no longer targeting Visual Studio 6
*.plg
# Visual Studio 2015 cache/options directory # MSTest
.vs/ # a test framework from Microsoft
# Uncomment if you have tasks that create the project's static files in wwwroot # remove: if you are not using the MSTest runner to run your tests
#wwwroot/
# 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
# .NET Core # 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 project.lock.json
project.fragment.lock.json #
# build output
artifacts/ artifacts/
**/Properties/launchSettings.json
# 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
@@ -55,7 +85,6 @@ artifacts/
*.meta *.meta
*.obj *.obj
*.pch *.pch
*.pdb
*.pgc *.pgc
*.pgd *.pgd
*.rsp *.rsp
@@ -66,73 +95,89 @@ artifacts/
*.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
ipch/ ipch/
*.aps *.aps
*.ncb *.ncb
*.opendb
*.opensdf *.opensdf
*.sdf *.sdf
*.cachefile *.cachefile
*.VC.db
*.VC.VC.opendb
# 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
*.sap
# 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 add-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
# Visual Studio code coverage results
*.coverage
*.coveragexml
# NCrunch # NCrunch
# a continuous test runner for Visual Studio
# url: http://www.ncrunch.net
_NCrunch_* _NCrunch_*
.*crunch*.local.xml .*crunch*.local.xml
nCrunchTemp_* 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
@@ -142,47 +187,50 @@ 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
# Microsoft Azure Web App publish settings. Comment the next line if you want to # NuGet
# checkin your Azure Web App publish settings, but sensitive information contained # summary: the package manager tool used in Visual Studio
# in these scripts will be unencrypted # url: https://nuget.org
PublishScripts/ #
# output packages created by NuGet
# NuGet Packages
*.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
# NuGet v3's project.json files produces more ignoreable files
*.nuget.props
*.nuget.targets
# Microsoft Azure Build Output # Windows Azure Build Output
csx/ csx/
*.build.csdef *.build.csdef
# Microsoft Azure Emulator # Windows Store app package directory
ecf/
rcf/
# Windows Store app package directories and files
AppPackages/ AppPackages/
BundleArtifacts/
Package.StoreAssociation.xml
_pkginfo.txt
# Visual Studio cache files # Visual Studio cache files
# files ending in .cache can be ignored # files ending in .cache can be ignored
@@ -190,28 +238,47 @@ _pkginfo.txt
# but keep track of directories ending in .cache # but keep track of directories ending in .cache
!*.[Cc]ache/ !*.[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.*
# Others # Others
ClientBin/
~$* ~$*
*~ *~
*.dbmdl *.dbmdl
*.dbproj.schemaview *.dbproj.schemaview
*.jfm #
#
*.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/
# Orleans
# a Distributed Actor Model framework for .NET
# url: https://github.com/dotnet/Orleans
#
# code generated as part of compilation
orleans.codegen.cs orleans.codegen.cs
# Since there are multiple workflows, uncomment next line to ignore bower_components
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
#bower_components/
# 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
@@ -222,54 +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/
# GhostDoc plugin setting file
*.GhostDoc.xml
# 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
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
*.vbw
# Visual Studio LightSwitch build output
**/*.HTMLClient/GeneratedArtifacts
**/*.DesktopClient/GeneratedArtifacts
**/*.DesktopClient/ModelManifest.xml
**/*.Server/GeneratedArtifacts
**/*.Server/ModelManifest.xml
_Pvt_Extensions
# Paket dependency manager
.paket/paket.exe
paket-files/
# FAKE - F# Make
.fake/
# JetBrains Rider
.idea/
*.sln.iml
# CodeRush
.cr/
# Python Tools for Visual Studio (PTVS)
__pycache__/
*.pyc
# Cake - Uncomment if you are using it
# tools/**
# !tools/packages.config

View File

@@ -1,9 +1,3 @@
# For projects that use the Waf build system: https://waf.io/ # for projects that use Waf for building: http://code.google.com/p/waf/
# Dot-hidden on Unix-like systems .waf-*
.waf-*-*/ .lock-*
.waf3-*-*/
# Hidden directory on Windows (no dot)
waf-*-*/
waf3-*-*/
# Lockfile
.lock-waf_*_build

View File

@@ -1,4 +1,7 @@
*.log *.log
.htaccess
sitemap.xml
sitemap.xml.gz
wp-config.php wp-config.php
wp-content/advanced-cache.php wp-content/advanced-cache.php
wp-content/backup-db/ wp-content/backup-db/
@@ -10,9 +13,6 @@ wp-content/uploads/
wp-content/wp-cache-config.php wp-content/wp-cache-config.php
wp-content/plugins/hello.php wp-content/plugins/hello.php
/.htaccess
/license.txt
/readme.html /readme.html
/sitemap.xml /license.txt
/sitemap.xml.gz

View File

@@ -15,11 +15,6 @@ data/sessions/
data/tmp/ data/tmp/
temp/ temp/
#Doctrine 2
data/DoctrineORMModule/Proxy/
data/DoctrineORMModule/cache/
# Legacy ZF1 # Legacy ZF1
demos/ demos/
extras/documentation extras/documentation