├── Jekyll.gitignore ├── Maven.gitignore ├── SketchUp.gitignore ├── Compass.gitignore ├── Global ├── Espresso.gitignore ├── PhPStorm.gitignore ├── SVN.gitignore ├── Redcar.gitignore ├── FlexBuilder.gitignore ├── Linux.gitignore ├── RubyMine.gitignore ├── Mercurial.gitignore ├── IntelliJ.gitignore ├── TextMate.gitignore ├── CVS.gitignore ├── vim.gitignore ├── SublimeText.gitignore ├── SASS.gitignore ├── Tags.gitignore ├── PyCharm.gitignore ├── NetBeans.gitignore ├── MonoDevelop.gitignore ├── VirtualEnv.gitignore ├── SBT.gitignore ├── Emacs.gitignore ├── Windows.gitignore ├── OSX.gitignore ├── README.md ├── Archives.gitignore ├── ModelSim.gitignore ├── Eclipse.gitignore ├── Matlab.gitignore ├── XilinxISE.gitignore ├── VisualStudio.gitignore └── Quartus2.gitignore ├── Clojure.gitignore ├── Jython.gitignore ├── Coq.gitignore ├── Lithium.gitignore ├── Kohana.gitignore ├── Erlang.gitignore ├── Concrete5.gitignore ├── Django.gitignore ├── FuelPHP.gitignore ├── Dart.gitignore ├── Yii.gitignore ├── Lilypond.gitignore ├── Java.gitignore ├── AppceleratorTitanium.gitignore ├── ForceDotCom.gitignore ├── gcov.gitignore ├── Haskell.gitignore ├── Leiningen.gitignore ├── Qooxdoo.gitignore ├── R.gitignore ├── CMake.gitignore ├── Waf.gitignore ├── ZendFramework.gitignore ├── OCaml.gitignore ├── Sdcc.gitignore ├── CodeIgniter.gitignore ├── Delphi.gitignore ├── SymphonyCMS.gitignore ├── RhodesRhomobile.gitignore ├── OracleForms.gitignore ├── Unity.gitignore ├── CakePHP.gitignore ├── Tasm.gitignore ├── Opa.gitignore ├── Node.gitignore ├── opencart.gitignore ├── C++.gitignore ├── Scala.gitignore ├── nanoc.gitignore ├── C.gitignore ├── Perl.gitignore ├── Autotools.gitignore ├── Textpattern.gitignore ├── Qt.gitignore ├── Ruby.gitignore ├── Symfony2.gitignore ├── Finale.gitignore ├── CFWheels.gitignore ├── ExpressionEngine.gitignore ├── Rails.gitignore ├── Wordpress.gitignore ├── TurboGears2.gitignore ├── GWT.gitignore ├── Objective-C.gitignore ├── Actionscript.gitignore ├── Go.gitignore ├── LaTeX.gitignore ├── Bancha.gitignore ├── Symfony.gitignore ├── PlayFramework.gitignore ├── Plone.gitignore ├── LemonStand.gitignore ├── Python.gitignore ├── Android.gitignore ├── Jboss.gitignore ├── Eagle.gitignore ├── Typo3.gitignore ├── Grails.gitignore ├── Drupal.gitignore ├── SugarCRM.gitignore ├── SeamGen.gitignore ├── LICENSE ├── Target3001.gitignore ├── README.md ├── VB.Net.gitignore ├── CSharp.gitignore ├── Magento.gitignore └── Joomla.gitignore /Jekyll.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | -------------------------------------------------------------------------------- /Maven.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | -------------------------------------------------------------------------------- /SketchUp.gitignore: -------------------------------------------------------------------------------- 1 | *.skb 2 | -------------------------------------------------------------------------------- /Compass.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | -------------------------------------------------------------------------------- /Global/Espresso.gitignore: -------------------------------------------------------------------------------- 1 | *.esproj -------------------------------------------------------------------------------- /Global/PhPStorm.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ -------------------------------------------------------------------------------- /Global/SVN.gitignore: -------------------------------------------------------------------------------- 1 | .svn/ 2 | -------------------------------------------------------------------------------- /Clojure.gitignore: -------------------------------------------------------------------------------- 1 | Leiningen.gitignore -------------------------------------------------------------------------------- /Global/Redcar.gitignore: -------------------------------------------------------------------------------- 1 | .redcar 2 | -------------------------------------------------------------------------------- /Jython.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.class 3 | -------------------------------------------------------------------------------- /Coq.gitignore: -------------------------------------------------------------------------------- 1 | *.vo 2 | *.glob 3 | *.v.d 4 | 5 | -------------------------------------------------------------------------------- /Global/FlexBuilder.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | bin-debug/ -------------------------------------------------------------------------------- /Global/Linux.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | !.gitignore 3 | *~ 4 | -------------------------------------------------------------------------------- /Global/RubyMine.gitignore: -------------------------------------------------------------------------------- 1 | .idea/workspace.xml 2 | -------------------------------------------------------------------------------- /Lithium.gitignore: -------------------------------------------------------------------------------- 1 | libraries/* 2 | resources/tmp/* 3 | -------------------------------------------------------------------------------- /Kohana.gitignore: -------------------------------------------------------------------------------- 1 | application/cache/* 2 | application/logs/* -------------------------------------------------------------------------------- /Erlang.gitignore: -------------------------------------------------------------------------------- 1 | .eunit 2 | deps 3 | *.o 4 | *.beam 5 | *.plt -------------------------------------------------------------------------------- /Global/Mercurial.gitignore: -------------------------------------------------------------------------------- 1 | /.hg/* 2 | */.hg/* 3 | .hgignore 4 | -------------------------------------------------------------------------------- /Concrete5.gitignore: -------------------------------------------------------------------------------- 1 | config/site.php 2 | files/cache/* 3 | files/tmp/* -------------------------------------------------------------------------------- /Django.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | *.pot 3 | *.pyc 4 | local_settings.py 5 | -------------------------------------------------------------------------------- /FuelPHP.gitignore: -------------------------------------------------------------------------------- 1 | fuel/app/logs/*/*/* 2 | fuel/app/cache/*/* 3 | -------------------------------------------------------------------------------- /Global/IntelliJ.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | *.ipr 3 | *.iws 4 | .idea/ 5 | -------------------------------------------------------------------------------- /Global/TextMate.gitignore: -------------------------------------------------------------------------------- 1 | *.tmproj 2 | *.tmproject 3 | tmtags 4 | -------------------------------------------------------------------------------- /Dart.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | packages 3 | .project 4 | pubspec.lock 5 | -------------------------------------------------------------------------------- /Global/CVS.gitignore: -------------------------------------------------------------------------------- 1 | /CVS/* 2 | */CVS/* 3 | .cvsignore 4 | */.cvsignore -------------------------------------------------------------------------------- /Global/vim.gitignore: -------------------------------------------------------------------------------- 1 | .*.sw[a-z] 2 | *.un~ 3 | Session.vim 4 | .netrwhist -------------------------------------------------------------------------------- /Yii.gitignore: -------------------------------------------------------------------------------- 1 | assets/ 2 | protected/runtime/ 3 | themes/classic/views/ -------------------------------------------------------------------------------- /Lilypond.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | *.ps 3 | *.midi 4 | *.mid 5 | *.log 6 | *~ 7 | -------------------------------------------------------------------------------- /Java.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | 3 | # Package Files # 4 | *.jar 5 | *.war 6 | *.ear 7 | -------------------------------------------------------------------------------- /AppceleratorTitanium.gitignore: -------------------------------------------------------------------------------- 1 | # Build folder and log file 2 | build/ 3 | build.log 4 | -------------------------------------------------------------------------------- /Global/SublimeText.gitignore: -------------------------------------------------------------------------------- 1 | # SublimeText project files 2 | *.sublime-workspace 3 | -------------------------------------------------------------------------------- /ForceDotCom.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | .settings 3 | salesforce.schema 4 | Referenced Packages -------------------------------------------------------------------------------- /gcov.gitignore: -------------------------------------------------------------------------------- 1 | # gcc coverage testing tool files 2 | 3 | *.gcno 4 | *.gcda 5 | *.gcov 6 | -------------------------------------------------------------------------------- /Global/SASS.gitignore: -------------------------------------------------------------------------------- 1 | ### SASS Ignores - "Sassy CSS" http://sass-lang.com/ 2 | *.sass-cache 3 | -------------------------------------------------------------------------------- /Haskell.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | cabal-dev 3 | *.o 4 | *.hi 5 | *.chi 6 | *.chs.h 7 | .virthualenv 8 | -------------------------------------------------------------------------------- /Leiningen.gitignore: -------------------------------------------------------------------------------- 1 | pom.xml 2 | *jar 3 | /lib/ 4 | /classes/ 5 | /targets/ 6 | .lein-deps-sum 7 | -------------------------------------------------------------------------------- /Qooxdoo.gitignore: -------------------------------------------------------------------------------- 1 | cache 2 | cache-downloads 3 | inspector 4 | api 5 | source/inspector.html 6 | -------------------------------------------------------------------------------- /R.gitignore: -------------------------------------------------------------------------------- 1 | # History files 2 | .Rhistory 3 | 4 | # Example code in package build process 5 | *-Ex.R -------------------------------------------------------------------------------- /Global/Tags.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore tags created by etags and ctags 2 | TAGS 3 | !TAGS/ 4 | tags 5 | !tags/ 6 | -------------------------------------------------------------------------------- /CMake.gitignore: -------------------------------------------------------------------------------- 1 | CMakeCache.txt 2 | CMakeFiles 3 | Makefile 4 | cmake_install.cmake 5 | install_manifest.txt 6 | -------------------------------------------------------------------------------- /Waf.gitignore: -------------------------------------------------------------------------------- 1 | # for projects that use Waf for building: http://code.google.com/p/waf/ 2 | .waf-* 3 | .lock-* 4 | -------------------------------------------------------------------------------- /ZendFramework.gitignore: -------------------------------------------------------------------------------- 1 | INSTALL.txt 2 | LICENSE.txt 3 | README.txt 4 | demos/ 5 | extras/documentation 6 | 7 | -------------------------------------------------------------------------------- /Global/PyCharm.gitignore: -------------------------------------------------------------------------------- 1 | # PyCharm 2 | # http://www.jetbrains.com/pycharm/webhelp/project.html 3 | .idea 4 | .iml 5 | -------------------------------------------------------------------------------- /OCaml.gitignore: -------------------------------------------------------------------------------- 1 | *.annot 2 | *.cmo 3 | *.cma 4 | *.cmi 5 | *.a 6 | *.o 7 | *.cmx 8 | *.cmxs 9 | *.cmxa 10 | -------------------------------------------------------------------------------- /Sdcc.gitignore: -------------------------------------------------------------------------------- 1 | # SDCC stuff 2 | *.lnk 3 | *.lst 4 | *.map 5 | *.mem 6 | *.rel 7 | *.rst 8 | *.sym 9 | 10 | -------------------------------------------------------------------------------- /CodeIgniter.gitignore: -------------------------------------------------------------------------------- 1 | */config/development 2 | */logs/log-*.php 3 | */logs/!index.html 4 | */cache/* 5 | */cache/!index.html 6 | -------------------------------------------------------------------------------- /Delphi.gitignore: -------------------------------------------------------------------------------- 1 | *.dcu 2 | *.~*~ 3 | *.local 4 | *.identcache 5 | __history 6 | *.drc 7 | *.map 8 | *.exe 9 | *.dll 10 | bin/* -------------------------------------------------------------------------------- /Global/NetBeans.gitignore: -------------------------------------------------------------------------------- 1 | nbproject/private/ 2 | build/ 3 | nbbuild/ 4 | dist/ 5 | nbdist/ 6 | nbactions.xml 7 | nb-configuration.xml 8 | -------------------------------------------------------------------------------- /SymphonyCMS.gitignore: -------------------------------------------------------------------------------- 1 | manifest/cache/ 2 | manifest/logs/ 3 | manifest/tmp/ 4 | symphony/ 5 | workspace/uploads/ 6 | install-log.txt 7 | -------------------------------------------------------------------------------- /RhodesRhomobile.gitignore: -------------------------------------------------------------------------------- 1 | rholog-* 2 | sim-* 3 | bin/libs 4 | bin/RhoBundle 5 | bin/tmp 6 | bin/target 7 | bin/*.ap_ 8 | *.o 9 | *.jar 10 | -------------------------------------------------------------------------------- /Global/MonoDevelop.gitignore: -------------------------------------------------------------------------------- 1 | #User Specific 2 | *.userprefs 3 | *.usertasks 4 | 5 | #Mono Project Files 6 | *.pidb 7 | *.resources 8 | test-results/ 9 | -------------------------------------------------------------------------------- /OracleForms.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Form Modules 2 | *.fmx 3 | 4 | # Compiled Menu Modules 5 | *.mmx 6 | 7 | # Compiled Pre-Linked Libraries 8 | *.plx 9 | -------------------------------------------------------------------------------- /Unity.gitignore: -------------------------------------------------------------------------------- 1 | [Ll]ibrary/ 2 | [Tt]emp/ 3 | [Oo]bj/ 4 | 5 | # Autogenerated VS/MD solution and project files 6 | *.csproj 7 | *.unityproj 8 | *.sln 9 | -------------------------------------------------------------------------------- /CakePHP.gitignore: -------------------------------------------------------------------------------- 1 | tmp/* 2 | [Cc]onfig/core.php 3 | [Cc]onfig/database.php 4 | app/tmp/* 5 | app/[Cc]onfig/core.php 6 | app/[Cc]onfig/database.php 7 | !empty -------------------------------------------------------------------------------- /Tasm.gitignore: -------------------------------------------------------------------------------- 1 | # Object Files 2 | *.OBJ 3 | 4 | # List Files 5 | *.LST 6 | 7 | # Map files 8 | *.MAP 9 | 10 | # Executable files 11 | *.EXE 12 | -------------------------------------------------------------------------------- /Global/VirtualEnv.gitignore: -------------------------------------------------------------------------------- 1 | # Virtualenv 2 | # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/ 3 | .Python 4 | [Bb]in 5 | [Ii]nclude 6 | [Ll]ib 7 | [Ss]cripts 8 | -------------------------------------------------------------------------------- /Opa.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | _tracks 3 | 4 | opa-debug-js 5 | 6 | *.opp 7 | *.opx 8 | *.opx.broken 9 | *.dump 10 | *.api 11 | *.api-txt 12 | *.exe 13 | *.log 14 | -------------------------------------------------------------------------------- /Node.gitignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | 10 | pids 11 | logs 12 | results 13 | 14 | npm-debug.log 15 | node_modules -------------------------------------------------------------------------------- /opencart.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | admin/config.php 3 | 4 | !index.html 5 | 6 | download 7 | image/cache/*.jpg 8 | image/cache/data/* 9 | system/cache 10 | system/logs 11 | -------------------------------------------------------------------------------- /Global/SBT.gitignore: -------------------------------------------------------------------------------- 1 | # SBT .gitignore 2 | # recommended: http://code.google.com/p/simple-build-tool/wiki/Setup#Version_Control 3 | 4 | target/ 5 | lib_managed/ 6 | src_managed/ 7 | project/boot/ -------------------------------------------------------------------------------- /Global/Emacs.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | \#*\# 3 | /.emacs.desktop 4 | /.emacs.desktop.lock 5 | .elc 6 | auto-save-list 7 | tramp 8 | .\#* 9 | 10 | # Org-mode 11 | .org-id-locations 12 | *_archive 13 | -------------------------------------------------------------------------------- /Global/Windows.gitignore: -------------------------------------------------------------------------------- 1 | # Windows image file caches 2 | Thumbs.db 3 | ehthumbs.db 4 | 5 | # Folder config file 6 | Desktop.ini 7 | 8 | # Recycle Bin used on file shares 9 | $RECYCLE.BIN/ 10 | -------------------------------------------------------------------------------- /C++.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files 2 | *.slo 3 | *.lo 4 | *.o 5 | 6 | # Compiled Dynamic libraries 7 | *.so 8 | *.dylib 9 | 10 | # Compiled Static libraries 11 | *.lai 12 | *.la 13 | *.a 14 | -------------------------------------------------------------------------------- /Global/OSX.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .AppleDouble 3 | .LSOverride 4 | Icon 5 | 6 | 7 | # Thumbnails 8 | ._* 9 | 10 | # Files that might appear on external disk 11 | .Spotlight-V100 12 | .Trashes 13 | -------------------------------------------------------------------------------- /Scala.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | *.log 3 | 4 | # sbt specific 5 | dist/* 6 | target/ 7 | lib_managed/ 8 | src_managed/ 9 | project/boot/ 10 | project/plugins/project/ 11 | 12 | # Scala-IDE specific 13 | .scala_dependencies -------------------------------------------------------------------------------- /nanoc.gitignore: -------------------------------------------------------------------------------- 1 | # For projects using nanoc (http://nanoc.stoneship.org/) 2 | 3 | # Default location for output, needs to match output_dir's value found in config.yaml 4 | output/ 5 | 6 | # Temporary file directory 7 | tmp/ 8 | -------------------------------------------------------------------------------- /C.gitignore: -------------------------------------------------------------------------------- 1 | # Object files 2 | *.o 3 | 4 | # Libraries 5 | *.lib 6 | *.a 7 | 8 | # Shared objects (inc. Windows DLLs) 9 | *.dll 10 | *.so 11 | *.so.* 12 | *.dylib 13 | 14 | # Executables 15 | *.exe 16 | *.out 17 | *.app 18 | -------------------------------------------------------------------------------- /Perl.gitignore: -------------------------------------------------------------------------------- 1 | blib/ 2 | .build/ 3 | _build/ 4 | cover_db/ 5 | inc/ 6 | Build 7 | !Build/ 8 | Build.bat 9 | .last_cover_stats 10 | Makefile 11 | Makefile.old 12 | MANIFEST.bak 13 | META.yml 14 | MYMETA.yml 15 | nytprof.out 16 | pm_to_blib 17 | -------------------------------------------------------------------------------- /Autotools.gitignore: -------------------------------------------------------------------------------- 1 | # http://www.gnu.org/software/automake 2 | 3 | Makefile.in 4 | 5 | # http://www.gnu.org/software/autoconf 6 | 7 | /autom4te.cache 8 | /aclocal.m4 9 | /compile 10 | /configure 11 | /depcomp 12 | /install-sh 13 | /missing 14 | -------------------------------------------------------------------------------- /Textpattern.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess 2 | css.php 3 | rpc/ 4 | sites/site*/admin/ 5 | sites/site*/private/ 6 | sites/site*/public/admin/ 7 | sites/site*/public/setup/ 8 | sites/site*/public/theme/ 9 | textpattern/ 10 | HISTORY.txt 11 | README.txt 12 | -------------------------------------------------------------------------------- /Qt.gitignore: -------------------------------------------------------------------------------- 1 | # C++ objects and libs 2 | 3 | *.slo 4 | *.lo 5 | *.o 6 | *.a 7 | *.la 8 | *.lai 9 | *.so 10 | *.dll 11 | *.dylib 12 | 13 | # Qt-es 14 | 15 | *.pro.user 16 | *.pro.user.* 17 | moc_*.cpp 18 | qrc_*.cpp 19 | Makefile 20 | *-build-* 21 | -------------------------------------------------------------------------------- /Ruby.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | *.rbc 3 | .bundle 4 | .config 5 | coverage 6 | InstalledFiles 7 | lib/bundler/man 8 | pkg 9 | rdoc 10 | spec/reports 11 | test/tmp 12 | test/version_tmp 13 | tmp 14 | 15 | # YARD artifacts 16 | .yardoc 17 | _yardoc 18 | doc/ 19 | -------------------------------------------------------------------------------- /Symfony2.gitignore: -------------------------------------------------------------------------------- 1 | # Bootstrap 2 | app/bootstrap* 3 | 4 | # Symfony directories 5 | vendor/* 6 | */logs/* 7 | */cache/* 8 | web/uploads/* 9 | web/bundles/* 10 | 11 | # Configuration files 12 | app/config/parameters.ini 13 | app/config/parameters.yml 14 | -------------------------------------------------------------------------------- /Finale.gitignore: -------------------------------------------------------------------------------- 1 | *.bak 2 | *.db 3 | *.avi 4 | *.pdf 5 | *.ps 6 | *.mid 7 | *.midi 8 | *.mp3 9 | *.aif 10 | *.wav 11 | # Some versions of Finale have a bug and randomly save extra copies of 12 | # the music source as " copy.mus" 13 | *copy.mus 14 | 15 | -------------------------------------------------------------------------------- /CFWheels.gitignore: -------------------------------------------------------------------------------- 1 | # unpacked plugin folders 2 | plugins/**/* 3 | 4 | # files directory where uploads go 5 | files 6 | 7 | # DBMigrate plugin: generated SQL 8 | db/sql 9 | 10 | # AssetBundler plugin: generated bundles 11 | javascripts/bundles 12 | stylesheets/bundles 13 | -------------------------------------------------------------------------------- /ExpressionEngine.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | # Images 4 | images/avatars/ 5 | images/captchas/ 6 | images/smileys/ 7 | images/member_photos/ 8 | images/signature_attachments/ 9 | images/pm_attachments/ 10 | 11 | # Caches 12 | sized/ 13 | thumbs/ 14 | _thumbs/ 15 | */expressionengine/cache/* -------------------------------------------------------------------------------- /Rails.gitignore: -------------------------------------------------------------------------------- 1 | *.rbc 2 | *.sassc 3 | .sass-cache 4 | capybara-*.html 5 | .rspec 6 | .rvmrc 7 | /.bundle 8 | /vendor/bundle 9 | /log/* 10 | /tmp/* 11 | /db/*.sqlite3 12 | /public/system/* 13 | /coverage/ 14 | /spec/tmp/* 15 | **.orig 16 | rerun.txt 17 | pickle-email-*.html 18 | .project 19 | -------------------------------------------------------------------------------- /Wordpress.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess 2 | wp-config.php 3 | wp-content/uploads/ 4 | wp-content/blogs.dir/ 5 | wp-content/upgrade/ 6 | wp-content/backup-db/ 7 | wp-content/advanced-cache.php 8 | wp-content/wp-cache-config.php 9 | sitemap.xml 10 | *.log 11 | wp-content/cache/ 12 | wp-content/backups/ 13 | sitemap.xml.gz -------------------------------------------------------------------------------- /TurboGears2.gitignore: -------------------------------------------------------------------------------- 1 | *.py[co] 2 | 3 | # Default development database 4 | devdata.db 5 | 6 | # Default data directory 7 | data/* 8 | 9 | # Packages 10 | *.egg 11 | *.egg-info 12 | dist 13 | build 14 | 15 | # Installer logs 16 | pip-log.txt 17 | 18 | # Unit test / coverage reports 19 | .coverage 20 | .tox 21 | -------------------------------------------------------------------------------- /GWT.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | 3 | # Package Files # 4 | *.jar 5 | *.war 6 | 7 | # gwt caches and compiled units # 8 | war/gwt_bree/ 9 | gwt-unitCache/ 10 | 11 | # boilerplate generated classes # 12 | .apt_generated/ 13 | 14 | # more caches and things from deploy # 15 | war/WEB-INF/deploy/ 16 | war/WEB-INF/classes/ 17 | 18 | -------------------------------------------------------------------------------- /Global/README.md: -------------------------------------------------------------------------------- 1 | ## Globally Useful gitignores 2 | 3 | This directory contains globally useful gitignores, 4 | e.g. OS-specific and editor specific. 5 | 6 | For more on global gitignores: 7 | 8 | 9 | And a good blog post about 'em: 10 | 11 | -------------------------------------------------------------------------------- /Objective-C.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | .DS_Store 3 | */build/* 4 | *.pbxuser 5 | !default.pbxuser 6 | *.mode1v3 7 | !default.mode1v3 8 | *.mode2v3 9 | !default.mode2v3 10 | *.perspectivev3 11 | !default.perspectivev3 12 | *.xcworkspace 13 | !default.xcworkspace 14 | xcuserdata 15 | profile 16 | *.moved-aside 17 | DerivedData 18 | .idea/ 19 | *.hmap 20 | -------------------------------------------------------------------------------- /Actionscript.gitignore: -------------------------------------------------------------------------------- 1 | # Build and Release Folders 2 | bin/ 3 | bin-debug/ 4 | bin-release/ 5 | 6 | # Other files and folders 7 | .settings/ 8 | 9 | # Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties` 10 | # should NOT be excluded as they contain compiler settings and other important 11 | # information for Eclipse / Flash Builder. -------------------------------------------------------------------------------- /Go.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files, Static and Dynamic libs (Shared Objects) 2 | *.o 3 | *.a 4 | *.so 5 | 6 | # Folders 7 | _obj 8 | _test 9 | 10 | # Architecture specific extensions/prefixes 11 | *.[568vq] 12 | [568vq].out 13 | 14 | *.cgo1.go 15 | *.cgo2.c 16 | _cgo_defun.c 17 | _cgo_gotypes.go 18 | _cgo_export.* 19 | 20 | _testmain.go 21 | 22 | *.exe 23 | -------------------------------------------------------------------------------- /LaTeX.gitignore: -------------------------------------------------------------------------------- 1 | *.acn 2 | *.acr 3 | *.alg 4 | *.aux 5 | *.bbl 6 | *.blg 7 | *.dvi 8 | *.fdb_latexmk 9 | *.glg 10 | *.glo 11 | *.gls 12 | *.idx 13 | *.ilg 14 | *.ind 15 | *.ist 16 | *.lof 17 | *.log 18 | *.lot 19 | *.maf 20 | *.mtc 21 | *.mtc0 22 | *.nav 23 | *.nlo 24 | *.out 25 | *.pdfsync 26 | *.ps 27 | *.snm 28 | *.synctex.gz 29 | *.toc 30 | *.vrb 31 | *.xdy 32 | *.tdo 33 | -------------------------------------------------------------------------------- /Bancha.gitignore: -------------------------------------------------------------------------------- 1 | #Logs 2 | application/logs/*.php 3 | 4 | # Content types 5 | /application/xml/types/*.xml 6 | 7 | # Custom builds and generated php files 8 | /core/documentation/build 9 | /core/views/admin/content/translations.php 10 | 11 | # Attachs and cache files # 12 | *.tmp 13 | /attach/cache/ 14 | /attach/ 15 | /application/cache/_bancha/*.css 16 | /application/cache/_bancha/*.js 17 | -------------------------------------------------------------------------------- /Global/Archives.gitignore: -------------------------------------------------------------------------------- 1 | # It's better to unpack these files and commit the raw source because 2 | # git has its own built in compression methods. 3 | *.7z 4 | *.jar 5 | *.rar 6 | *.zip 7 | *.gz 8 | *.bzip 9 | *.bz2 10 | *.xz 11 | *.lzma 12 | 13 | #packing-only formats 14 | *.iso 15 | *.tar 16 | 17 | #package management formats 18 | *.dmg 19 | *.xpi 20 | *.gem 21 | *.egg 22 | *.deb 23 | *.rpm 24 | -------------------------------------------------------------------------------- /Symfony.gitignore: -------------------------------------------------------------------------------- 1 | cache/* 2 | log/* 3 | web/uploads/* 4 | config/databases.yml 5 | config/propel.ini 6 | data/sql/* 7 | lib/filter/doctrine/base/Base* 8 | lib/filter/doctrine/*Plugin/base/Base* 9 | lib/form/doctrine/base/Base* 10 | lib/form/doctrine/*Plugin/base/Base* 11 | lib/model/doctrine/base/Base* 12 | lib/model/doctrine/*Plugin/base/Base* 13 | lib/model/om/* 14 | lib/model/map/* 15 | web/*Plugin/* -------------------------------------------------------------------------------- /Global/ModelSim.gitignore: -------------------------------------------------------------------------------- 1 | # ignore ModelSim generated files and directories (temp files and so on) 2 | [_@]* 3 | 4 | # ignore compilation output of ModelSim 5 | *.mti 6 | *.dat 7 | *.dbs 8 | *.psm 9 | *.bak 10 | *.cmp 11 | *.jpg 12 | *.html 13 | *.bsf 14 | 15 | # ignore simulation output of ModelSim 16 | wlf* 17 | *.wlf 18 | *.vstf 19 | *.ucdb 20 | cov*/ 21 | transcript* 22 | sc_dpiheader.h 23 | vsim.dbg 24 | -------------------------------------------------------------------------------- /PlayFramework.gitignore: -------------------------------------------------------------------------------- 1 | # Extracted from https://github.com/ulrich/macaron-factory/blob/master/.gitignore 2 | # Ignore all dotfiles... 3 | .* 4 | # except for .gitignore 5 | !.gitignore 6 | 7 | # Ignore Play! working directory # 8 | db 9 | eclipse 10 | lib 11 | log 12 | logs 13 | modules 14 | precompiled 15 | project/project 16 | project/target 17 | target 18 | tmp 19 | test-result 20 | server.pid 21 | *.iml 22 | *.eml 23 | -------------------------------------------------------------------------------- /Plone.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.pyc 3 | *.pyo 4 | *.tmp* 5 | *.mo 6 | *.egg 7 | *.EGG 8 | *.egg-info 9 | *.EGG-INFO 10 | *.kpf 11 | *.swp 12 | *.wpr 13 | .*.cfg 14 | .installed.cfg 15 | .mr.developer.cfg 16 | .hg/ 17 | .bzr/ 18 | .svn/ 19 | .project 20 | .pydevproject 21 | bin/ 22 | build/ 23 | develop-eggs/ 24 | downloads/ 25 | eggs/ 26 | fake-eggs/ 27 | parts/ 28 | dist/ 29 | var/ 30 | 31 | 32 | 33 | # OSX 34 | .DS_Store 35 | -------------------------------------------------------------------------------- /Global/Eclipse.gitignore: -------------------------------------------------------------------------------- 1 | *.pydevproject 2 | .project 3 | .metadata 4 | bin/** 5 | tmp/** 6 | tmp/**/* 7 | *.tmp 8 | *.bak 9 | *.swp 10 | *~.nib 11 | local.properties 12 | .classpath 13 | .settings/ 14 | .loadpath 15 | 16 | # External tool builders 17 | .externalToolBuilders/ 18 | 19 | # Locally stored "Eclipse launch configurations" 20 | *.launch 21 | 22 | # CDT-specific 23 | .cproject 24 | 25 | # PDT-specific 26 | .buildpath 27 | -------------------------------------------------------------------------------- /Global/Matlab.gitignore: -------------------------------------------------------------------------------- 1 | ##--------------------------------------------------- 2 | ## Remove autosaves generated by the Matlab editor 3 | ## We have git for backups! 4 | ##--------------------------------------------------- 5 | 6 | # Windows default autosave extension 7 | *.asv 8 | 9 | # OSX / *nix default autosave extension 10 | *.m~ 11 | 12 | # Compiled MEX binaries (all platforms) 13 | *.mex* 14 | 15 | # Simulink Code Generation 16 | slprj/ 17 | -------------------------------------------------------------------------------- /LemonStand.gitignore: -------------------------------------------------------------------------------- 1 | boot.php 2 | index.php 3 | install.php 4 | /config/* 5 | !/config/config.php 6 | /controllers/* 7 | /init/* 8 | /logs/* 9 | /phproad/* 10 | /temp/* 11 | /uploaded/* 12 | /installer_files/* 13 | /modules/backend/* 14 | /modules/blog/* 15 | /modules/cms/* 16 | /modules/core/* 17 | /modules/session/* 18 | /modules/shop/* 19 | /modules/system/* 20 | /modules/users/* 21 | # add content_*.php if you don't want erase client changes to content -------------------------------------------------------------------------------- /Python.gitignore: -------------------------------------------------------------------------------- 1 | *.py[cod] 2 | 3 | # C extensions 4 | *.so 5 | 6 | # Packages 7 | *.egg 8 | *.egg-info 9 | dist 10 | build 11 | eggs 12 | parts 13 | bin 14 | var 15 | sdist 16 | develop-eggs 17 | .installed.cfg 18 | lib 19 | lib64 20 | 21 | # Installer logs 22 | pip-log.txt 23 | 24 | # Unit test / coverage reports 25 | .coverage 26 | .tox 27 | nosetests.xml 28 | 29 | # Translations 30 | *.mo 31 | 32 | # Mr Developer 33 | .mr.developer.cfg 34 | .project 35 | .pydevproject 36 | -------------------------------------------------------------------------------- /Android.gitignore: -------------------------------------------------------------------------------- 1 | # built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # files for the dex VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # generated files 12 | bin/ 13 | gen/ 14 | 15 | # Local configuration file (sdk path, etc) 16 | local.properties 17 | 18 | # Eclipse project files 19 | .classpath 20 | .project 21 | 22 | # Proguard folder generated by Eclipse 23 | proguard/ 24 | 25 | # Intellij project files 26 | *.iml 27 | *.ipr 28 | *.iws 29 | .idea/ 30 | 31 | -------------------------------------------------------------------------------- /Jboss.gitignore: -------------------------------------------------------------------------------- 1 | jboss/server/all/deploy/project.ext 2 | jboss/server/default/deploy/project.ext 3 | jboss/server/minimal/deploy/project.ext 4 | jboss/server/all/log/*.log 5 | jboss/server/all/tmp/**/* 6 | jboss/server/all/data/**/* 7 | jboss/server/all/work/**/* 8 | jboss/server/default/log/*.log 9 | jboss/server/default/tmp/**/* 10 | jboss/server/default/data/**/* 11 | jboss/server/default/work/**/* 12 | jboss/server/minimal/log/*.log 13 | jboss/server/minimal/tmp/**/* 14 | jboss/server/minimal/data/**/* 15 | jboss/server/minimal/work/**/* 16 | -------------------------------------------------------------------------------- /Eagle.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore list for Eagle, a PCB layout tool 2 | 3 | # Backup files 4 | *.s#? 5 | *.b#? 6 | *.l#? 7 | 8 | # Eagle project file 9 | # It contains a serial number and references to the file structure 10 | # on your computer. 11 | # comment the following line if you want to have your project file included. 12 | eagle.epf 13 | 14 | # CAM files 15 | *.$$$ 16 | *.cmp 17 | *.ly2 18 | *.l15 19 | *.sol 20 | *.plc 21 | *.stc 22 | *.sts 23 | *.crc 24 | *.crs 25 | 26 | *.dri 27 | *.drl 28 | *.gpi 29 | *.pls 30 | 31 | *.drd 32 | *.drd.* 33 | 34 | *.info 35 | 36 | *.eps 37 | -------------------------------------------------------------------------------- /Typo3.gitignore: -------------------------------------------------------------------------------- 1 | ## Typo3 2 | # Ignore serveral upload and file directories. 3 | /fileadmin/user_upload/ 4 | /fileadmin/_temp_/ 5 | /uploads/ 6 | # Ignore cache 7 | /typo3conf/temp_CACHED* 8 | /typo3conf/temp_fieldInfo.php 9 | # Ignore local config which overrides typo3 config. 10 | # You should include your local stuff with `@include('localconf_local.php');` at the end of localconf.php. 11 | # See http://stackoverflow.com/questions/11905360/how-best-to-manage-typo3-installations-using-git for details. 12 | /typo3conf/localconf_local.php 13 | # Ignore system folders, you should have them symlinked. 14 | # If not comment out the following two entries. 15 | /typo3/ 16 | /t3lib/ 17 | # Ignore temp directory. 18 | /typo3temp/ 19 | -------------------------------------------------------------------------------- /Grails.gitignore: -------------------------------------------------------------------------------- 1 | # .gitignore for Grails 1.2 and 1.3 2 | 3 | # web application files 4 | /web-app/WEB-INF 5 | 6 | # IDE support files 7 | /.classpath 8 | /.launch 9 | /.project 10 | /.settings 11 | /*.launch 12 | /*.tmproj 13 | /ivy* 14 | /eclipse 15 | 16 | # default HSQL database files for production mode 17 | /prodDb.* 18 | 19 | # general HSQL database files 20 | *Db.properties 21 | *Db.script 22 | 23 | # logs 24 | /stacktrace.log 25 | /test/reports 26 | /logs 27 | 28 | # project release file 29 | /*.war 30 | 31 | # plugin release file 32 | /*.zip 33 | 34 | # older plugin install locations 35 | /plugins 36 | /web-app/plugins 37 | /web-app/WEB-INF/classes 38 | 39 | # "temporary" build files 40 | /target 41 | 42 | # other 43 | *.iws 44 | 45 | -------------------------------------------------------------------------------- /Drupal.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore configuration files that may contain sensitive information. 2 | sites/*/*settings*.php 3 | 4 | # Ignore paths that contain generated content. 5 | cache/ 6 | files/ 7 | sites/*/files 8 | sites/*/private 9 | 10 | # Ignore default text files 11 | .htaccess 12 | robots.txt 13 | /CHANGELOG.txt 14 | /COPYRIGHT.txt 15 | /INSTALL*.txt 16 | /LICENSE.txt 17 | /MAINTAINERS.txt 18 | /UPGRADE.txt 19 | /README.txt 20 | sites/all/README.txt 21 | sites/all/modules/README.txt 22 | sites/all/themes/README.txt 23 | 24 | # Ignore everything but the "sites" folder ( for non core developer ) 25 | web.config 26 | authorize.php 27 | cron.php 28 | index.php 29 | install.php 30 | update.php 31 | xmlrpc.php 32 | /includes 33 | /misc 34 | /modules 35 | /profiles 36 | /scripts 37 | /themes -------------------------------------------------------------------------------- /Global/XilinxISE.gitignore: -------------------------------------------------------------------------------- 1 | # intermediate build files 2 | *.bgn 3 | *.bit 4 | *.bld 5 | *.cmd_log 6 | *.drc 7 | *.ll 8 | *.lso 9 | *.msd 10 | *.msk 11 | *.ncd 12 | *.ngc 13 | *.ngd 14 | *.ngr 15 | *.pad 16 | *.par 17 | *.pcf 18 | *.prj 19 | *.ptwx 20 | *.rbb 21 | *.rbd 22 | *.stx 23 | *.syr 24 | *.twr 25 | *.twx 26 | *.unroutes 27 | *.ut 28 | *.xpi 29 | *.xst 30 | *_bitgen.xwbt 31 | *_envsettings.html 32 | *_map.map 33 | *_map.mrp 34 | *_map.ngm 35 | *_map.xrpt 36 | *_ngdbuild.xrpt 37 | *_pad.csv 38 | *_pad.txt 39 | *_par.xrpt 40 | *_summary.html 41 | *_summary.xml 42 | *_usage.xml 43 | *_xst.xrpt 44 | 45 | # project-wide generated files 46 | *.gise 47 | par_usage_statistics.html 48 | usage_statistics_webtalk.html 49 | webtalk.log 50 | webtalk_pn.xml 51 | 52 | # generated folders 53 | iseconfig/ 54 | xlnx_auto_0_xdb/ 55 | xst/ 56 | _ngo/ 57 | _xmsgs/ 58 | -------------------------------------------------------------------------------- /SugarCRM.gitignore: -------------------------------------------------------------------------------- 1 | ## SugarCRM 2 | # Ignore custom .htaccess stuff. 3 | /.htaccess 4 | # Ignore large parts of the annoying cache directory without breaking things. 5 | cache/csv/* 6 | cache/dashlets/* 7 | cache/diagnostic/* 8 | cache/dynamic_fields/* 9 | cache/feeds/* 10 | cache/import/* 11 | cache/include/* 12 | cache/jsLanguage/* 13 | cache/modules/* 14 | !cache/modules/emails 15 | !cache/modules/Emails 16 | cache/pdf/* 17 | cache/smarty/cache/* 18 | cache/smarty/templates_c/* 19 | cache/themes/* 20 | cache/xml/* 21 | # Ignore some files and directories from the custom directory. 22 | custom/history/* 23 | custom/modulebuilder/* 24 | custom/working/* 25 | custom/modules/*/Ext/ 26 | custom/application/Ext/* 27 | # Custom configuration should also be ignored. 28 | /config.php 29 | /config_override.php 30 | # The silent upgrade scripts aren't needed. 31 | silentUpgrade*.php 32 | # Logs files can safely be ignored. 33 | *.log 34 | -------------------------------------------------------------------------------- /SeamGen.gitignore: -------------------------------------------------------------------------------- 1 | /bootstrap/data 2 | /bootstrap/tmp 3 | /classes/ 4 | /dist/ 5 | /exploded-archives/ 6 | /test-build/ 7 | /test-output/ 8 | /test-report/ 9 | /target/ 10 | temp-testng-customsuite.xml 11 | 12 | # based on http://stackoverflow.com/a/8865858/422476 I am removing inline comments 13 | 14 | #/classes/ all class files 15 | #/dist/ contains generated war files for deployment 16 | #/exploded-archives/ war content generation during deploy (or explode) 17 | #/test-build/ test compilation (ant target for Seam) 18 | #/test-output/ test results 19 | #/test-report/ test report generation for, e.g., Hudson 20 | #/target/ maven output folder 21 | #temp-testng-customsuite.xml generated when running test cases under Eclipse 22 | 23 | # Thanks to @VonC and @kraftan for their helpful answers on a related question 24 | # on StackOverflow.com: 25 | # http://stackoverflow.com/questions/4176687 26 | # /what-is-the-recommended-source-control-ignore-pattern-for-seam-projects 27 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2012 GitHub, Inc. 2 | 3 | Permission is hereby granted, free of charge, to any person obtaining a 4 | copy of this software and associated documentation files (the "Software"), 5 | to deal in the Software without restriction, including without limitation 6 | the rights to use, copy, modify, merge, publish, distribute, sublicense, 7 | and/or sell copies of the Software, and to permit persons to whom the 8 | Software is furnished to do so, subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in 11 | all copies or substantial portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 14 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 15 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 16 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 17 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 18 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 19 | DEALINGS IN THE SOFTWARE. 20 | -------------------------------------------------------------------------------- /Target3001.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore list for Target 3001!, a PCB layout tool 2 | 3 | # mutex file 4 | *.T300[01]OPEN 5 | 6 | # Drill output 7 | *.DRL 8 | *.BHR 9 | BOHRPICT.3001 10 | 11 | # Backup files 12 | # (see http://server.ibfriedrich.com/wiki/ibfwikide/index.php?title=Backup) 13 | BackupFiles 14 | *.BK? 15 | *_w?.T300[01] 16 | *_m?.T300[01] 17 | *_m??.T300[01] 18 | 19 | # Autosave files 20 | *.T300[01]? 21 | 22 | # Gerber output 23 | *.Apr 24 | *.BLN 25 | *.Bot 26 | *.Drill 27 | *.GER 28 | *.Hole 29 | *.Info 30 | *.L* 31 | *.NamesBot 32 | *.NamesTop 33 | *.Outline 34 | *.PadStack* 35 | *.PasteBot 36 | *.PasteTop 37 | *.PosiBot 38 | *.PosiTop 39 | *.SB 40 | *.Special* 41 | *.ST 42 | *.StopBot 43 | *.StopTop 44 | *.Tool 45 | *.Top 46 | *.ValuesBot 47 | *.ValuesTop 48 | *.Whl 49 | 50 | # production formats 51 | *.cnc 52 | *.fab 53 | *.cad 54 | *.GDS 55 | *.exc 56 | excellon.txt 57 | *.stk 58 | *.ncp 59 | *.pcb 60 | *.cbt 61 | *.vhf 62 | *.iso 63 | 64 | # exchange formats 65 | *.DXF 66 | *.PS 67 | *.TIF 68 | *.NET 69 | *.PLT 70 | *.HPGL 71 | *.emn 72 | *.stp 73 | *.tgr 74 | *.dif 75 | *.emp 76 | 77 | # cable loom 78 | *.dsi 79 | *.pnm 80 | *.wrl 81 | *.ADPT 82 | *.AZO 83 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # A Collection of Useful .gitignore Templates 2 | 3 | That's what we're trying to build. Please contribute 4 | by [forking][fk] and sending a [pull request][pr]. 5 | 6 | Also **please** only modify **one file** per commit. This'll 7 | make merging easier for everyone. 8 | 9 | Global gitignores (OS-specific, editor-specific) should go into the 10 | `Global/` directory. 11 | 12 | For more information on gitignore: [gitignore(5)][g5] 13 | 14 | [fk]: http://help.github.com/forking/ 15 | [pr]: http://help.github.com/pull-requests/ 16 | [g5]: http://man.cx/gitignore 17 | 18 | ## Pull Requests 19 | 20 | Since this repo includes a large and diverse 21 | number of programming languages, frameworks, editors, 22 | and ecosystems, it's **very helpful** if you can provide 23 | a link to information supporting your pull request. 24 | Up-to-date, canonical documentation that mentions the files 25 | to be ignored is best. 26 | 27 | This ensures we can efficiently go through pull requests 28 | and keep quality high. 29 | 30 | ## Global Ignores 31 | 32 | git has a global configuration that applies rules to all of 33 | your projects. For example: 34 | 35 | git config --global core.excludesfile ~/.global_ignore 36 | 37 | ... will apply the rules in ~/.global_ignore for all of your repos. 38 | 39 | This is useful if you use an editor (like Emacs) that drops backup files, 40 | or if you work in an environment that generates binary or intermediate 41 | files that are always ignored. 42 | -------------------------------------------------------------------------------- /VB.Net.gitignore: -------------------------------------------------------------------------------- 1 | # Build and Object Folders 2 | bin/ 3 | obj/ 4 | 5 | #User Specific Files 6 | *.user 7 | *.suo 8 | 9 | ## Ignore Visual Studio temporary files, build results, and 10 | ## files generated by popular Visual Studio add-ons. 11 | 12 | # User-specific files 13 | *.suo 14 | *.user 15 | *.sln.docstates 16 | 17 | # Build results 18 | [Dd]ebug/ 19 | [Rr]elease/ 20 | x64/ 21 | *_i.c 22 | *_p.c 23 | *.ilk 24 | *.meta 25 | *.obj 26 | *.pch 27 | *.pdb 28 | *.pgc 29 | *.pgd 30 | *.rsp 31 | *.sbr 32 | *.tlb 33 | *.tli 34 | *.tlh 35 | *.tmp 36 | *.log 37 | *.vspscc 38 | *.vssscc 39 | .builds 40 | 41 | # Visual C++ cache files 42 | ipch/ 43 | *.aps 44 | *.ncb 45 | *.opensdf 46 | *.sdf 47 | 48 | # Visual Studio profiler 49 | *.psess 50 | *.vsp 51 | *.vspx 52 | 53 | # Guidance Automation Toolkit 54 | *.gpState 55 | 56 | # ReSharper is a .NET coding add-in 57 | _ReSharper* 58 | 59 | # NCrunch 60 | *.ncrunch* 61 | .*crunch*.local.xml 62 | 63 | # Installshield output folder 64 | [Ee]xpress 65 | 66 | # DocProject is a documentation generator add-in 67 | DocProject/buildhelp/ 68 | DocProject/Help/*.HxT 69 | DocProject/Help/*.HxC 70 | DocProject/Help/*.hhc 71 | DocProject/Help/*.hhk 72 | DocProject/Help/*.hhp 73 | DocProject/Help/Html2 74 | DocProject/Help/html 75 | 76 | # Click-Once directory 77 | publish 78 | 79 | # Publish Web Output 80 | *.Publish.xml 81 | 82 | # Others 83 | [Bb]in 84 | [Oo]bj 85 | sql 86 | TestResults 87 | [Tt]est[Rr]esult* 88 | *.Cache 89 | ClientBin 90 | [Ss]tyle[Cc]op.* 91 | ~$* 92 | *.dbmdl 93 | Generated_Code #added for RIA/Silverlight projects 94 | 95 | # Backup & report files from converting an old project file to a newer 96 | # Visual Studio version. Backup files are not needed, because we have git ;-) 97 | _UpgradeReport_Files/ 98 | Backup*/ 99 | UpgradeLog*.XML -------------------------------------------------------------------------------- /Global/VisualStudio.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # User-specific files 5 | *.suo 6 | *.user 7 | *.sln.docstates 8 | 9 | # Build results 10 | 11 | [Dd]ebug*/ 12 | [Rr]elease/ 13 | 14 | build/ 15 | 16 | 17 | [Tt]est[Rr]esult 18 | [Bb]uild[Ll]og.* 19 | 20 | *_i.c 21 | *_p.c 22 | *.ilk 23 | *.meta 24 | *.obj 25 | *.pch 26 | *.pdb 27 | *.pgc 28 | *.pgd 29 | *.rsp 30 | *.sbr 31 | *.tlb 32 | *.tli 33 | *.tlh 34 | *.tmp 35 | *.vspscc 36 | *.vssscc 37 | .builds 38 | 39 | *.pidb 40 | 41 | *.log 42 | *.scc 43 | # Visual C++ cache files 44 | ipch/ 45 | *.aps 46 | *.ncb 47 | *.opensdf 48 | *.sdf 49 | 50 | # Visual Studio profiler 51 | *.psess 52 | *.vsp 53 | 54 | # Guidance Automation Toolkit 55 | *.gpState 56 | 57 | # ReSharper is a .NET coding add-in 58 | _ReSharper*/ 59 | 60 | *.[Rr]e[Ss]harper 61 | 62 | # NCrunch 63 | *.ncrunch* 64 | .*crunch*.local.xml 65 | 66 | # Installshield output folder 67 | [Ee]xpress 68 | 69 | # DocProject is a documentation generator add-in 70 | DocProject/buildhelp/ 71 | DocProject/Help/*.HxT 72 | DocProject/Help/*.HxC 73 | DocProject/Help/*.hhc 74 | DocProject/Help/*.hhk 75 | DocProject/Help/*.hhp 76 | DocProject/Help/Html2 77 | DocProject/Help/html 78 | 79 | # Click-Once directory 80 | publish 81 | 82 | # Publish Web Output 83 | *.Publish.xml 84 | 85 | # Others 86 | [Bb]in 87 | [Oo]bj 88 | sql 89 | TestResults 90 | [Tt]est[Rr]esult* 91 | *.Cache 92 | ClientBin 93 | [Ss]tyle[Cc]op.* 94 | ~$* 95 | *.dbmdl 96 | 97 | *.[Pp]ublish.xml 98 | 99 | Generated_Code #added for RIA/Silverlight projects 100 | 101 | # Backup & report files from converting an old project file to a newer 102 | # Visual Studio version. Backup files are not needed, because we have git ;-) 103 | _UpgradeReport_Files/ 104 | Backup*/ 105 | UpgradeLog*.XML 106 | 107 | # NuGet 108 | packages/ 109 | -------------------------------------------------------------------------------- /Global/Quartus2.gitignore: -------------------------------------------------------------------------------- 1 | # Working with Altera Quartus II (Q2) and do proper versioning is not that easy 2 | # but if you follow some rules it can be accomplished. :) 3 | # This file should be placed into the main directory where the .qpf file is 4 | # found. Generally Q2 throws all entities and so on in the main directory, but 5 | # you can place all stuff also in separate folders. This approach is followed 6 | # here. So when you create a new design create one or more folders where your 7 | # entities will be located and put a .gitignore in there that overrides the 8 | # ignores of this file, e.g. one single rule stating "!*" which allows now all 9 | # type of files. When you add a MegaFunction or another entity to your design, 10 | # simply add it to one of your private folders and Q2 will be happy and manage 11 | # everything quite good. When you want to do versioning of your generated 12 | # SOF/POF files, you can do this by redirecting the generated output to an own 13 | # folder. To do this go to: 14 | # "Assignments" 15 | # -> "Settings 16 | # -> "Compilation Process Settings" 17 | # -> "Save project output files in specified directory" 18 | # Now you can either place a .gitignore in the directory and allow the following 19 | # list of types: 20 | # !*.sof 21 | # !*.pof 22 | # or you create an own submodule in the folder to keep binary files out of your 23 | # design. 24 | 25 | # ignore hdl source files in top level directory 26 | *.vhd 27 | *.v 28 | 29 | # ignore Quartus II generated files 30 | *sopc_* 31 | *.jdi 32 | *.ptf.* 33 | *.sof 34 | *.pof 35 | *.qws 36 | *.smsg 37 | *_inst.vhd 38 | *_generation_script* 39 | *.done 40 | *.txt 41 | *.qarlog 42 | *.rpt 43 | *.summary 44 | *.qws 45 | *.cmp 46 | *.eqn 47 | *.html 48 | *.jpg 49 | *.bak 50 | *.qar 51 | *.sopc_builder 52 | *example* 53 | *~ 54 | *.sdc 55 | *.tcl 56 | *.pin 57 | *.mif 58 | *.hex 59 | 60 | # ignore Quartus II generated folders 61 | db/ 62 | incremental_db/ 63 | simulation/ 64 | timing/ 65 | testbench/ 66 | *_sim/ 67 | -------------------------------------------------------------------------------- /CSharp.gitignore: -------------------------------------------------------------------------------- 1 | # Build Folders (you can keep bin if you'd like, to store dlls and pdbs) 2 | [Bb]in/ 3 | [Oo]bj/ 4 | 5 | # mstest test results 6 | TestResults 7 | 8 | ## Ignore Visual Studio temporary files, build results, and 9 | ## files generated by popular Visual Studio add-ons. 10 | 11 | # User-specific files 12 | *.suo 13 | *.user 14 | *.sln.docstates 15 | 16 | # Build results 17 | [Dd]ebug/ 18 | [Rr]elease/ 19 | x64/ 20 | *_i.c 21 | *_p.c 22 | *.ilk 23 | *.meta 24 | *.obj 25 | *.pch 26 | *.pdb 27 | *.pgc 28 | *.pgd 29 | *.rsp 30 | *.sbr 31 | *.tlb 32 | *.tli 33 | *.tlh 34 | *.tmp 35 | *.log 36 | *.vspscc 37 | *.vssscc 38 | .builds 39 | 40 | # Visual C++ cache files 41 | ipch/ 42 | *.aps 43 | *.ncb 44 | *.opensdf 45 | *.sdf 46 | 47 | # Visual Studio profiler 48 | *.psess 49 | *.vsp 50 | *.vspx 51 | 52 | # Guidance Automation Toolkit 53 | *.gpState 54 | 55 | # ReSharper is a .NET coding add-in 56 | _ReSharper* 57 | 58 | # Mindbench SASS cache 59 | .sass-cache/ 60 | 61 | # NCrunch 62 | *.ncrunch* 63 | .*crunch*.local.xml 64 | 65 | # Installshield output folder 66 | [Ee]xpress 67 | 68 | # DocProject is a documentation generator add-in 69 | DocProject/buildhelp/ 70 | DocProject/Help/*.HxT 71 | DocProject/Help/*.HxC 72 | DocProject/Help/*.hhc 73 | DocProject/Help/*.hhk 74 | DocProject/Help/*.hhp 75 | DocProject/Help/Html2 76 | DocProject/Help/html 77 | 78 | # Click-Once directory 79 | publish 80 | 81 | # Publish Web Output 82 | *.Publish.xml 83 | 84 | # NuGet Packages Directory 85 | packages 86 | 87 | # Windows Azure Build Output 88 | csx 89 | *.build.csdef 90 | 91 | # Windows Store app package directory 92 | AppPackages/ 93 | 94 | # Others 95 | sql 96 | TestResults 97 | [Tt]est[Rr]esult* 98 | *.Cache 99 | ClientBin 100 | [Ss]tyle[Cc]op.* 101 | ~$* 102 | *.dbmdl 103 | Generated_Code #added for RIA/Silverlight projects 104 | 105 | # Backup & report files from converting an old project file to a newer 106 | # Visual Studio version. Backup files are not needed, because we have git ;-) 107 | _UpgradeReport_Files/ 108 | Backup*/ 109 | UpgradeLog*.XML 110 | 111 | # SQL Server files 112 | App_Data/*.mdf 113 | App_Data/*.ldf 114 | -------------------------------------------------------------------------------- /Magento.gitignore: -------------------------------------------------------------------------------- 1 | .modgit/ 2 | app/code/community/Find/ 3 | app/code/community/Phoenix/ 4 | app/code/core/ 5 | app/design/adminhtml/default/default/ 6 | app/design/adminhtml/default/find/ 7 | app/design/frontend/base/ 8 | app/design/frontend/default/blank/ 9 | app/design/frontend/default/default/ 10 | app/design/frontend/default/iphone/ 11 | app/design/frontend/default/modern/ 12 | app/design/frontend/enterprise/default 13 | app/design/install/ 14 | app/etc/modules/Enterprise_* 15 | app/etc/modules/Find_Feed.xml 16 | app/etc/modules/Mage_All.xml 17 | app/etc/modules/Mage_Api.xml 18 | app/etc/modules/Mage_Authorizenet.xml 19 | app/etc/modules/Mage_Bundle.xml 20 | app/etc/modules/Mage_Centinel.xml 21 | app/etc/modules/Mage_Compiler.xml 22 | app/etc/modules/Mage_Connect.xml 23 | app/etc/modules/Mage_Downloadable.xml 24 | app/etc/modules/Mage_ImportExport.xml 25 | app/etc/modules/Mage_LoadTest.xml 26 | app/etc/modules/Mage_PageCache.xml 27 | app/etc/modules/Mage_Persistent.xml 28 | app/etc/modules/Mage_Weee.xml 29 | app/etc/modules/Mage_Widget.xml 30 | app/etc/modules/Mage_XmlConnect.xml 31 | app/etc/modules/Phoenix_Moneybookers.xml 32 | app/etc/config.xml 33 | app/etc/enterprise.xml 34 | app/etc/local.xml.additional 35 | app/etc/local.xml.template 36 | app/.htaccess 37 | app/locale/ 38 | app/Mage.php 39 | cron.php 40 | cron.sh 41 | downloader/ 42 | errors/ 43 | favicon.ico 44 | get.php 45 | includes/ 46 | index.php 47 | index.php.sample 48 | install.php 49 | js/blank.html 50 | js/calendar/ 51 | js/enterprise/ 52 | js/extjs/ 53 | js/firebug/ 54 | js/flash/ 55 | js/index.php 56 | js/jscolor/ 57 | js/lib/ 58 | js/mage/ 59 | js/prototype/ 60 | js/scriptaculous/ 61 | js/spacer.gif 62 | js/tiny_mce/ 63 | js/varien/ 64 | lib/3Dsecure/ 65 | lib/Apache/ 66 | lib/flex/ 67 | lib/googlecheckout/ 68 | lib/.htaccess 69 | lib/LinLibertineFont/ 70 | lib/Mage/ 71 | lib/PEAR/ 72 | lib/phpseclib/ 73 | lib/Varien/ 74 | lib/Zend/ 75 | LICENSE_AFL.txt 76 | LICENSE.html 77 | LICENSE.txt 78 | LICENSE_EE* 79 | mage 80 | media/customer/ 81 | media/downloadable/ 82 | media/.htaccess 83 | media/import/ 84 | media/xmlconnect/ 85 | nbproject/ 86 | pear 87 | pear/ 88 | php.ini.sample 89 | pkginfo/ 90 | RELEASE_NOTES.txt 91 | shell/abstract.php 92 | shell/compiler.php 93 | shell/indexer.php 94 | shell/log.php 95 | skin/adminhtml/default/default/ 96 | skin/adminhtml/default/enterprise 97 | skin/frontend/base/ 98 | skin/frontend/default/blank/ 99 | skin/frontend/default/blue/ 100 | skin/frontend/default/default/ 101 | skin/frontend/default/french/ 102 | skin/frontend/default/german/ 103 | skin/frontend/default/iphone/ 104 | skin/frontend/default/modern/ 105 | skin/frontend/enterprise 106 | skin/install/ 107 | var/ 108 | -------------------------------------------------------------------------------- /Joomla.gitignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | .htaccess 3 | administrator/cache/* 4 | administrator/components/com_admin/* 5 | administrator/components/com_banners/* 6 | administrator/components/com_cache/* 7 | administrator/components/com_categories/* 8 | administrator/components/com_checkin/* 9 | administrator/components/com_config/* 10 | administrator/components/com_contact/* 11 | administrator/components/com_content/* 12 | administrator/components/com_cpanel/* 13 | administrator/components/com_installer/* 14 | administrator/components/com_languages/* 15 | administrator/components/com_login/* 16 | administrator/components/com_media/* 17 | administrator/components/com_menus/* 18 | administrator/components/com_messages/* 19 | administrator/components/com_modules/* 20 | administrator/components/com_newsfeeds/* 21 | administrator/components/com_plugins/* 22 | administrator/components/com_redirect/* 23 | administrator/components/com_search/* 24 | administrator/components/com_templates/* 25 | administrator/components/com_users/* 26 | administrator/components/com_weblinks/* 27 | administrator/components/index.html 28 | administrator/help/* 29 | administrator/includes/* 30 | administrator/language/en-GB/ 31 | administrator/language/en-GB/en-GB.com_admin.ini 32 | administrator/language/en-GB/en-GB.com_admin.sys.ini 33 | administrator/language/en-GB/en-GB.com_banners.ini 34 | administrator/language/en-GB/en-GB.com_banners.sys.ini 35 | administrator/language/en-GB/en-GB.com_cache.ini 36 | administrator/language/en-GB/en-GB.com_cache.sys.ini 37 | administrator/language/en-GB/en-GB.com_categories.ini 38 | administrator/language/en-GB/en-GB.com_categories.sys.ini 39 | administrator/language/en-GB/en-GB.com_checkin.ini 40 | administrator/language/en-GB/en-GB.com_checkin.sys.ini 41 | administrator/language/en-GB/en-GB.com_config.ini 42 | administrator/language/en-GB/en-GB.com_config.sys.ini 43 | administrator/language/en-GB/en-GB.com_contact.ini 44 | administrator/language/en-GB/en-GB.com_contact.sys.ini 45 | administrator/language/en-GB/en-GB.com_content.ini 46 | administrator/language/en-GB/en-GB.com_content.sys.ini 47 | administrator/language/en-GB/en-GB.com_cpanel.ini 48 | administrator/language/en-GB/en-GB.com_cpanel.sys.ini 49 | administrator/language/en-GB/en-GB.com_installer.ini 50 | administrator/language/en-GB/en-GB.com_installer.sys.ini 51 | administrator/language/en-GB/en-GB.com_languages.ini 52 | administrator/language/en-GB/en-GB.com_languages.sys.ini 53 | administrator/language/en-GB/en-GB.com_login.ini 54 | administrator/language/en-GB/en-GB.com_login.sys.ini 55 | administrator/language/en-GB/en-GB.com_mailto.sys.ini 56 | administrator/language/en-GB/en-GB.com_media.ini 57 | administrator/language/en-GB/en-GB.com_media.sys.ini 58 | administrator/language/en-GB/en-GB.com_menus.ini 59 | administrator/language/en-GB/en-GB.com_menus.sys.ini 60 | administrator/language/en-GB/en-GB.com_messages.ini 61 | administrator/language/en-GB/en-GB.com_messages.sys.ini 62 | administrator/language/en-GB/en-GB.com_modules.ini 63 | administrator/language/en-GB/en-GB.com_modules.sys.ini 64 | administrator/language/en-GB/en-GB.com_newsfeeds.ini 65 | administrator/language/en-GB/en-GB.com_newsfeeds.sys.ini 66 | administrator/language/en-GB/en-GB.com_plugins.ini 67 | administrator/language/en-GB/en-GB.com_plugins.sys.ini 68 | administrator/language/en-GB/en-GB.com_redirect.ini 69 | administrator/language/en-GB/en-GB.com_redirect.sys.ini 70 | administrator/language/en-GB/en-GB.com_search.ini 71 | administrator/language/en-GB/en-GB.com_search.sys.ini 72 | administrator/language/en-GB/en-GB.com_templates.ini 73 | administrator/language/en-GB/en-GB.com_templates.sys.ini 74 | administrator/language/en-GB/en-GB.com_users.ini 75 | administrator/language/en-GB/en-GB.com_users.sys.ini 76 | administrator/language/en-GB/en-GB.com_weblinks.ini 77 | administrator/language/en-GB/en-GB.com_weblinks.sys.ini 78 | administrator/language/en-GB/en-GB.com_wrapper.ini 79 | administrator/language/en-GB/en-GB.com_wrapper.sys.ini 80 | administrator/language/en-GB/en-GB.ini 81 | administrator/language/en-GB/en-GB.lib_joomla.ini 82 | administrator/language/en-GB/en-GB.localise.php 83 | administrator/language/en-GB/en-GB.mod_custom.ini 84 | administrator/language/en-GB/en-GB.mod_custom.sys.ini 85 | administrator/language/en-GB/en-GB.mod_feed.ini 86 | administrator/language/en-GB/en-GB.mod_feed.sys.ini 87 | administrator/language/en-GB/en-GB.mod_latest.ini 88 | administrator/language/en-GB/en-GB.mod_latest.sys.ini 89 | administrator/language/en-GB/en-GB.mod_logged.ini 90 | administrator/language/en-GB/en-GB.mod_logged.sys.ini 91 | administrator/language/en-GB/en-GB.mod_login.ini 92 | administrator/language/en-GB/en-GB.mod_login.sys.ini 93 | administrator/language/en-GB/en-GB.mod_menu.ini 94 | administrator/language/en-GB/en-GB.mod_menu.sys.ini 95 | administrator/language/en-GB/en-GB.mod_online.ini 96 | administrator/language/en-GB/en-GB.mod_online.sys.ini 97 | administrator/language/en-GB/en-GB.mod_popular.ini 98 | administrator/language/en-GB/en-GB.mod_popular.sys.ini 99 | administrator/language/en-GB/en-GB.mod_quickicon.ini 100 | administrator/language/en-GB/en-GB.mod_quickicon.sys.ini 101 | administrator/language/en-GB/en-GB.mod_status.ini 102 | administrator/language/en-GB/en-GB.mod_status.sys.ini 103 | administrator/language/en-GB/en-GB.mod_submenu.ini 104 | administrator/language/en-GB/en-GB.mod_submenu.sys.ini 105 | administrator/language/en-GB/en-GB.mod_title.ini 106 | administrator/language/en-GB/en-GB.mod_title.sys.ini 107 | administrator/language/en-GB/en-GB.mod_toolbar.ini 108 | administrator/language/en-GB/en-GB.mod_toolbar.sys.ini 109 | administrator/language/en-GB/en-GB.mod_unread.ini 110 | administrator/language/en-GB/en-GB.mod_unread.sys.ini 111 | administrator/language/en-GB/en-GB.plg_authentication_example.ini 112 | administrator/language/en-GB/en-GB.plg_authentication_example.sys.ini 113 | administrator/language/en-GB/en-GB.plg_authentication_gmail.ini 114 | administrator/language/en-GB/en-GB.plg_authentication_gmail.sys.ini 115 | administrator/language/en-GB/en-GB.plg_authentication_joomla.ini 116 | administrator/language/en-GB/en-GB.plg_authentication_joomla.sys.ini 117 | administrator/language/en-GB/en-GB.plg_authentication_ldap.ini 118 | administrator/language/en-GB/en-GB.plg_authentication_ldap.sys.ini 119 | administrator/language/en-GB/en-GB.plg_content_emailcloak.ini 120 | administrator/language/en-GB/en-GB.plg_content_emailcloak.sys.ini 121 | administrator/language/en-GB/en-GB.plg_content_geshi.ini 122 | administrator/language/en-GB/en-GB.plg_content_geshi.sys.ini 123 | administrator/language/en-GB/en-GB.plg_content_joomla.ini 124 | administrator/language/en-GB/en-GB.plg_content_joomla.sys.ini 125 | administrator/language/en-GB/en-GB.plg_content_loadmodule.ini 126 | administrator/language/en-GB/en-GB.plg_content_loadmodule.sys.ini 127 | administrator/language/en-GB/en-GB.plg_content_pagebreak.ini 128 | administrator/language/en-GB/en-GB.plg_content_pagebreak.sys.ini 129 | administrator/language/en-GB/en-GB.plg_content_pagenavigation.ini 130 | administrator/language/en-GB/en-GB.plg_content_pagenavigation.sys.ini 131 | administrator/language/en-GB/en-GB.plg_content_vote.ini 132 | administrator/language/en-GB/en-GB.plg_content_vote.sys.ini 133 | administrator/language/en-GB/en-GB.plg_editors_codemirror.ini 134 | administrator/language/en-GB/en-GB.plg_editors_codemirror.sys.ini 135 | administrator/language/en-GB/en-GB.plg_editors_none.ini 136 | administrator/language/en-GB/en-GB.plg_editors_none.sys.ini 137 | administrator/language/en-GB/en-GB.plg_editors_tinymce.ini 138 | administrator/language/en-GB/en-GB.plg_editors_tinymce.sys.ini 139 | administrator/language/en-GB/en-GB.plg_editors-xtd_article.ini 140 | administrator/language/en-GB/en-GB.plg_editors-xtd_article.sys.ini 141 | administrator/language/en-GB/en-GB.plg_editors-xtd_image.ini 142 | administrator/language/en-GB/en-GB.plg_editors-xtd_image.sys.ini 143 | administrator/language/en-GB/en-GB.plg_editors-xtd_pagebreak.ini 144 | administrator/language/en-GB/en-GB.plg_editors-xtd_pagebreak.sys.ini 145 | administrator/language/en-GB/en-GB.plg_editors-xtd_readmore.ini 146 | administrator/language/en-GB/en-GB.plg_editors-xtd_readmore.sys.ini 147 | administrator/language/en-GB/en-GB.plg_extension_joomla.ini 148 | administrator/language/en-GB/en-GB.plg_extension_joomla.sys.ini 149 | administrator/language/en-GB/en-GB.plg_search_categories.ini 150 | administrator/language/en-GB/en-GB.plg_search_categories.sys.ini 151 | administrator/language/en-GB/en-GB.plg_search_contacts.ini 152 | administrator/language/en-GB/en-GB.plg_search_contacts.sys.ini 153 | administrator/language/en-GB/en-GB.plg_search_content.ini 154 | administrator/language/en-GB/en-GB.plg_search_content.sys.ini 155 | administrator/language/en-GB/en-GB.plg_search_newsfeeds.ini 156 | administrator/language/en-GB/en-GB.plg_search_newsfeeds.sys.ini 157 | administrator/language/en-GB/en-GB.plg_search_weblinks.ini 158 | administrator/language/en-GB/en-GB.plg_search_weblinks.sys.ini 159 | administrator/language/en-GB/en-GB.plg_system_cache.ini 160 | administrator/language/en-GB/en-GB.plg_system_cache.sys.ini 161 | administrator/language/en-GB/en-GB.plg_system_debug.ini 162 | administrator/language/en-GB/en-GB.plg_system_debug.sys.ini 163 | administrator/language/en-GB/en-GB.plg_system_languagefilter.ini 164 | administrator/language/en-GB/en-GB.plg_system_languagefilter.sys.ini 165 | administrator/language/en-GB/en-GB.plg_system_log.ini 166 | administrator/language/en-GB/en-GB.plg_system_logout.ini 167 | administrator/language/en-GB/en-GB.plg_system_logout.sys.ini 168 | administrator/language/en-GB/en-GB.plg_system_log.sys.ini 169 | administrator/language/en-GB/en-GB.plg_system_p3p.ini 170 | administrator/language/en-GB/en-GB.plg_system_p3p.sys.ini 171 | administrator/language/en-GB/en-GB.plg_system_redirect.ini 172 | administrator/language/en-GB/en-GB.plg_system_redirect.sys.ini 173 | administrator/language/en-GB/en-GB.plg_system_remember.ini 174 | administrator/language/en-GB/en-GB.plg_system_remember.sys.ini 175 | administrator/language/en-GB/en-GB.plg_system_sef.ini 176 | administrator/language/en-GB/en-GB.plg_system_sef.sys.ini 177 | administrator/language/en-GB/en-GB.plg_user_contactcreator.ini 178 | administrator/language/en-GB/en-GB.plg_user_contactcreator.sys.ini 179 | administrator/language/en-GB/en-GB.plg_user_joomla.ini 180 | administrator/language/en-GB/en-GB.plg_user_joomla.sys.ini 181 | administrator/language/en-GB/en-GB.plg_user_profile.ini 182 | administrator/language/en-GB/en-GB.plg_user_profile.sys.ini 183 | administrator/language/en-GB/en-GB.tpl_bluestork.ini 184 | administrator/language/en-GB/en-GB.tpl_bluestork.sys.ini 185 | administrator/language/en-GB/en-GB.tpl_hathor.ini 186 | administrator/language/en-GB/en-GB.tpl_hathor.sys.ini 187 | administrator/language/en-GB/en-GB.xml 188 | administrator/language/en-GB/index.html 189 | administrator/language/overrides/* 190 | administrator/language/index.html 191 | administrator/manifests/* 192 | administrator/modules/mod_custom/* 193 | administrator/modules/mod_feed/* 194 | administrator/modules/mod_latest/* 195 | administrator/modules/mod_logged/* 196 | administrator/modules/mod_login/* 197 | administrator/modules/mod_menu/* 198 | administrator/modules/mod_online/* 199 | administrator/modules/mod_popular/* 200 | administrator/modules/mod_quickicon/* 201 | administrator/modules/mod_status/* 202 | administrator/modules/mod_submenu/* 203 | administrator/modules/mod_title/* 204 | administrator/modules/mod_toolbar/* 205 | administrator/modules/mod_unread/* 206 | administrator/modules/index.html 207 | administrator/templates/bluestork/* 208 | administrator/templates/hathor/* 209 | administrator/templates/system/* 210 | administrator/templates/index.html 211 | administrator/index.php 212 | cache/* 213 | components/com_banners/* 214 | components/com_contact/* 215 | components/com_content/* 216 | components/com_mailto/* 217 | components/com_media/* 218 | components/com_newsfeeds/* 219 | components/com_search/* 220 | components/com_users/* 221 | components/com_weblinks/* 222 | components/com_wrapper/* 223 | components/index.html 224 | images/banners/* 225 | images/sampledata/* 226 | images/joomla* 227 | images/index.html 228 | images/powered_by.png 229 | includes/* 230 | installation/* 231 | language/en-GB/en-GB.com_contact.ini 232 | language/en-GB/en-GB.com_content.ini 233 | language/en-GB/en-GB.com_mailto.ini 234 | language/en-GB/en-GB.com_media.ini 235 | language/en-GB/en-GB.com_messages.ini 236 | language/en-GB/en-GB.com_newsfeeds.ini 237 | language/en-GB/en-GB.com_search.ini 238 | language/en-GB/en-GB.com_users.ini 239 | language/en-GB/en-GB.com_weblinks.ini 240 | language/en-GB/en-GB.com_wrapper.ini 241 | language/en-GB/en-GB.files_joomla.sys.ini 242 | language/en-GB/en-GB.ini 243 | language/en-GB/en-GB.lib_joomla.ini 244 | language/en-GB/en-GB.localise.php 245 | language/en-GB/en-GB.mod_articles_archive.ini 246 | language/en-GB/en-GB.mod_articles_archive.sys.ini 247 | language/en-GB/en-GB.mod_articles_categories.ini 248 | language/en-GB/en-GB.mod_articles_categories.sys.ini 249 | language/en-GB/en-GB.mod_articles_category.ini 250 | language/en-GB/en-GB.mod_articles_category.sys.ini 251 | language/en-GB/en-GB.mod_articles_latest.ini 252 | language/en-GB/en-GB.mod_articles_latest.sys.ini 253 | language/en-GB/en-GB.mod_articles_news.ini 254 | language/en-GB/en-GB.mod_articles_news.sys.ini 255 | language/en-GB/en-GB.mod_articles_popular.ini 256 | language/en-GB/en-GB.mod_articles_popular.sys.ini 257 | language/en-GB/en-GB.mod_banners.ini 258 | language/en-GB/en-GB.mod_banners.sys.ini 259 | language/en-GB/en-GB.mod_breadcrumbs.ini 260 | language/en-GB/en-GB.mod_breadcrumbs.sys.ini 261 | language/en-GB/en-GB.mod_custom.ini 262 | language/en-GB/en-GB.mod_custom.sys.ini 263 | language/en-GB/en-GB.mod_feed.ini 264 | language/en-GB/en-GB.mod_feed.sys.ini 265 | language/en-GB/en-GB.mod_footer.ini 266 | language/en-GB/en-GB.mod_footer.sys.ini 267 | language/en-GB/en-GB.mod_languages.ini 268 | language/en-GB/en-GB.mod_languages.sys.ini 269 | language/en-GB/en-GB.mod_login.ini 270 | language/en-GB/en-GB.mod_login.sys.ini 271 | language/en-GB/en-GB.mod_menu.ini 272 | language/en-GB/en-GB.mod_menu.sys.ini 273 | language/en-GB/en-GB.mod_random_image.ini 274 | language/en-GB/en-GB.mod_random_image.sys.ini 275 | language/en-GB/en-GB.mod_related_items.ini 276 | language/en-GB/en-GB.mod_related_items.sys.ini 277 | language/en-GB/en-GB.mod_search.ini 278 | language/en-GB/en-GB.mod_search.sys.ini 279 | language/en-GB/en-GB.mod_stats.ini 280 | language/en-GB/en-GB.mod_stats.sys.ini 281 | language/en-GB/en-GB.mod_syndicate.ini 282 | language/en-GB/en-GB.mod_syndicate.sys.ini 283 | language/en-GB/en-GB.mod_users_latest.ini 284 | language/en-GB/en-GB.mod_users_latest.sys.ini 285 | language/en-GB/en-GB.mod_weblinks.ini 286 | language/en-GB/en-GB.mod_weblinks.sys.ini 287 | language/en-GB/en-GB.mod_whosonline.ini 288 | language/en-GB/en-GB.mod_whosonline.sys.ini 289 | language/en-GB/en-GB.mod_wrapper.ini 290 | language/en-GB/en-GB.mod_wrapper.sys.ini 291 | language/en-GB/en-GB.tpl_atomic.ini 292 | language/en-GB/en-GB.tpl_atomic.sys.ini 293 | language/en-GB/en-GB.tpl_beez_20.ini 294 | language/en-GB/en-GB.tpl_beez_20.sys.ini 295 | language/en-GB/en-GB.tpl_beez5.ini 296 | language/en-GB/en-GB.tpl_beez5.sys.ini 297 | language/en-GB/en-GB.xml 298 | language/en-GB/index.html 299 | language/overrides/* 300 | language/index.html 301 | libraries/joomla/* 302 | libraries/phpmailer/* 303 | libraries/phputf8/* 304 | libraries/simplepie/* 305 | libraries/index.html 306 | libraries/loader.php 307 | logs/* 308 | media/contacts/* 309 | media/editors/* 310 | media/mailto/* 311 | media/media/* 312 | media/mod_languages/* 313 | media/system/* 314 | media/index.html 315 | modules/mod_articles_archive/* 316 | modules/mod_articles_categories/* 317 | modules/mod_articles_category/* 318 | modules/mod_articles_latest/* 319 | modules/mod_articles_news/* 320 | modules/mod_articles_popular/* 321 | modules/mod_banners/* 322 | modules/mod_breadcrumbs/* 323 | modules/mod_custom/* 324 | modules/mod_feed/* 325 | modules/mod_footer/* 326 | modules/mod_languages/* 327 | modules/mod_login/* 328 | modules/mod_menu/* 329 | modules/mod_random_image/* 330 | modules/mod_related_items/* 331 | modules/mod_search/* 332 | modules/mod_stats/* 333 | modules/mod_syndicate/* 334 | modules/mod_users_latest/* 335 | modules/mod_weblinks/* 336 | modules/mod_whosonline/* 337 | modules/mod_wrapper/* 338 | modules/index.html 339 | plugins/authentication/example/* 340 | plugins/authentication/gmail/* 341 | plugins/authentication/joomla/* 342 | plugins/authentication/ldap/* 343 | plugins/authentication/index.html 344 | plugins/content/emailcloak/* 345 | plugins/content/example/* 346 | plugins/content/geshi/* 347 | plugins/content/joomla/* 348 | plugins/content/loadmodule/* 349 | plugins/content/pagebreak/* 350 | plugins/content/pagenavigation/* 351 | plugins/content/vote/* 352 | plugins/content/index.html 353 | plugins/editors/codemirror/* 354 | plugins/editors/none/* 355 | plugins/editors/tinymce/* 356 | plugins/editors/index.html 357 | plugins/editors-xtd/article/* 358 | plugins/editors-xtd/image/* 359 | plugins/editors-xtd/pagebreak/* 360 | plugins/editors-xtd/readmore/* 361 | plugins/editors-xtd/index.html 362 | plugins/extension/example/* 363 | plugins/extension/joomla/* 364 | plugins/extension/index.html 365 | plugins/search/categories/* 366 | plugins/search/contacts/* 367 | plugins/search/content/* 368 | plugins/search/newsfeeds/* 369 | plugins/search/weblinks/* 370 | plugins/search/index.html 371 | plugins/system/cache/* 372 | plugins/system/debug/* 373 | plugins/system/languagefilter/* 374 | plugins/system/log/* 375 | plugins/system/logout/* 376 | plugins/system/p3p/* 377 | plugins/system/redirect/* 378 | plugins/system/remember/* 379 | plugins/system/sef/* 380 | plugins/system/index.html 381 | plugins/user/contactcreator/* 382 | plugins/user/example/* 383 | plugins/user/joomla/* 384 | plugins/user/profile/* 385 | plugins/user/index.html 386 | plugins/index.html 387 | templates/atomic/* 388 | templates/beez_20/* 389 | templates/beez5/* 390 | templates/system/* 391 | templates/index.html 392 | tmp/* 393 | configuration.php 394 | index.php 395 | joomla.xml 396 | *.txt --------------------------------------------------------------------------------