1 Commits

Author SHA1 Message Date
Carl Suster
69fef749cb Add an explanation to reduce PHP framework clutter 2015-03-01 12:53:03 +11:00
107 changed files with 369 additions and 1514 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,11 +11,11 @@
# Generated files # Generated files
bin/ bin/
gen/ gen/
out/
# 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
@@ -25,30 +25,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,13 +1,14 @@
*.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/

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
@@ -35,17 +27,3 @@
*.i*86 *.i*86
*.x86_64 *.x86_64
*.hex *.hex
# Debug files
*.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

@@ -1,6 +0,0 @@
*.i
*.ii
*.gpu
*.ptx
*.cubin
*.fatbin

View File

@@ -1,23 +1,11 @@
# CakePHP 3 CakePHP 3
/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
/app/tmp/* /app/tmp/*
/app/Config/core.php /app/Config/core.php

View File

@@ -1,11 +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
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

@@ -21,10 +21,6 @@
# 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)
*.exe *.exe
@@ -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,32 +20,17 @@ 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)
.classpath .classpath
# Java annotation processor (APT) # PDT-specific
.factorypath
# PDT-specific (PHP Development Tools)
.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,4 +1,3 @@
# Ensime specific # Ensime specific
.ensime .ensime
.ensime_cache/
.ensime_lucene/ .ensime_lucene/

View File

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

View File

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

View File

@@ -1,33 +1,38 @@
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
# 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:
# IntelliJ # IntelliJ
/out/ out/
# mpeltonen/sbt-idea plugin # mpeltonen/sbt-idea plugin
.idea_modules/ .idea_modules/
@@ -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,30 +1,15 @@
# Lazarus compiler-generated binaries (safe to delete) #ignore backup files
*.exe backup/
*.dll
*.so #ignore files generated by the compiler
*.dylib lib/
*.lrs
*.res
*.compiled *.compiled
*.dbg
*.ppu
*.o *.o
*.or *.or
*.a *.ppu
# Lazarus autogenerated files (duplicated info) #ignore debug information files
*.rst *.dbg
*.rsj
*.lrt
# Lazarus local files (user-specific info) #exclude executable output in windows
*.lps *.exe
# 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/

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,11 +1,10 @@
*.DS_Store .DS_Store
.AppleDouble .AppleDouble
.LSOverride .LSOverride
# Icon must end with two \r # Icon must end with two \r
Icon Icon
# Thumbnails # Thumbnails
._* ._*
@@ -16,7 +15,6 @@ Icon
.TemporaryItems .TemporaryItems
.Trashes .Trashes
.VolumeIcon.icns .VolumeIcon.icns
.com.apple.timemachine.donotpresent
# Directories potentially created on remote AFP share # Directories potentially created on remote AFP share
.AppleDB .AppleDB

View File

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

View File

@@ -4,7 +4,7 @@ This directory contains globally useful gitignores,
e.g. OS-specific and editor specific. e.g. OS-specific and editor specific.
For more on global gitignores: For more on global gitignores:
<https://help.github.com/articles/ignoring-files/#create-a-global-gitignore> <http://help.github.com/git-ignore/>
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>

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,36 +1,23 @@
# Waveform formats # Waveforms
*.vcd
*.vpd *.vpd
*.vcd
*.evcd *.evcd
*.fsdb
# Default name of the simulation executable. A different name can be # Binary files
# specified with this switch (the associated daidir database name is
# also taken from here): -o <path>/<filename>
simv simv
# Generated for Verilog and VHDL top configs # Directories used for compilation
simv.daidir/
simv.db.dir/
# Infrastructure necessary to co-simulate SystemC models with
# Verilog/VHDL models. An alternate directory may be specified with this
# switch: -Mdir=<directory_path>
csrc/ csrc/
simv.daidir/
# Log file - the following switch allows to specify the file that will be # Log files
# used to write all messages from simulation: -l <filename>
*.log *.log
# Coverage results (generated with urg) and database location. The # DVE, UCLI related files
# following switch can also be used: urg -dir <coverage_directory>.vdb DVEfiles/
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

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 +0,0 @@
.vscode/*
!.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

@@ -1,12 +1,4 @@
# 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
@@ -15,9 +7,8 @@ DerivedData/
!default.mode2v3 !default.mode2v3
*.perspectivev3 *.perspectivev3
!default.perspectivev3 !default.perspectivev3
xcuserdata/ xcuserdata
## Other
*.moved-aside
*.xccheckout *.xccheckout
*.xcscmblueprint *.moved-aside
DerivedData
*.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
@@ -7,6 +6,7 @@ cabal-dev
*.chs.h *.chs.h
*.dyn_o *.dyn_o
*.dyn_hi *.dyn_hi
.virtualenv
.hpc .hpc
.hsenv .hsenv
.cabal-sandbox/ .cabal-sandbox/
@@ -14,7 +14,3 @@ cabal.sandbox.config
*.prof *.prof
*.aux *.aux
*.hp *.hp
*.eventlog
.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

@@ -1,3 +1,2 @@
_site/ _site/
.sass-cache/ .sass-cache/
.jekyll-metadata

View File

@@ -1,14 +1,13 @@
/.gitignore /.gitignore
/.htaccess /.htaccess
/administrator/cache/* /administrator/cache/*
/administrator/components/com_admin/* /administrator/components/com_contenthistory/*
/administrator/components/com_ajax/*
/administrator/components/com_tags/*
/administrator/components/com_banners/*
/administrator/components/com_cache/*
/administrator/components/com_postinstall/* /administrator/components/com_postinstall/*
/administrator/components/com_joomlaupdate/* /administrator/components/com_joomlaupdate/*
/administrator/components/com_contenthistory/* /administrator/components/com_tags/*
/administrator/components/com_admin/*
/administrator/components/com_banners/*
/administrator/components/com_cache/*
/administrator/components/com_categories/* /administrator/components/com_categories/*
/administrator/components/com_checkin/* /administrator/components/com_checkin/*
/administrator/components/com_config/* /administrator/components/com_config/*
@@ -29,60 +28,11 @@
/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/
/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_tags.ini
/administrator/language/en-GB/en-GB.com_tags.sys.ini
/administrator/language/en-GB/en-GB.mod_stats_admin.ini
/administrator/language/en-GB/en-GB.mod_stats_admin.sys.ini
/administrator/language/en-GB/en-GB.plg_authentication_cookie.ini
/administrator/language/en-GB/en-GB.plg_authentication_cookie.sys.ini
/administrator/language/en-GB/en-GB.plg_content_contact.ini
/administrator/language/en-GB/en-GB.plg_content_contact.sys.ini
/administrator/language/en-GB/en-GB.plg_content_finder.ini
/administrator/language/en-GB/en-GB.plg_content_finder.sys.ini
/administrator/language/en-GB/en-GB.plg_editors-xtd_module*
/administrator/language/en-GB/en-GB.plg_finder_categories.ini
/administrator/language/en-GB/en-GB.plg_finder_categories.sys.ini
/administrator/language/en-GB/en-GB.plg_finder_contacts.ini
/administrator/language/en-GB/en-GB.plg_finder_contacts.sys.ini
/administrator/language/en-GB/en-GB.plg_finder_content.ini
/administrator/language/en-GB/en-GB.plg_finder_content.sys.ini
/administrator/language/en-GB/en-GB.plg_finder_newsfeeds.sys.ini
/administrator/language/en-GB/en-GB.plg_finder_newsfeeds.ini
/administrator/language/en-GB/en-GB.plg_finder_tags.ini
/administrator/language/en-GB/en-GB.plg_finder_tags.sys.ini
/administrator/language/en-GB/en-GB.plg_finder_weblinks.ini
/administrator/language/en-GB/en-GB.plg_finder_weblinks.sys.ini
/administrator/language/en-GB/en-GB.plg_installer_folderinstaller*
/administrator/language/en-GB/en-GB.plg_installer_packageinstaller*
/administrator/language/en-GB/en-GB.plg_installer_packageinstaller
/administrator/language/en-GB/en-GB.plg_installer_urlinstaller*
/administrator/language/en-GB/en-GB.plg_installer_webinstaller.ini
/administrator/language/en-GB/en-GB.plg_installer_webinstaller.sys.ini
/administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.ini
/administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.sys.ini
/administrator/language/en-GB/en-GB.plg_search_tags.ini
/administrator/language/en-GB/en-GB.plg_search_tags.sys.ini
/administrator/language/en-GB/en-GB.plg_system_languagecode.ini
/administrator/language/en-GB/en-GB.plg_system_languagecode.sys.ini
/administrator/language/en-GB/en-GB.plg_system_stats*
/administrator/language/en-GB/en-GB.plg_system_updatenotification*
/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.ini
/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.sys.ini
/administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.ini
/administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.sys.ini
/administrator/language/en-GB/en-GB.tpl_isis.ini
/administrator/language/en-GB/en-GB.tpl_isis.sys.ini
/administrator/language/en-GB/install.xml
/administrator/language/en-GB/en-GB.com_admin.ini /administrator/language/en-GB/en-GB.com_admin.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
@@ -247,11 +197,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,28 +223,31 @@
/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/templates/isis/* /administrator/modules/index.html
/administrator/templates/bluestork/*
/administrator/templates/hathor/* /administrator/templates/hathor/*
/administrator/templates/system/* /administrator/templates/system/*
/administrator/templates/isis/*
/administrator/templates/index.html
/administrator/index.php /administrator/index.php
/cache/*
/bin/* /bin/*
/cache/*
/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/*
/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/com_ajax/*
/components/com_tags/*
/components/com_config/*
/components/index.html /components/index.html
/images/banners/* /images/banners/*
/images/headers/* /images/headers/*
@@ -301,35 +257,12 @@
/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.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.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
@@ -391,49 +324,40 @@
/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
/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/*
@@ -454,9 +378,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,7 +387,7 @@
/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/content/emailcloak/* /plugins/content/emailcloak/*
/plugins/content/example/* /plugins/content/example/*
@@ -475,32 +398,32 @@
/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/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/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/*
@@ -513,23 +436,31 @@
/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/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
/templates/beez3/* /plugins/twofactorauth/totp/*
/templates/protostar/* /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/beez_20/*
/templates/beez5/*
/templates/system/* /templates/system/*
/templates/index.html /templates/index.html
/templates/beez3/*
/templates/protostar/*
/tmp/* /tmp/*
/configuration.php /configuration.php
/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

2
Jython.gitignore Normal file
View File

@@ -0,0 +1,2 @@
*.pyc
*.class

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,3 @@
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
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
@@ -73,8 +89,15 @@ LICENSE_AFL.txt
LICENSE.html 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

@@ -5,8 +5,3 @@ 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
# Exclude maven wrapper
!/.mvn/wrapper/maven-wrapper.jar

View File

@@ -1,5 +1,4 @@
Mercury/ Mercury/
Mercury.modules
*.mh *.mh
*.err *.err
*.init *.init

2
Meteor.gitignore Normal file
View File

@@ -0,0 +1,2 @@
.meteor/local
.meteor/meteorite

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://www.npmjs.org/doc/misc/npm-faq.html#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

@@ -1,12 +1,6 @@
# 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
@@ -15,49 +9,18 @@ DerivedData/
!default.mode2v3 !default.mode2v3
*.perspectivev3 *.perspectivev3
!default.perspectivev3 !default.perspectivev3
xcuserdata/ xcuserdata
## Other
*.moved-aside
*.xccheckout *.xccheckout
*.xcscmblueprint *.moved-aside
DerivedData
## Obj-C/Swift specific
*.hmap *.hmap
*.ipa *.ipa
*.dSYM.zip *.xcuserstate
*.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-ignore-the-pods-directory-in-source-control
# #
# Pods/ # Pods/
# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts
Carthage/Build
# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://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

@@ -1,32 +1,29 @@
# Private files # Directories content
# The following files contain your database credentials and other personal data. cache/class_index.php
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/
!/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/* config/settings.inc.php
*sitemap.xml
themes/*/cache/
modules/*/config*.xml
# Site content log/*.log
# The following folders contain product images, virtual products, CSV's, etc.
admin-dev/backups/ img/*
admin-dev/export/ !img/index.php
admin-dev/import/ !img/*/index.php
download/
/img/* tools/smarty*/cache/*.php
upload/ !tools/smarty*/cache/index.php
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

View File

@@ -1,7 +1,6 @@
# Byte-compiled / optimized / DLL files # Byte-compiled / optimized / DLL files
__pycache__/ __pycache__/
*.py[cod] *.py[cod]
*$py.class
# C extensions # C extensions
*.so *.so
@@ -20,7 +19,6 @@ lib64/
parts/ parts/
sdist/ sdist/
var/ var/
wheels/
*.egg-info/ *.egg-info/
.installed.cfg .installed.cfg
*.egg *.egg
@@ -43,8 +41,6 @@ htmlcov/
.cache .cache
nosetests.xml nosetests.xml
coverage.xml coverage.xml
*,cover
.hypothesis/
# Translations # Translations
*.mo *.mo
@@ -52,40 +48,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,7 +23,7 @@ moc_*.cpp
qrc_*.cpp qrc_*.cpp
ui_*.h ui_*.h
Makefile* Makefile*
*build-* *-build-*
# QtCreator # QtCreator
@@ -32,7 +32,3 @@ Makefile*
#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

@@ -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

@@ -1,12 +1,6 @@
# 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
@@ -15,35 +9,19 @@ DerivedData/
!default.mode2v3 !default.mode2v3
*.perspectivev3 *.perspectivev3
!default.perspectivev3 !default.perspectivev3
xcuserdata/ xcuserdata
## Other
*.moved-aside
*.xccheckout *.xccheckout
*.xcscmblueprint *.moved-aside
DerivedData
## Obj-C/Swift specific
*.hmap *.hmap
*.ipa *.ipa
*.dSYM.zip *.xcuserstate
*.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 +31,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,12 @@
## 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 +45,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 +69,12 @@ acs-*.bib
*.glg *.glg
*.glo *.glo
*.gls *.gls
*.glsdefs
# 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 +89,8 @@ acs-*.bib
# minitoc # minitoc
*.maf *.maf
*.mlf *.mtc
*.mlt *.mtc0
*.mtc[0-9]*
# minted # minted
_minted* _minted*
@@ -142,79 +99,25 @@ _minted*
# morewrites # morewrites
*.mw *.mw
# mylatexformat
*.fmt
# 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
*.dpth
*.md5
*.auxlock
# 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/

Some files were not shown because too many files have changed in this diff Show More