├── lib ├── gitignore │ ├── Agda.gitignore │ ├── Nim.gitignore │ ├── SketchUp.gitignore │ ├── Fortran.gitignore │ ├── Idris.gitignore │ ├── Clojure.gitignore │ ├── Fancy.gitignore │ ├── Jython.gitignore │ ├── Coq.gitignore │ ├── Jekyll.gitignore │ ├── Sass.gitignore │ ├── Lithium.gitignore │ ├── Phalcon.gitignore │ ├── CommonLisp.gitignore │ ├── Meteor.gitignore │ ├── DM.gitignore │ ├── FuelPHP.gitignore │ ├── Kohana.gitignore │ ├── Elixir.gitignore │ ├── ExtJs.gitignore │ ├── Concrete5.gitignore │ ├── Elisp.gitignore │ ├── Laravel.gitignore │ ├── Lilypond.gitignore │ ├── Ada.gitignore │ ├── AppEngine.gitignore │ ├── AppceleratorTitanium.gitignore │ ├── ForceDotCom.gitignore │ ├── Gcov.gitignore │ ├── Packer.gitignore │ ├── Yeoman.gitignore │ ├── Qooxdoo.gitignore │ ├── VVVV.gitignore │ ├── Sdcc.gitignore │ ├── CMake.gitignore │ ├── SCons.gitignore │ ├── Waf.gitignore │ ├── EPiServer.gitignore │ ├── Maven.gitignore │ ├── SymphonyCMS.gitignore │ ├── ChefCookbook.gitignore │ ├── CraftCMS.gitignore │ ├── RhodesRhomobile.gitignore │ ├── CodeIgniter.gitignore │ ├── OracleForms.gitignore │ ├── IGORPro.gitignore │ ├── Mercury.gitignore │ ├── Yii.gitignore │ ├── Erlang.gitignore │ ├── Rust.gitignore │ ├── Opa.gitignore │ ├── Processing.gitignore │ ├── ArchLinuxPackages.gitignore │ ├── OpenCart.gitignore │ ├── Scrivener.gitignore │ ├── Gradle.gitignore │ ├── CakePHP.gitignore │ ├── Leiningen.gitignore │ ├── Xojo.gitignore │ ├── LabVIEW.gitignore │ ├── Plone.gitignore │ ├── Haskell.gitignore │ ├── R.gitignore │ ├── Textpattern.gitignore │ ├── Java.gitignore │ ├── Nanoc.gitignore │ ├── Finale.gitignore │ ├── Autotools.gitignore │ ├── PlayFramework.gitignore │ ├── CFWheels.gitignore │ ├── Stella.gitignore │ ├── Scala.gitignore │ ├── Composer.gitignore │ ├── OCaml.gitignore │ ├── Perl.gitignore │ ├── Dart.gitignore │ ├── Windows.gitignore │ ├── TurboGears2.gitignore │ ├── WordPress.gitignore │ ├── ZendFramework.gitignore │ ├── Actionscript.gitignore │ ├── C.gitignore │ ├── Unity.gitignore │ ├── OSX.gitignore │ ├── C++.gitignore │ ├── Go.gitignore │ ├── Android.gitignore │ ├── GitBook.gitignore │ ├── ExpressionEngine.gitignore │ ├── LemonStand.gitignore │ ├── Qt.gitignore │ ├── MetaProgrammingSystem.gitignore │ ├── Zephir.gitignore │ ├── Lua.gitignore │ ├── GWT.gitignore │ ├── Eagle.gitignore │ ├── Jboss.gitignore │ ├── Umbraco.gitignore │ ├── Default.gitignore │ ├── Objective-C.gitignore │ ├── Node.gitignore │ ├── Prestashop.gitignore │ ├── Symfony.gitignore │ ├── ROS.gitignore │ ├── Typo3.gitignore │ ├── Ruby.gitignore │ ├── Grails.gitignore │ ├── Drupal.gitignore │ ├── Swift.gitignore │ ├── SugarCRM.gitignore │ ├── Rails.gitignore │ ├── Python.gitignore │ ├── SeamGen.gitignore │ ├── LICENSE │ ├── Delphi.gitignore │ ├── TeX.gitignore │ ├── CONTRIBUTING.md │ ├── Magento.gitignore │ ├── README.md │ ├── VisualStudio.gitignore │ └── Joomla.gitignore ├── gulp │ ├── gulpfile.babel.js │ └── gulpfile.js ├── webpack │ └── config.js ├── helper.js ├── bowerrc.js ├── run.js ├── license │ ├── WTF.txt │ ├── SOX.txt │ ├── ISC.txt │ ├── MIT.txt │ ├── BSD-2.txt │ ├── BSD-3.txt │ ├── Apache-2.0.txt │ ├── GPL-2.0.txt │ └── MPL-2.0.txt ├── gulp.js ├── webpack.js ├── files.js ├── license.js ├── download.js ├── list │ └── gitignore.js └── gitignore.js ├── index.js ├── Runfile ├── .gitignore ├── bin └── toka.js ├── package.json ├── LICENSE └── README.md /lib/gitignore/Agda.gitignore: -------------------------------------------------------------------------------- 1 | *.agdai 2 | -------------------------------------------------------------------------------- /lib/gitignore/Nim.gitignore: -------------------------------------------------------------------------------- 1 | nimcache/ 2 | -------------------------------------------------------------------------------- /lib/gitignore/SketchUp.gitignore: -------------------------------------------------------------------------------- 1 | *.skb 2 | -------------------------------------------------------------------------------- /lib/gitignore/Fortran.gitignore: -------------------------------------------------------------------------------- 1 | C++.gitignore -------------------------------------------------------------------------------- /lib/gitignore/Idris.gitignore: -------------------------------------------------------------------------------- 1 | *.ibc 2 | *.o 3 | -------------------------------------------------------------------------------- /lib/gitignore/Clojure.gitignore: -------------------------------------------------------------------------------- 1 | Leiningen.gitignore -------------------------------------------------------------------------------- /lib/gitignore/Fancy.gitignore: -------------------------------------------------------------------------------- 1 | *.rbc 2 | *.fyc 3 | -------------------------------------------------------------------------------- /lib/gitignore/Jython.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.class 3 | -------------------------------------------------------------------------------- /lib/gitignore/Coq.gitignore: -------------------------------------------------------------------------------- 1 | *.vo 2 | *.glob 3 | *.v.d 4 | -------------------------------------------------------------------------------- /lib/gitignore/Jekyll.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .sass-cache/ 3 | -------------------------------------------------------------------------------- /lib/gitignore/Sass.gitignore: -------------------------------------------------------------------------------- 1 | .sass-cache 2 | *.css.map 3 | -------------------------------------------------------------------------------- /lib/gitignore/Lithium.gitignore: -------------------------------------------------------------------------------- 1 | libraries/* 2 | resources/tmp/* 3 | -------------------------------------------------------------------------------- /lib/gitignore/Phalcon.gitignore: -------------------------------------------------------------------------------- 1 | /cache/ 2 | /config/development/ 3 | -------------------------------------------------------------------------------- /lib/gitignore/CommonLisp.gitignore: -------------------------------------------------------------------------------- 1 | *.FASL 2 | *.fasl 3 | *.lisp-temp 4 | -------------------------------------------------------------------------------- /lib/gitignore/Meteor.gitignore: -------------------------------------------------------------------------------- 1 | .meteor/local 2 | .meteor/meteorite 3 | -------------------------------------------------------------------------------- /lib/gitignore/DM.gitignore: -------------------------------------------------------------------------------- 1 | *.dmb 2 | *.rsc 3 | *.int 4 | *.lk 5 | *.zip 6 | -------------------------------------------------------------------------------- /lib/gitignore/FuelPHP.gitignore: -------------------------------------------------------------------------------- 1 | fuel/app/logs/*/*/* 2 | fuel/app/cache/*/* 3 | -------------------------------------------------------------------------------- /lib/gitignore/Kohana.gitignore: -------------------------------------------------------------------------------- 1 | application/cache/* 2 | application/logs/* 3 | -------------------------------------------------------------------------------- /lib/gitignore/Elixir.gitignore: -------------------------------------------------------------------------------- 1 | /_build 2 | /deps 3 | erl_crash.dump 4 | *.ez 5 | -------------------------------------------------------------------------------- /lib/gitignore/ExtJs.gitignore: -------------------------------------------------------------------------------- 1 | .architect 2 | bootstrap.json 3 | build/ 4 | ext/ 5 | -------------------------------------------------------------------------------- /lib/gitignore/Concrete5.gitignore: -------------------------------------------------------------------------------- 1 | config/site.php 2 | files/cache/* 3 | files/tmp/* 4 | -------------------------------------------------------------------------------- /lib/gitignore/Elisp.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled 2 | *.elc 3 | 4 | # Packaging 5 | .cask 6 | -------------------------------------------------------------------------------- /lib/gitignore/Laravel.gitignore: -------------------------------------------------------------------------------- 1 | /bootstrap/compiled.php 2 | .env.*.php 3 | .env.php 4 | -------------------------------------------------------------------------------- /lib/gitignore/Lilypond.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | *.ps 3 | *.midi 4 | *.mid 5 | *.log 6 | *~ 7 | -------------------------------------------------------------------------------- /lib/gitignore/Ada.gitignore: -------------------------------------------------------------------------------- 1 | # Object file 2 | *.o 3 | 4 | # Ada Library Information 5 | *.ali 6 | -------------------------------------------------------------------------------- /lib/gitignore/AppEngine.gitignore: -------------------------------------------------------------------------------- 1 | # Google App Engine generated folder 2 | appengine-generated/ 3 | -------------------------------------------------------------------------------- /lib/gitignore/AppceleratorTitanium.gitignore: -------------------------------------------------------------------------------- 1 | # Build folder and log file 2 | build/ 3 | build.log 4 | -------------------------------------------------------------------------------- /lib/gitignore/ForceDotCom.gitignore: -------------------------------------------------------------------------------- 1 | .project 2 | .settings 3 | salesforce.schema 4 | Referenced Packages 5 | -------------------------------------------------------------------------------- /lib/gitignore/Gcov.gitignore: -------------------------------------------------------------------------------- 1 | # gcc coverage testing tool files 2 | 3 | *.gcno 4 | *.gcda 5 | *.gcov 6 | -------------------------------------------------------------------------------- /lib/gitignore/Packer.gitignore: -------------------------------------------------------------------------------- 1 | # Cache objects 2 | packer_cache/ 3 | 4 | # For built boxes 5 | *.box 6 | -------------------------------------------------------------------------------- /lib/gitignore/Yeoman.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | bower_components/ 3 | *.log 4 | 5 | build/ 6 | dist/ 7 | -------------------------------------------------------------------------------- /lib/gitignore/Qooxdoo.gitignore: -------------------------------------------------------------------------------- 1 | cache 2 | cache-downloads 3 | inspector 4 | api 5 | source/inspector.html 6 | -------------------------------------------------------------------------------- /lib/gitignore/VVVV.gitignore: -------------------------------------------------------------------------------- 1 | 2 | # .v4p backup files 3 | *~.xml 4 | 5 | # Dynamic plugins .dll 6 | bin/ 7 | -------------------------------------------------------------------------------- /lib/gitignore/Sdcc.gitignore: -------------------------------------------------------------------------------- 1 | # SDCC stuff 2 | *.lnk 3 | *.lst 4 | *.map 5 | *.mem 6 | *.rel 7 | *.rst 8 | *.sym 9 | -------------------------------------------------------------------------------- /lib/gitignore/CMake.gitignore: -------------------------------------------------------------------------------- 1 | CMakeCache.txt 2 | CMakeFiles 3 | Makefile 4 | cmake_install.cmake 5 | install_manifest.txt 6 | -------------------------------------------------------------------------------- /lib/gitignore/SCons.gitignore: -------------------------------------------------------------------------------- 1 | # for projects that use SCons for building: http://http://www.scons.org/ 2 | .sconsign.dblite 3 | -------------------------------------------------------------------------------- /lib/gitignore/Waf.gitignore: -------------------------------------------------------------------------------- 1 | # for projects that use Waf for building: http://code.google.com/p/waf/ 2 | .waf-* 3 | .lock-* 4 | -------------------------------------------------------------------------------- /lib/gitignore/EPiServer.gitignore: -------------------------------------------------------------------------------- 1 | ###################### 2 | ## EPiServer Files 3 | ###################### 4 | *License.config 5 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | var files = require('./lib/files'); 2 | 3 | module.exports = function (argv) { 4 | var options = argv; 5 | files.search(options); 6 | } 7 | -------------------------------------------------------------------------------- /lib/gitignore/Maven.gitignore: -------------------------------------------------------------------------------- 1 | target/ 2 | pom.xml.tag 3 | pom.xml.releaseBackup 4 | pom.xml.versionsBackup 5 | pom.xml.next 6 | release.properties 7 | -------------------------------------------------------------------------------- /lib/gitignore/SymphonyCMS.gitignore: -------------------------------------------------------------------------------- 1 | manifest/cache/ 2 | manifest/logs/ 3 | manifest/tmp/ 4 | symphony/ 5 | workspace/uploads/ 6 | install-log.txt 7 | -------------------------------------------------------------------------------- /lib/gitignore/ChefCookbook.gitignore: -------------------------------------------------------------------------------- 1 | .vagrant 2 | /cookbooks 3 | 4 | # Bundler 5 | bin/* 6 | .bundle/* 7 | 8 | .kitchen/ 9 | .kitchen.local.yml 10 | -------------------------------------------------------------------------------- /lib/gitignore/CraftCMS.gitignore: -------------------------------------------------------------------------------- 1 | # Craft Storage (cache) [http://buildwithcraft.com/help/craft-storage-gitignore] 2 | /craft/storage/* 3 | !/craft/storage/logo/* -------------------------------------------------------------------------------- /lib/gitignore/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 | -------------------------------------------------------------------------------- /lib/gitignore/CodeIgniter.gitignore: -------------------------------------------------------------------------------- 1 | */config/development 2 | */logs/log-*.php 3 | */logs/!index.html 4 | */cache/* 5 | */cache/!index.html 6 | */cache/!.htaccess 7 | -------------------------------------------------------------------------------- /lib/gitignore/OracleForms.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Form Modules 2 | *.fmx 3 | 4 | # Compiled Menu Modules 5 | *.mmx 6 | 7 | # Compiled Pre-Linked Libraries 8 | *.plx 9 | -------------------------------------------------------------------------------- /lib/gitignore/IGORPro.gitignore: -------------------------------------------------------------------------------- 1 | # Avoid including Experiment files: they can be created and edited locally to test the ipf files 2 | *.pxp 3 | *.pxt 4 | *.uxp 5 | *.uxt 6 | -------------------------------------------------------------------------------- /lib/gitignore/Mercury.gitignore: -------------------------------------------------------------------------------- 1 | Mercury/ 2 | *.mh 3 | *.err 4 | *.init 5 | *.dll 6 | *.exe 7 | *.a 8 | *.so 9 | *.dylib 10 | *.beams 11 | *.d 12 | *.c_date 13 | -------------------------------------------------------------------------------- /lib/gitignore/Yii.gitignore: -------------------------------------------------------------------------------- 1 | assets/* 2 | !assets/.gitignore 3 | protected/runtime/* 4 | !protected/runtime/.gitignore 5 | protected/data/*.db 6 | themes/classic/views/ 7 | -------------------------------------------------------------------------------- /lib/gitignore/Erlang.gitignore: -------------------------------------------------------------------------------- 1 | .eunit 2 | deps 3 | *.o 4 | *.beam 5 | *.plt 6 | erl_crash.dump 7 | ebin 8 | rel/example_project 9 | .concrete/DEV_MODE 10 | .rebar 11 | -------------------------------------------------------------------------------- /lib/gitignore/Rust.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled files 2 | *.o 3 | *.so 4 | *.rlib 5 | *.dll 6 | 7 | # Executables 8 | *.exe 9 | 10 | # Generated by Cargo 11 | /target/ 12 | -------------------------------------------------------------------------------- /lib/gulp/gulpfile.babel.js: -------------------------------------------------------------------------------- 1 | import gulp from 'gulp' 2 | 3 | gulp.task('watch', () => { 4 | 5 | }) 6 | 7 | gulp.task('build', []) 8 | 9 | gulp.task('default', []) 10 | -------------------------------------------------------------------------------- /lib/gitignore/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 | -------------------------------------------------------------------------------- /lib/gitignore/Processing.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | applet 3 | application.linux32 4 | application.linux64 5 | application.windows32 6 | application.windows64 7 | application.macosx 8 | -------------------------------------------------------------------------------- /lib/gulp/gulpfile.js: -------------------------------------------------------------------------------- 1 | var gulp = require('gulp') 2 | 3 | gulp.task('watch', function () { 4 | 5 | }) 6 | 7 | gulp.task('build', []) 8 | 9 | gulp.task('default', []) 10 | -------------------------------------------------------------------------------- /lib/gitignore/ArchLinuxPackages.gitignore: -------------------------------------------------------------------------------- 1 | *.tar 2 | *.tar.* 3 | *.zip 4 | *.tgz 5 | *.log 6 | *.log.* 7 | *.sig 8 | 9 | # AUR metadata 10 | .AURINFO 11 | .SRCINFO 12 | 13 | pkg/ 14 | src/ 15 | -------------------------------------------------------------------------------- /lib/gitignore/OpenCart.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess 2 | /config.php 3 | admin/config.php 4 | 5 | !index.html 6 | 7 | download/ 8 | image/data/ 9 | image/cache/ 10 | system/cache/ 11 | system/logs/ 12 | -------------------------------------------------------------------------------- /lib/gitignore/Scrivener.gitignore: -------------------------------------------------------------------------------- 1 | /Files/binder.autosave 2 | /Files/binder.backup 3 | /Files/search.indexes 4 | /Files/user.lock 5 | /Files/Docs/docs.checksum 6 | /QuickLook/ 7 | /Settings/ui.plist 8 | -------------------------------------------------------------------------------- /lib/gitignore/Gradle.gitignore: -------------------------------------------------------------------------------- 1 | .gradle 2 | build/ 3 | 4 | # Ignore Gradle GUI config 5 | gradle-app.setting 6 | 7 | # Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) 8 | !gradle-wrapper.jar 9 | -------------------------------------------------------------------------------- /lib/gitignore/CakePHP.gitignore: -------------------------------------------------------------------------------- 1 | CakePHP 3 2 | 3 | /vendor/* 4 | /config/app.php 5 | /tmp/* 6 | /logs/* 7 | 8 | CakePHP 2 9 | 10 | /app/tmp/* 11 | /app/Config/core.php 12 | /app/Config/database.php 13 | /vendors/* 14 | -------------------------------------------------------------------------------- /lib/gitignore/Leiningen.gitignore: -------------------------------------------------------------------------------- 1 | pom.xml 2 | pom.xml.asc 3 | *jar 4 | /lib/ 5 | /classes/ 6 | /target/ 7 | /checkouts/ 8 | .lein-deps-sum 9 | .lein-repl-history 10 | .lein-plugins/ 11 | .lein-failures 12 | .nrepl-port 13 | -------------------------------------------------------------------------------- /lib/gitignore/Xojo.gitignore: -------------------------------------------------------------------------------- 1 | # Xojo (formerly REALbasic and Real Studio) 2 | 3 | Builds* 4 | *.debug 5 | *.debug.app 6 | Debug*.exe 7 | Debug*/Debug*.exe 8 | Debug*/Debug*\ Libs 9 | *.rbuistate 10 | *.xojo_uistate 11 | *.obsolete 12 | -------------------------------------------------------------------------------- /lib/gitignore/LabVIEW.gitignore: -------------------------------------------------------------------------------- 1 | # Libraries 2 | *.lvlibp 3 | *.llb 4 | 5 | # Shared objects (inc. Windows DLLs) 6 | *.dll 7 | *.so 8 | *.so.* 9 | *.dylib 10 | 11 | # Executables 12 | *.exe 13 | 14 | # Metadata 15 | *.aliases 16 | *.lvlps 17 | -------------------------------------------------------------------------------- /lib/gitignore/Plone.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo 3 | *.tmp* 4 | *.mo 5 | *.egg 6 | *.EGG 7 | *.egg-info 8 | *.EGG-INFO 9 | .*.cfg 10 | bin/ 11 | build/ 12 | develop-eggs/ 13 | downloads/ 14 | eggs/ 15 | fake-eggs/ 16 | parts/ 17 | dist/ 18 | var/ 19 | -------------------------------------------------------------------------------- /lib/gitignore/Haskell.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | cabal-dev 3 | *.o 4 | *.hi 5 | *.chi 6 | *.chs.h 7 | *.dyn_o 8 | *.dyn_hi 9 | .virtualenv 10 | .hpc 11 | .hsenv 12 | .cabal-sandbox/ 13 | cabal.sandbox.config 14 | cabal.config 15 | *.prof 16 | *.aux 17 | *.hp 18 | -------------------------------------------------------------------------------- /lib/gitignore/R.gitignore: -------------------------------------------------------------------------------- 1 | # History files 2 | .Rhistory 3 | .Rapp.history 4 | 5 | # Example code in package build process 6 | *-Ex.R 7 | 8 | # RStudio files 9 | .Rproj.user/ 10 | 11 | # produced vignettes 12 | vignettes/*.html 13 | vignettes/*.pdf 14 | -------------------------------------------------------------------------------- /lib/gitignore/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 | -------------------------------------------------------------------------------- /lib/gitignore/Java.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | 3 | # Mobile Tools for Java (J2ME) 4 | .mtj.tmp/ 5 | 6 | # Package Files # 7 | *.jar 8 | *.war 9 | *.ear 10 | 11 | # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml 12 | hs_err_pid* 13 | -------------------------------------------------------------------------------- /lib/gitignore/Nanoc.gitignore: -------------------------------------------------------------------------------- 1 | # For projects using nanoc (http://nanoc.ws/) 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 | 9 | # Crash Log 10 | crash.log 11 | -------------------------------------------------------------------------------- /lib/gitignore/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 | -------------------------------------------------------------------------------- /lib/gitignore/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 | /stamp-h1 15 | -------------------------------------------------------------------------------- /lib/gitignore/PlayFramework.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore Play! working directory # 2 | bin/ 3 | /db 4 | .eclipse 5 | /lib/ 6 | /logs/ 7 | /modules 8 | /project/project 9 | /project/target 10 | /target 11 | tmp/ 12 | test-result 13 | server.pid 14 | *.iml 15 | *.eml 16 | /dist/ 17 | .cache 18 | -------------------------------------------------------------------------------- /lib/gitignore/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 | -------------------------------------------------------------------------------- /lib/gitignore/Stella.gitignore: -------------------------------------------------------------------------------- 1 | # Atari 2600 (Stella) support for multiple assemblers 2 | # - DASM 3 | # - CC65 4 | 5 | # Assembled binaries and object directories 6 | obj/ 7 | a.out 8 | *.bin 9 | *.a26 10 | 11 | # Add in special Atari 7800-based binaries for good measure 12 | *.a78 13 | -------------------------------------------------------------------------------- /lib/gitignore/Scala.gitignore: -------------------------------------------------------------------------------- 1 | *.class 2 | *.log 3 | 4 | # sbt specific 5 | .cache 6 | .history 7 | .lib/ 8 | dist/* 9 | target/ 10 | lib_managed/ 11 | src_managed/ 12 | project/boot/ 13 | project/plugins/project/ 14 | 15 | # Scala-IDE specific 16 | .scala_dependencies 17 | .worksheet 18 | -------------------------------------------------------------------------------- /lib/gitignore/Composer.gitignore: -------------------------------------------------------------------------------- 1 | composer.phar 2 | vendor/ 3 | 4 | # Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file 5 | # You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file 6 | # composer.lock 7 | -------------------------------------------------------------------------------- /lib/gitignore/OCaml.gitignore: -------------------------------------------------------------------------------- 1 | *.annot 2 | *.cmo 3 | *.cma 4 | *.cmi 5 | *.a 6 | *.o 7 | *.cmx 8 | *.cmxs 9 | *.cmxa 10 | 11 | # ocamlbuild working directory 12 | _build/ 13 | 14 | # ocamlbuild targets 15 | *.byte 16 | *.native 17 | 18 | # oasis generated files 19 | setup.data 20 | setup.log 21 | -------------------------------------------------------------------------------- /lib/gitignore/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 | /META.json 15 | /MYMETA.* 16 | nytprof.out 17 | /pm_to_blib 18 | *.o 19 | *.bs 20 | -------------------------------------------------------------------------------- /Runfile: -------------------------------------------------------------------------------- 1 | task.add('deploy', ['git', 'publish']) 2 | 3 | task.add('git', () => { 4 | var message = argv._[1] || 'update' 5 | exec('git add -A') 6 | exec(`git commit -m "${message}"`) 7 | exec('git push origin master') 8 | }) 9 | 10 | task.add('publish', () => { 11 | exec('npm publish') 12 | }) 13 | -------------------------------------------------------------------------------- /lib/gitignore/Dart.gitignore: -------------------------------------------------------------------------------- 1 | # Don’t commit the following directories created by pub. 2 | .buildlog 3 | .pub/ 4 | build/ 5 | packages 6 | 7 | # Or the files created by dart2js. 8 | *.dart.js 9 | *.js_ 10 | *.js.deps 11 | *.js.map 12 | 13 | # Include when developing application packages. 14 | pubspec.lock 15 | -------------------------------------------------------------------------------- /lib/gitignore/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 | 11 | # Windows Installer files 12 | *.cab 13 | *.msi 14 | *.msm 15 | *.msp 16 | 17 | # Windows shortcuts 18 | *.lnk -------------------------------------------------------------------------------- /lib/gitignore/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 | -------------------------------------------------------------------------------- /lib/gitignore/WordPress.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | .htaccess 3 | sitemap.xml 4 | sitemap.xml.gz 5 | wp-config.php 6 | wp-content/advanced-cache.php 7 | wp-content/backup-db/ 8 | wp-content/backups/ 9 | wp-content/blogs.dir/ 10 | wp-content/cache/ 11 | wp-content/upgrade/ 12 | wp-content/uploads/ 13 | wp-content/wp-cache-config.php 14 | -------------------------------------------------------------------------------- /lib/gitignore/ZendFramework.gitignore: -------------------------------------------------------------------------------- 1 | # Composer files 2 | composer.phar 3 | vendor/ 4 | 5 | # Local configs 6 | config/autoload/*.local.php 7 | 8 | # Binary gettext files 9 | *.mo 10 | 11 | # Data 12 | data/logs/ 13 | data/cache/ 14 | data/sessions/ 15 | data/tmp/ 16 | temp/ 17 | 18 | # Legacy ZF1 19 | demos/ 20 | extras/documentation 21 | -------------------------------------------------------------------------------- /lib/webpack/config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | entry: ['{{ entry }}'], 3 | output: { 4 | path: '{{ path }}', 5 | filename: '{{ filename }}' 6 | }, 7 | resolve: { 8 | extensions: ['', '.js'] 9 | }, 10 | module: { 11 | loaders: [ 12 | { test: /\.js$/, loaders: ['babel'] } 13 | ] 14 | }, 15 | plugins: [] 16 | } 17 | -------------------------------------------------------------------------------- /lib/helper.js: -------------------------------------------------------------------------------- 1 | exports.checkInArray = function (arr, obj) { 2 | return (arr.indexOf(obj) != -1); 3 | } 4 | 5 | exports.fuzzy = function (string, match) { 6 | var hay = string.toLowerCase(), i = 0, n = -1, l; 7 | match = match.toLowerCase(); 8 | for (; l = match[i++] ;) if (!~(n = hay.indexOf(l, n + 1))) return false; 9 | return true; 10 | } 11 | -------------------------------------------------------------------------------- /lib/gitignore/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. 12 | -------------------------------------------------------------------------------- /lib/gitignore/C.gitignore: -------------------------------------------------------------------------------- 1 | # Object files 2 | *.o 3 | *.ko 4 | *.obj 5 | *.elf 6 | 7 | # Precompiled Headers 8 | *.gch 9 | *.pch 10 | 11 | # Libraries 12 | *.lib 13 | *.a 14 | *.la 15 | *.lo 16 | 17 | # Shared objects (inc. Windows DLLs) 18 | *.dll 19 | *.so 20 | *.so.* 21 | *.dylib 22 | 23 | # Executables 24 | *.exe 25 | *.out 26 | *.app 27 | *.i*86 28 | *.x86_64 29 | *.hex 30 | -------------------------------------------------------------------------------- /lib/gitignore/Unity.gitignore: -------------------------------------------------------------------------------- 1 | [Ll]ibrary/ 2 | [Tt]emp/ 3 | [Oo]bj/ 4 | [Bb]uild/ 5 | 6 | # Autogenerated VS/MD solution and project files 7 | *.csproj 8 | *.unityproj 9 | *.sln 10 | *.suo 11 | *.tmp 12 | *.user 13 | *.userprefs 14 | *.pidb 15 | *.booproj 16 | 17 | # Unity3D generated meta files 18 | *.pidb.meta 19 | 20 | # Unity3D Generated File On Crash Reports 21 | sysinfo.txt 22 | -------------------------------------------------------------------------------- /lib/gitignore/OSX.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .AppleDouble 3 | .LSOverride 4 | 5 | # Icon must end with two \r 6 | Icon 7 | 8 | 9 | # Thumbnails 10 | ._* 11 | 12 | # Files that might appear on external disk 13 | .Spotlight-V100 14 | .Trashes 15 | 16 | # Directories potentially created on remote AFP share 17 | .AppleDB 18 | .AppleDesktop 19 | Network Trash Folder 20 | Temporary Items 21 | .apdisk -------------------------------------------------------------------------------- /lib/gitignore/C++.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Object files 2 | *.slo 3 | *.lo 4 | *.o 5 | *.obj 6 | 7 | # Precompiled Headers 8 | *.gch 9 | *.pch 10 | 11 | # Compiled Dynamic libraries 12 | *.so 13 | *.dylib 14 | *.dll 15 | 16 | # Fortran module files 17 | *.mod 18 | 19 | # Compiled Static libraries 20 | *.lai 21 | *.la 22 | *.a 23 | *.lib 24 | 25 | # Executables 26 | *.exe 27 | *.out 28 | *.app 29 | -------------------------------------------------------------------------------- /lib/gitignore/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 | *.test 24 | *.prof 25 | -------------------------------------------------------------------------------- /lib/gitignore/Android.gitignore: -------------------------------------------------------------------------------- 1 | # Built application files 2 | *.apk 3 | *.ap_ 4 | 5 | # Files for the Dalvik VM 6 | *.dex 7 | 8 | # Java class files 9 | *.class 10 | 11 | # Generated files 12 | bin/ 13 | gen/ 14 | 15 | # Gradle files 16 | .gradle/ 17 | build/ 18 | /*/build/ 19 | 20 | # Local configuration file (sdk path, etc) 21 | local.properties 22 | 23 | # Proguard folder generated by Eclipse 24 | proguard/ 25 | 26 | # Log Files 27 | *.log 28 | -------------------------------------------------------------------------------- /lib/gitignore/GitBook.gitignore: -------------------------------------------------------------------------------- 1 | # Node rules: 2 | ## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 3 | .grunt 4 | 5 | ## Dependency directory 6 | ## Commenting this out is preferred by some people, see 7 | ## https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git 8 | node_modules 9 | 10 | # Book build output 11 | _book 12 | 13 | # eBook build output 14 | *.epub 15 | *.mobi 16 | *.pdf 17 | -------------------------------------------------------------------------------- /lib/gitignore/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 | # For security do not publish the following files 12 | system/expressionengine/config/database.php 13 | system/expressionengine/config/config.php 14 | 15 | # Caches 16 | sized/ 17 | thumbs/ 18 | _thumbs/ 19 | */expressionengine/cache/* 20 | -------------------------------------------------------------------------------- /lib/gitignore/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 22 | -------------------------------------------------------------------------------- /lib/bowerrc.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs'); 2 | var path = require('path'); 3 | 4 | module.exports = function (options) { 5 | var lib = options._[1]; 6 | lib = lib || 'lib'; 7 | var json = { 8 | "directory": lib 9 | }; 10 | json = JSON.stringify(json, undefined, 2); 11 | fs.writeFile(path.join(process.cwd(), options.dir || '', '.bowerrc'), json, function (err) { 12 | if (err) throw err; 13 | log.success('The .bowerrc file is saved!'); 14 | }); 15 | } 16 | -------------------------------------------------------------------------------- /lib/gitignore/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 | /.qmake.cache 16 | /.qmake.stash 17 | *.pro.user 18 | *.pro.user.* 19 | *.qbs.user 20 | *.qbs.user.* 21 | *.moc 22 | moc_*.cpp 23 | qrc_*.cpp 24 | ui_*.h 25 | Makefile* 26 | *-build-* 27 | 28 | # QtCreator 29 | 30 | *.autosave 31 | 32 | #QtCtreator Qml 33 | *.qmlproject.user 34 | *.qmlproject.user.* 35 | -------------------------------------------------------------------------------- /lib/run.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs') 2 | 3 | module.exports = function (options) { 4 | var holder = '${message}' 5 | var data = `task.add('', () => { 6 | 7 | }) 8 | 9 | task.add('git', () => { 10 | var message = argv._[1] || 'update' 11 | exec('git add -A') 12 | exec(\`git commit -m "${holder}"\`) 13 | exec('git push origin master') 14 | }) 15 | ` 16 | fs.writeFileSync(process.cwd() + '/Runfile', data, 'utf-8') 17 | log.success('Runfile is saved to your current path!') 18 | } 19 | -------------------------------------------------------------------------------- /lib/gitignore/MetaProgrammingSystem.gitignore: -------------------------------------------------------------------------------- 1 | workspace.xml 2 | junitvmwatcher*.properties 3 | build.properties 4 | 5 | # generated java classes and java source files 6 | # manually add any custom artifacts that can't be generated from the models 7 | # http://confluence.jetbrains.com/display/MPSD25/HowTo+--+MPS+and+Git 8 | classes_gen 9 | source_gen 10 | source_gen.caches 11 | 12 | # generated test code and test results 13 | test_gen 14 | test_gen.caches 15 | TEST-*.xml 16 | junit*.properties 17 | -------------------------------------------------------------------------------- /lib/license/WTF.txt: -------------------------------------------------------------------------------- 1 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 2 | Version 2, December 2004 3 | 4 | Copyright (C) {{YEAR}} {{OWNER}} 5 | 6 | Everyone is permitted to copy and distribute verbatim or modified 7 | copies of this license document, and changing it is allowed as long 8 | as the name is changed. 9 | 10 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 11 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 12 | 13 | 0. You just DO WHAT THE FUCK YOU WANT TO. -------------------------------------------------------------------------------- /lib/gitignore/Zephir.gitignore: -------------------------------------------------------------------------------- 1 | # Cache files, generates by Zephir 2 | .temp/ 3 | .libs/ 4 | 5 | # Object files, generates by linker 6 | *.lo 7 | *.la 8 | *.o 9 | *.loT 10 | 11 | # Files generated by configure and Zephir, 12 | # not required for extension compilation. 13 | ext/build/ 14 | ext/modules/ 15 | ext/Makefile* 16 | ext/config* 17 | ext/acinclude.m4 18 | ext/aclocal.m4 19 | ext/autom4te* 20 | ext/install-sh 21 | ext/ltmain.sh 22 | ext/missing 23 | ext/mkinstalldirs 24 | ext/run-tests.php 25 | ext/.deps 26 | ext/libtool 27 | -------------------------------------------------------------------------------- /lib/gitignore/Lua.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled Lua sources 2 | luac.out 3 | 4 | # luarocks build files 5 | *.src.rock 6 | *.zip 7 | *.tar.gz 8 | 9 | # Object files 10 | *.o 11 | *.os 12 | *.ko 13 | *.obj 14 | *.elf 15 | 16 | # Precompiled Headers 17 | *.gch 18 | *.pch 19 | 20 | # Libraries 21 | *.lib 22 | *.a 23 | *.la 24 | *.lo 25 | *.def 26 | *.exp 27 | 28 | # Shared objects (inc. Windows DLLs) 29 | *.dll 30 | *.so 31 | *.so.* 32 | *.dylib 33 | 34 | # Executables 35 | *.exe 36 | *.out 37 | *.app 38 | *.i*86 39 | *.x86_64 40 | *.hex 41 | 42 | -------------------------------------------------------------------------------- /lib/gitignore/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 | #compilation logs 19 | .gwt/ 20 | 21 | #caching for already compiled files 22 | gwt-unitCache/ 23 | 24 | #gwt junit compilation files 25 | www-test/ 26 | 27 | #old GWT (1.5) created this dir 28 | .gwt-tmp/ 29 | -------------------------------------------------------------------------------- /lib/license/SOX.txt: -------------------------------------------------------------------------------- 1 | This project is released under SOX license that means you can do whatever you want to do, but you have to open source your copy on github if you let the public uses it. All copies should be released under the same license. The owner of each copy is only reponsible for his own copy, not for the parents, not for the children. 2 | 3 | permitted use: 4 | fork on github 5 | change 6 | do evil with your copy 7 | 8 | prohibted use: 9 | do evil with copies not of your own 10 | open source your copy without declaring your parent copy -------------------------------------------------------------------------------- /lib/gulp.js: -------------------------------------------------------------------------------- 1 | var hb = require('handlebars'); 2 | var fs = require('fs'); 3 | var path = require('path') 4 | 5 | module.exports = function (options) { 6 | var gulpfile = (options.babel || options.b) ? 'gulpfile.babel.js' : 'gulpfile.js'; 7 | var string = fs.readFileSync(__dirname + '/gulp/' + gulpfile).toString('utf8'); 8 | var tpl = hb.compile(string); 9 | var output = tpl({}) 10 | var dir = path.join(process.cwd(), options.dir || '', gulpfile) 11 | fs.writeFileSync(dir, output, 'utf-8'); 12 | log.success(`Successfully added ${gulpfile} to your project!`); 13 | } 14 | -------------------------------------------------------------------------------- /lib/gitignore/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 | -------------------------------------------------------------------------------- /lib/gitignore/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 | 17 | # deployed package files # 18 | 19 | *.DEPLOYED 20 | -------------------------------------------------------------------------------- /lib/gitignore/Umbraco.gitignore: -------------------------------------------------------------------------------- 1 | # Note: VisualStudio gitignore rules may also be relevant 2 | 3 | # Ignore unimportant folders generated by Umbraco 4 | **/App_Data/ClientDependency/ 5 | **/App_Data/ExamineIndexes/ 6 | **/App_Data/Logs/ 7 | **/App_Data/[Pp]review/ 8 | **/App_Data/TEMP/ 9 | Cached/ 10 | 11 | # Ignore Umbraco content cache file 12 | **/App_Data/umbraco.config 13 | 14 | # Don't ignore Umbraco packages (VisualStudio.gitignore mistakes this for a NuGet packages folder) 15 | # Make sure to include details from VisualStudio.gitignore BEFORE this 16 | !**/App_Data/[Pp]ackages/ 17 | !**/[Uu]mbraco/[Dd]eveloper/[Pp]ackages 18 | -------------------------------------------------------------------------------- /lib/gitignore/Default.gitignore: -------------------------------------------------------------------------------- 1 | # Compiled source # 2 | ################### 3 | *.com 4 | *.class 5 | *.dll 6 | *.exe 7 | *.o 8 | *.so 9 | 10 | # Packages # 11 | ############ 12 | # it's better to unpack these files and commit the raw source 13 | # git has its own built in compression methods 14 | *.7z 15 | *.dmg 16 | *.gz 17 | *.iso 18 | *.jar 19 | *.rar 20 | *.tar 21 | *.zip 22 | 23 | # Logs and databases # 24 | ###################### 25 | *.log 26 | *.sql 27 | *.sqlite 28 | 29 | # OS generated files # 30 | ###################### 31 | .DS_Store 32 | .DS_Store? 33 | ._* 34 | .Spotlight-V100 35 | .Trashes 36 | ehthumbs.db 37 | Thumbs.db -------------------------------------------------------------------------------- /lib/gitignore/Objective-C.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | build/ 4 | *.pbxuser 5 | !default.pbxuser 6 | *.mode1v3 7 | !default.mode1v3 8 | *.mode2v3 9 | !default.mode2v3 10 | *.perspectivev3 11 | !default.perspectivev3 12 | xcuserdata 13 | *.xccheckout 14 | *.moved-aside 15 | DerivedData 16 | *.hmap 17 | *.ipa 18 | *.xcuserstate 19 | 20 | # CocoaPods 21 | # 22 | # We recommend against adding the Pods directory to your .gitignore. However 23 | # you should judge for yourself, the pros and cons are mentioned at: 24 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 25 | # 26 | # Pods/ 27 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | 5 | # Runtime data 6 | pids 7 | *.pid 8 | *.seed 9 | 10 | # Directory for instrumented libs generated by jscoverage/JSCover 11 | lib-cov 12 | 13 | # Coverage directory used by tools like istanbul 14 | coverage 15 | 16 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 17 | .grunt 18 | 19 | # node-waf configuration 20 | .lock-wscript 21 | 22 | # Compiled binary addons (http://nodejs.org/api/addons.html) 23 | build/Release 24 | 25 | # Dependency directory 26 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- 27 | node_modules 28 | -------------------------------------------------------------------------------- /lib/gitignore/Node.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | 5 | # Runtime data 6 | pids 7 | *.pid 8 | *.seed 9 | 10 | # Directory for instrumented libs generated by jscoverage/JSCover 11 | lib-cov 12 | 13 | # Coverage directory used by tools like istanbul 14 | coverage 15 | 16 | # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 17 | .grunt 18 | 19 | # node-waf configuration 20 | .lock-wscript 21 | 22 | # Compiled binary addons (http://nodejs.org/api/addons.html) 23 | build/Release 24 | 25 | # Dependency directory 26 | # https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git- 27 | node_modules 28 | -------------------------------------------------------------------------------- /lib/gitignore/Prestashop.gitignore: -------------------------------------------------------------------------------- 1 | # Directories content 2 | cache/class_index.php 3 | cache/smarty/cache/* 4 | !cache/smarty/cache/index.php 5 | cache/smarty/compile/* 6 | !cache/smarty/compile/index.php 7 | cache/tcpdf/* 8 | !cache/tcpdf/index.php 9 | 10 | config/xml/*.xml 11 | config/settings.inc.php 12 | 13 | log/*.log 14 | 15 | img/* 16 | !img/index.php 17 | !img/*/index.php 18 | 19 | tools/smarty*/cache/*.php 20 | !tools/smarty*/cache/index.php 21 | tools/smarty*/compile/*.php 22 | !tools/smarty*/compile/index.php 23 | 24 | themes/default/cache/*.js 25 | themes/default/cache/*.css 26 | 27 | # Ignore files on root directory 28 | robots.txt 29 | sitemap.xml 30 | -------------------------------------------------------------------------------- /lib/gitignore/Symfony.gitignore: -------------------------------------------------------------------------------- 1 | # Cache and logs (Symfony2) 2 | /app/cache/* 3 | /app/logs/* 4 | !app/cache/.gitkeep 5 | !app/logs/.gitkeep 6 | 7 | # Cache and logs (Symfony3) 8 | /var/cache/* 9 | /var/logs/* 10 | !var/cache/.gitkeep 11 | !var/logs/.gitkeep 12 | 13 | # Parameters 14 | /app/config/parameters.yml 15 | /app/config/parameters.ini 16 | 17 | # Managed by Composer 18 | /app/bootstrap.php.cache 19 | /var/bootstrap.php.cache 20 | /bin/* 21 | !bin/console 22 | !bin/symfony_requirements 23 | /vendor/ 24 | 25 | # Assets and user uploads 26 | /web/bundles/ 27 | /web/uploads/ 28 | 29 | # PHPUnit 30 | /app/phpunit.xml 31 | /phpunit.xml 32 | 33 | # Build data 34 | /build/ 35 | 36 | # Composer PHAR 37 | /composer.phar 38 | -------------------------------------------------------------------------------- /lib/webpack.js: -------------------------------------------------------------------------------- 1 | var hb = require('handlebars'); 2 | var fs = require('fs'); 3 | var path = require('path'); 4 | 5 | module.exports = function (options) { 6 | var entry = options.entry || options.e; 7 | var webpackPath = options.path || options.p; 8 | var filename = options.filename || options.f; 9 | var string = fs.readFileSync(__dirname + '/webpack/config.js').toString('utf8'); 10 | var tpl = hb.compile(string); 11 | var output = tpl({ 12 | entry: entry, 13 | path: webpackPath, 14 | filename: filename 15 | }) 16 | fs.writeFileSync(path.join(process.cwd(), options.dir || '', 'webpack.config.js'), output, 'utf-8'); 17 | log.success('Successfully added webpack.config.js to your project!'); 18 | } 19 | -------------------------------------------------------------------------------- /lib/gitignore/ROS.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | bin/ 3 | lib/ 4 | msg_gen/ 5 | srv_gen/ 6 | msg/*Action.msg 7 | msg/*ActionFeedback.msg 8 | msg/*ActionGoal.msg 9 | msg/*ActionResult.msg 10 | msg/*Feedback.msg 11 | msg/*Goal.msg 12 | msg/*Result.msg 13 | msg/_*.py 14 | 15 | # Generated by dynamic reconfigure 16 | *.cfgc 17 | /cfg/cpp/ 18 | /cfg/*.py 19 | 20 | # Ignore generated docs 21 | *.dox 22 | *.wikidoc 23 | 24 | # eclipse stuff 25 | .project 26 | .cproject 27 | 28 | # qcreator stuff 29 | CMakeLists.txt.user 30 | 31 | srv/_*.py 32 | *.pcd 33 | *.pyc 34 | qtcreator-* 35 | *.user 36 | 37 | /planning/cfg 38 | /planning/docs 39 | /planning/src 40 | 41 | *~ 42 | 43 | # Emacs 44 | .#* 45 | 46 | # Catkin custom files 47 | CATKIN_IGNORE 48 | -------------------------------------------------------------------------------- /lib/gitignore/Typo3.gitignore: -------------------------------------------------------------------------------- 1 | ## TYPO3 v4 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 | -------------------------------------------------------------------------------- /lib/license/ISC.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) {{YEAR}}, {{OWNER}} 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. 4 | 5 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -------------------------------------------------------------------------------- /lib/gitignore/Ruby.gitignore: -------------------------------------------------------------------------------- 1 | *.gem 2 | *.rbc 3 | /.config 4 | /coverage/ 5 | /InstalledFiles 6 | /pkg/ 7 | /spec/reports/ 8 | /test/tmp/ 9 | /test/version_tmp/ 10 | /tmp/ 11 | 12 | ## Specific to RubyMotion: 13 | .dat* 14 | .repl_history 15 | build/ 16 | 17 | ## Documentation cache and generated files: 18 | /.yardoc/ 19 | /_yardoc/ 20 | /doc/ 21 | /rdoc/ 22 | 23 | ## Environment normalisation: 24 | /.bundle/ 25 | /lib/bundler/man/ 26 | 27 | # for a library or gem, you might want to ignore these files since the code is 28 | # intended to run in multiple environments; otherwise, check them in: 29 | # Gemfile.lock 30 | # .ruby-version 31 | # .ruby-gemset 32 | 33 | # unless supporting rvm < 1.11.0 or doing something fancy, ignore this: 34 | .rvmrc 35 | -------------------------------------------------------------------------------- /lib/gitignore/Grails.gitignore: -------------------------------------------------------------------------------- 1 | # .gitignore for Grails 1.2 and 1.3 2 | # Although this should work for most versions of grails, it is 3 | # suggested that you use the "grails integrate-with --git" command 4 | # to generate your .gitignore file. 5 | 6 | # web application files 7 | /web-app/WEB-INF/classes 8 | 9 | # default HSQL database files for production mode 10 | /prodDb.* 11 | 12 | # general HSQL database files 13 | *Db.properties 14 | *Db.script 15 | 16 | # logs 17 | /stacktrace.log 18 | /test/reports 19 | /logs 20 | 21 | # project release file 22 | /*.war 23 | 24 | # plugin release files 25 | /*.zip 26 | /plugin.xml 27 | 28 | # older plugin install locations 29 | /plugins 30 | /web-app/plugins 31 | 32 | # "temporary" build files 33 | /target 34 | -------------------------------------------------------------------------------- /lib/gitignore/Drupal.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore configuration files that may contain sensitive information. 2 | sites/*/*settings*.php 3 | 4 | # Ignore paths that contain generated content. 5 | files/ 6 | sites/*/files 7 | sites/*/private 8 | 9 | # Ignore default text files 10 | robots.txt 11 | /CHANGELOG.txt 12 | /COPYRIGHT.txt 13 | /INSTALL*.txt 14 | /LICENSE.txt 15 | /MAINTAINERS.txt 16 | /UPGRADE.txt 17 | /README.txt 18 | sites/all/README.txt 19 | sites/all/modules/README.txt 20 | sites/all/themes/README.txt 21 | 22 | # Ignore everything but the "sites" folder ( for non core developer ) 23 | .htaccess 24 | web.config 25 | authorize.php 26 | cron.php 27 | index.php 28 | install.php 29 | update.php 30 | xmlrpc.php 31 | /includes 32 | /misc 33 | /modules 34 | /profiles 35 | /scripts 36 | /themes 37 | -------------------------------------------------------------------------------- /lib/gitignore/Swift.gitignore: -------------------------------------------------------------------------------- 1 | # Xcode 2 | # 3 | build/ 4 | *.pbxuser 5 | !default.pbxuser 6 | *.mode1v3 7 | !default.mode1v3 8 | *.mode2v3 9 | !default.mode2v3 10 | *.perspectivev3 11 | !default.perspectivev3 12 | xcuserdata 13 | *.xccheckout 14 | *.moved-aside 15 | DerivedData 16 | *.hmap 17 | *.ipa 18 | *.xcuserstate 19 | 20 | # CocoaPods 21 | # 22 | # We recommend against adding the Pods directory to your .gitignore. However 23 | # you should judge for yourself, the pros and cons are mentioned at: 24 | # http://guides.cocoapods.org/using/using-cocoapods.html#should-i-ignore-the-pods-directory-in-source-control 25 | # 26 | # Pods/ 27 | 28 | # Carthage 29 | # 30 | # Add this line if you want to avoid checking in source code from Carthage dependencies. 31 | # Carthage/Checkouts 32 | 33 | Carthage/Build 34 | -------------------------------------------------------------------------------- /lib/gitignore/SugarCRM.gitignore: -------------------------------------------------------------------------------- 1 | ## SugarCRM 2 | # Ignore custom .htaccess stuff. 3 | /.htaccess 4 | # Ignore the cache directory completely. 5 | # This will break the current behaviour. Which was often leading to 6 | # the misuse of the repository as backup replacement. 7 | # For development the cache directory can be safely ignored and 8 | # therefore it is ignored. 9 | /cache/ 10 | # Ignore some files and directories from the custom directory. 11 | /custom/history/ 12 | /custom/modulebuilder/ 13 | /custom/working/ 14 | /custom/modules/*/Ext/ 15 | /custom/application/Ext/ 16 | # Custom configuration should also be ignored. 17 | /config.php 18 | /config_override.php 19 | # The silent upgrade scripts aren't needed. 20 | /silentUpgrade*.php 21 | # Logs files can safely be ignored. 22 | *.log 23 | # Ignore the new upload directories. 24 | /upload/ 25 | /upload_backup/ 26 | -------------------------------------------------------------------------------- /lib/gitignore/Rails.gitignore: -------------------------------------------------------------------------------- 1 | *.rbc 2 | capybara-*.html 3 | .rspec 4 | /log 5 | /tmp 6 | /db/*.sqlite3 7 | /db/*.sqlite3-journal 8 | /public/system 9 | /coverage/ 10 | /spec/tmp 11 | **.orig 12 | rerun.txt 13 | pickle-email-*.html 14 | 15 | # TODO Comment out these rules if you are OK with secrets being uploaded to the repo 16 | config/initializers/secret_token.rb 17 | config/secrets.yml 18 | 19 | ## Environment normalisation: 20 | /.bundle 21 | /vendor/bundle 22 | 23 | # these should all be checked in to normalise the environment: 24 | # Gemfile.lock, .ruby-version, .ruby-gemset 25 | 26 | # unless supporting rvm < 1.11.0 or doing something fancy, ignore this: 27 | .rvmrc 28 | 29 | # if using bower-rails ignore default bower_components path bower.json files 30 | /vendor/assets/bower_components 31 | *.bowerrc 32 | bower.json 33 | 34 | # Ignore pow environment settings 35 | .powenv 36 | -------------------------------------------------------------------------------- /bin/toka.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('colorful').toxic(); 3 | global.log = require('typelog') 4 | if (!process.argv[2]) { 5 | console.log('toka ~ ' + require('../package').version.green); 6 | console.log('A handy tool to generate common files in command line'.grey); 7 | console.log(' $ '.cyan + 'toka -v'); 8 | console.log(' $ '.cyan + 'toka .gitignore '); 9 | console.log(' $ '.cyan + 'toka .bowerrc '); 10 | console.log(' $ '.cyan + 'toka license '); 11 | console.log(' $ '.cyan + 'toka webpack'); 12 | console.log(' $ '.cyan + 'toka gulp'); 13 | console.log(''); 14 | console.log('see advanced usage: (cmd + click)'.grey, 'https://github.com/egoist/toka'.underline); 15 | process.exit(); 16 | } 17 | var gen = require('..'); 18 | var argv = require('minimist')(process.argv.slice(2), { '--': true }); 19 | gen(argv); 20 | -------------------------------------------------------------------------------- /lib/gitignore/Python.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | 5 | # C extensions 6 | *.so 7 | 8 | # Distribution / packaging 9 | .Python 10 | env/ 11 | build/ 12 | develop-eggs/ 13 | dist/ 14 | downloads/ 15 | eggs/ 16 | lib/ 17 | lib64/ 18 | parts/ 19 | sdist/ 20 | var/ 21 | *.egg-info/ 22 | .installed.cfg 23 | *.egg 24 | 25 | # PyInstaller 26 | # Usually these files are written by a python script from a template 27 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 28 | *.manifest 29 | *.spec 30 | 31 | # Installer logs 32 | pip-log.txt 33 | pip-delete-this-directory.txt 34 | 35 | # Unit test / coverage reports 36 | htmlcov/ 37 | .tox/ 38 | .coverage 39 | .cache 40 | nosetests.xml 41 | coverage.xml 42 | 43 | # Translations 44 | *.mo 45 | *.pot 46 | 47 | # Django stuff: 48 | *.log 49 | 50 | # Sphinx documentation 51 | docs/_build/ 52 | 53 | # PyBuilder 54 | target/ 55 | -------------------------------------------------------------------------------- /lib/gitignore/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 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "toka", 3 | "version": "0.4.32", 4 | "description": "A handy tool to generate common files in command line", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "exit" 8 | }, 9 | "bin": { 10 | "toka": "./bin/toka.js" 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "https://github.com/aprilorange/toka.git" 15 | }, 16 | "preferGlobal": true, 17 | "keywords": [ 18 | "gen", 19 | "files", 20 | "terminal", 21 | "gitignore", 22 | "LICENSE", 23 | "bower" 24 | ], 25 | "author": "0x142857 <0x142857@gmail.com> (https://0x142857.com/)", 26 | "license": "MIT", 27 | "bugs": { 28 | "url": "https://github.com/aprilorange/toka/issues" 29 | }, 30 | "homepage": "https://github.com/aprilorange/toka", 31 | "dependencies": { 32 | "colorful": "^2.1.0", 33 | "download": "^4.4.3", 34 | "download-status": "^2.2.1", 35 | "handlebars": "^4.0.4", 36 | "ini": "^1.3.4", 37 | "minimist": "^1.2.0", 38 | "myconf": "0.0.21", 39 | "typelog": "0.1.2", 40 | "user-home": "^2.0.0" 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /lib/gitignore/LICENSE: -------------------------------------------------------------------------------- 1 | Copyright (c) 2014 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 | -------------------------------------------------------------------------------- /lib/license/MIT.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) {{YEAR}} {{OWNER}} 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 egoist aprilorange.net@icloud.com 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. -------------------------------------------------------------------------------- /lib/files.js: -------------------------------------------------------------------------------- 1 | var gitignore = require('./gitignore'), 2 | bowerrc = require('./bowerrc'), 3 | webpack = require('./webpack'), 4 | gulp = require('./gulp'), 5 | download = require('./download'), 6 | run = require('./run'), 7 | license = require('./license'); 8 | 9 | exports.search = function (options) { 10 | 11 | if (options.v || options.version) { 12 | log('toka ~ ' + require('../package').version.green); 13 | return; 14 | } 15 | 16 | var filename = options._[0]; 17 | switch (filename) { 18 | case 'g': 19 | case 'git': 20 | case '.gitignore': 21 | gitignore(options); 22 | break; 23 | case 'b': 24 | case '.bowerrc': 25 | bowerrc(options); 26 | break; 27 | case 'l': 28 | case 'license': 29 | license(options); 30 | break; 31 | case 'w': 32 | case 'webpack': 33 | webpack(options); 34 | break; 35 | case 'gu': 36 | case 'gulp': 37 | gulp(options); 38 | break; 39 | case 'd': 40 | case 'dl': 41 | case 'download': 42 | download(options); 43 | break; 44 | case 'r': 45 | case 'run': 46 | run(options); 47 | break; 48 | default: 49 | return; 50 | } 51 | 52 | } 53 | -------------------------------------------------------------------------------- /lib/license/BSD-2.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) {{YEAR}}, {{OWNER}} 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 5 | 6 | 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 7 | 8 | 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 9 | 10 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- /lib/license/BSD-3.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) {{YEAR}}, {{OWNER}} 2 | All rights reserved. 3 | 4 | Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 5 | 6 | 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 7 | 8 | 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 9 | 10 | 3. Neither the name of the {{ORGANIZATION}} nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. 11 | 12 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -------------------------------------------------------------------------------- /lib/gitignore/Delphi.gitignore: -------------------------------------------------------------------------------- 1 | # Uncomment these types if you want even more clean repository. But be careful. 2 | # It can make harm to an existing project source. Read explanations below. 3 | # 4 | # Resource files are binaries containing manifest, project icon and version info. 5 | # They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files. 6 | #*.res 7 | # 8 | # Type library file (binary). In old Delphi versions it should be stored. 9 | # Since Delphi 2009 it is produced from .ridl file and can safely be ignored. 10 | #*.tlb 11 | # 12 | # Diagram Portfolio file. Used by the diagram editor up to Delphi 7. 13 | # Uncomment this if you are not using diagrams or use newer Delphi version. 14 | #*.ddp 15 | # 16 | # Visual LiveBindings file. Added in Delphi XE2. 17 | # Uncomment this if you are not using LiveBindings Designer. 18 | #*.vlb 19 | # 20 | # Deployment Manager configuration file for your project. Added in Delphi XE2. 21 | # Uncomment this if it is not mobile development and you do not use remote debug feature. 22 | #*.deployproj 23 | # 24 | 25 | # Delphi compiler-generated binaries (safe to delete) 26 | *.exe 27 | *.dll 28 | *.bpl 29 | *.bpi 30 | *.dcp 31 | *.so 32 | *.apk 33 | *.drc 34 | *.map 35 | *.dres 36 | *.rsm 37 | *.tds 38 | *.dcu 39 | *.lib 40 | 41 | # Delphi autogenerated files (duplicated info) 42 | *.cfg 43 | *Resource.rc 44 | 45 | # Delphi local files (user-specific info) 46 | *.local 47 | *.identcache 48 | *.projdata 49 | *.tvsconfig 50 | *.dsk 51 | 52 | # Delphi history and backups 53 | __history/ 54 | *.~* 55 | 56 | # Castalia statistics file 57 | *.stat 58 | -------------------------------------------------------------------------------- /lib/license.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs'); 2 | 3 | var hb = require('handlebars'), 4 | ini = require('ini'); 5 | var home = require('user-home'); 6 | var path = require('path'); 7 | var config, file, tpl, output, data = {}; 8 | var licenses = [ 9 | 'Apache-2.0', 10 | 'BSD-2', 11 | 'BSD-3', 12 | 'GPL-2.0', 13 | 'ISC', 14 | 'MIT', 15 | 'MPL-2.0', 16 | 'WTF', 17 | 'SOX' 18 | ]; 19 | 20 | 21 | module.exports = function (options) { 22 | var license = options._[1]; 23 | if (!license) { 24 | log.error('You have to specific a license name'); 25 | return; 26 | } 27 | for (var i = 0; i < licenses.length; i++) { 28 | var l = licenses[i]; 29 | if (require('./helper').fuzzy(l, license)) { 30 | license = l; 31 | log.info(`Detected as ${l} license...`) 32 | break; 33 | } 34 | } 35 | var check = require('./helper').checkInArray(licenses, license); 36 | if (!check) { 37 | log.error('We don\' support that type of LICENSE, sorry'); 38 | console.log('see USAGE:'); 39 | console.log(' $ '.cyan + 'toka license '); 40 | console.log('\nwhat we support:'); 41 | console.log(licenses.toString().magenta); 42 | return; 43 | } 44 | config = ini.parse(fs.readFileSync(home + '/.gitconfig', 'utf-8')) 45 | 46 | file = fs.readFileSync(__dirname + '/license/' + license + '.txt').toString('utf8'); 47 | tpl = hb.compile(file); 48 | data = { 49 | YEAR: new Date().getFullYear(), 50 | OWNER: config.user.name + ' ' + config.user.email 51 | } 52 | 53 | output = tpl(data); 54 | fs.writeFileSync(process.cwd() + '/LICENSE', output, 'utf-8'); 55 | log.success(license + ' license is saved to your project!'); 56 | } 57 | -------------------------------------------------------------------------------- /lib/download.js: -------------------------------------------------------------------------------- 1 | var Config = require('myconf'); 2 | var Download = require('download'); 3 | var progress = require('download-status'); 4 | var path = require('path'); 5 | 6 | module.exports = function(options) { 7 | var config = new Config('.tokaconfig'); 8 | if (options.name) { 9 | // down from url and save as name 10 | var url = options._[1]; 11 | var name = options.name; 12 | config 13 | .set(name, url) 14 | .then(function() { 15 | log.success(name.cyan, 'is saved to your config file!'); 16 | }) 17 | } else { 18 | // fetch url from config file by name 19 | var name = options._[1]; 20 | var urlRe = /^(https?:\/\/)?([\da-z\.-]+)\.([a-z\.]{2,6})([\/\w \.-]*)*\/?$/ 21 | if (urlRe.test(name)) { 22 | download(name) 23 | .then(function () { 24 | log.success('Saved to current dir!'); 25 | }) 26 | .catch(function (err) { 27 | log.error(err) 28 | }) 29 | } else { 30 | config 31 | .get(name) 32 | .then(function(url) { 33 | download(url) 34 | .then(function () { 35 | log.success(name.cyan, 'is saved to current dir!'); 36 | }) 37 | .catch(function (err) { 38 | log.error(err) 39 | }) 40 | }) 41 | } 42 | } 43 | } 44 | 45 | function download (url) { 46 | return new Promise(function (resolve, reject) { 47 | new Download({ 48 | mode: '755' 49 | }) 50 | .use(progress()) 51 | .get(url) 52 | .dest(process.cwd()) 53 | .run(function (err, files) { 54 | if (!err) { 55 | resolve(files) 56 | } else { 57 | reject(err) 58 | } 59 | }); 60 | }) 61 | 62 | } 63 | -------------------------------------------------------------------------------- /lib/gitignore/TeX.gitignore: -------------------------------------------------------------------------------- 1 | ## Core latex/pdflatex auxiliary files: 2 | *.aux 3 | *.lof 4 | *.log 5 | *.lot 6 | *.fls 7 | *.out 8 | *.toc 9 | 10 | ## Intermediate documents: 11 | *.dvi 12 | *-converted-to.* 13 | # these rules might exclude image files for figures etc. 14 | # *.ps 15 | # *.eps 16 | # *.pdf 17 | 18 | ## Bibliography auxiliary files (bibtex/biblatex/biber): 19 | *.bbl 20 | *.bcf 21 | *.blg 22 | *-blx.aux 23 | *-blx.bib 24 | *.brf 25 | *.run.xml 26 | 27 | ## Build tool auxiliary files: 28 | *.fdb_latexmk 29 | *.synctex 30 | *.synctex.gz 31 | *.synctex.gz(busy) 32 | *.pdfsync 33 | 34 | ## Auxiliary and intermediate files from other packages: 35 | 36 | # algorithms 37 | *.alg 38 | *.loa 39 | 40 | # achemso 41 | acs-*.bib 42 | 43 | # amsthm 44 | *.thm 45 | 46 | # beamer 47 | *.nav 48 | *.snm 49 | *.vrb 50 | 51 | #(e)ledmac/(e)ledpar 52 | *.end 53 | *.[1-9] 54 | *.[1-9][0-9] 55 | *.[1-9][0-9][0-9] 56 | *.[1-9]R 57 | *.[1-9][0-9]R 58 | *.[1-9][0-9][0-9]R 59 | *.eledsec[1-9] 60 | *.eledsec[1-9]R 61 | *.eledsec[1-9][0-9] 62 | *.eledsec[1-9][0-9]R 63 | *.eledsec[1-9][0-9][0-9] 64 | *.eledsec[1-9][0-9][0-9]R 65 | 66 | # glossaries 67 | *.acn 68 | *.acr 69 | *.glg 70 | *.glo 71 | *.gls 72 | 73 | # hyperref 74 | *.brf 75 | 76 | # knitr 77 | *-concordance.tex 78 | *.tikz 79 | *-tikzDictionary 80 | 81 | # listings 82 | *.lol 83 | 84 | # makeidx 85 | *.idx 86 | *.ilg 87 | *.ind 88 | *.ist 89 | 90 | # minitoc 91 | *.maf 92 | *.mtc 93 | *.mtc0 94 | 95 | # minted 96 | *.pyg 97 | 98 | # morewrites 99 | *.mw 100 | 101 | # nomencl 102 | *.nlo 103 | 104 | # sagetex 105 | *.sagetex.sage 106 | *.sagetex.py 107 | *.sagetex.scmd 108 | 109 | # sympy 110 | *.sout 111 | *.sympy 112 | sympy-plots-for-*.tex/ 113 | 114 | # todonotes 115 | *.tdo 116 | 117 | # xindy 118 | *.xdy 119 | -------------------------------------------------------------------------------- /lib/gitignore/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # Contributing guidelines 2 | 3 | We’d love you to help us improve this project. To help us keep this collection 4 | high quality, we request that contributions adhere to the following guidelines. 5 | 6 | - **Provide a link to the application or project’s homepage**. Unless it’s 7 | extremely popular, there’s a chance the maintainers don’t know about or use 8 | the language, framework, editor, app, or project your change applies to. 9 | 10 | - **Provide links to documentation** supporting the change you’re making. 11 | Current, canonical documentation mentioning the files being ignored is best. 12 | If documentation isn’t available to support your change, do the best you can 13 | to explain what the files being ignored are for. 14 | 15 | - **Explain why you’re making a change**. Even if it seems self-evident, please 16 | take a sentence or two to tell us why your change or addition should happen. 17 | It’s especially helpful to articulate why this change applies to *everyone* 18 | who works with the applicable technology, rather than just you or your team. 19 | 20 | - **Please consider the scope of your change**. If your change specific to a 21 | certain language or framework, then make sure the change is made to the 22 | template for that language or framework, rather than to the template for an 23 | editor, tool, or operating system. 24 | 25 | - **Please only modify *one template* per pull request**. This helps keep pull 26 | requests and feedback focused on a specific project or technology. 27 | 28 | In general, the more you can do to help us understand the change you’re making, 29 | the more likely we’ll be to accept your contribution quickly. 30 | 31 | Please also understand that we can’t list every tool that ever existed. 32 | Our aim is to curate a collection of the *most common and helpful* templates, 33 | not to make sure we cover every project possible. If we choose not to 34 | include your language, tool, or project, it’s not because it’s not awesome. 35 | -------------------------------------------------------------------------------- /lib/list/gitignore.js: -------------------------------------------------------------------------------- 1 | var langs = [ 2 | 'Actionscript', 3 | 'Ada', 4 | 'Agda', 5 | 'Android', 6 | 'AppEngine', 7 | 'AppceleratorTitanium', 8 | 'ArchLinuxPackages', 9 | 'Autotools', 10 | 'C++', 11 | 'C', 12 | 'CFWheels', 13 | 'CMake', 14 | 'CakePHP', 15 | 'ChefCookbook', 16 | 'Clojure', 17 | 'CodeIgniter', 18 | 'CommonLisp', 19 | 'Composer', 20 | 'Concrete5', 21 | 'Coq', 22 | 'CraftCMS', 23 | 'DM', 24 | 'Dart', 25 | 'Default', 26 | 'Delphi', 27 | 'Drupal', 28 | 'EPiServer', 29 | 'Eagle', 30 | 'Elisp', 31 | 'Elixir', 32 | 'Erlang', 33 | 'ExpressionEngine', 34 | 'ExtJs', 35 | 'Fancy', 36 | 'Finale', 37 | 'ForceDotCom', 38 | 'Fortran', 39 | 'FuelPHP', 40 | 'GWT', 41 | 'Gcov', 42 | 'Go', 43 | 'Gradle', 44 | 'Grails', 45 | 'Haskell', 46 | 'IGORPro', 47 | 'Idris', 48 | 'Java', 49 | 'Jboss', 50 | 'Jekyll', 51 | 'Joomla', 52 | 'Jython', 53 | 'Kohana', 54 | 'LabVIEW', 55 | 'Laravel', 56 | 'Leiningen', 57 | 'LemonStand', 58 | 'Lilypond', 59 | 'Lithium', 60 | 'Lua', 61 | 'Magento', 62 | 'Maven', 63 | 'Mercury', 64 | 'MetaProgrammingSystem', 65 | 'Meteor', 66 | 'Nanoc', 67 | 'Nim', 68 | 'Node', 69 | 'OCaml', 70 | 'OSX', 71 | 'Objective-C', 72 | 'Opa', 73 | 'OpenCart', 74 | 'OracleForms', 75 | 'Packer', 76 | 'Perl', 77 | 'Phalcon', 78 | 'PlayFrameworko', 79 | 'Plone', 80 | 'Prestashop', 81 | 'Processing', 82 | 'Python', 83 | 'Qooxdoo', 84 | 'Qt', 85 | 'R', 86 | 'ROS', 87 | 'Rails', 88 | 'RhodesRhomobile', 89 | 'Ruby', 90 | 'Rust', 91 | 'SCons', 92 | 'Sass', 93 | 'Scala', 94 | 'Scrivener', 95 | 'Sdcc', 96 | 'SeamGen', 97 | 'SketchUp', 98 | 'Stella', 99 | 'SugarCRM', 100 | 'Swift', 101 | 'Symfony', 102 | 'SymphonyCMS', 103 | 'TeX', 104 | 'Textpattern', 105 | 'TurboGears2', 106 | 'Typo3', 107 | 'Umbraco', 108 | 'Unity', 109 | 'VVVV', 110 | 'VisualStudio', 111 | 'Waf', 112 | 'Windows', 113 | 'WordPress', 114 | 'Xojo', 115 | 'Yeoman', 116 | 'Yii', 117 | 'ZendFramework', 118 | 'Zephir' 119 | ]; 120 | 121 | exports.langs = function () { 122 | return langs; 123 | }; -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Toka 2 | 3 | [![NPM version](https://img.shields.io/npm/v/toka.svg?style=flat-square)](https://www.npmjs.com/package/toka) 4 | [![NPM download](https://img.shields.io/npm/dm/toka.svg?style=flat-square)](https://www.npmjs.com/package/toka) 5 | [![David Status](https://img.shields.io/david/egoist/toka.svg?style=flat-square)](https://david-dm.org/egoist/toka) 6 | 7 | ### A handy tool to generate common files in command line 8 | 9 | I used to searching in Google then copy and paste these files, silly. 10 | 11 | ```bash 12 | npm install toka -g 13 | 14 | toka 15 | toka -v 16 | toka .gitignore # alias to toka g/git 17 | toka .bowerrc # alias to toka b 18 | toka license # alias to toka l 19 | toka webpack # alias to toka w 20 | toka gulp # alias to toka gu 21 | toka dl # alias to toka d/download 22 | ``` 23 | 24 | **New feature!** 25 | 26 | ```bash 27 | >_ toka dl https://some-url.com/webpack.config.dev.js --name hotreload 28 | :: hotreload is saved to your config file! 29 | 30 | >_ toka dl hotreload 31 | :: fetch : https://some-url.com/webpack.config.dev.js 32 | :: progress : [====================] 100% 0.0s 33 | 34 | :: hotreload is saved to current dir! 35 | 36 | # works like wget when not appending `--name` 37 | >_ toka dl http://use-url-directly-is-ok-too.com/a.js 38 | 39 | ``` 40 | 41 | #### Arguments: 42 | 43 | webpack/gitignore/gulp/bowerrc: 44 | 45 | - --dir: the directory to save to 46 | 47 | gitignore only: 48 | 49 | - -d/--default : generate default file 50 | - -a/--append : append to an existing file 51 | - -g/--global : save to ~/.gitignore_global 52 | 53 | webpack only: 54 | 55 | - -p/--path 56 | - -f/--filename 57 | - -e/--entry 58 | 59 | gulp only: 60 | 61 | - -b/--babel : use gulpfile.babel.js 62 | 63 | Example: 64 | 65 | ```bash 66 | toka .gitignore -d 67 | toka .gitignore python,go -a 68 | toka .gitignore windows 69 | toka .bowerrc lib 70 | toka license MIT 71 | toka gulp -b 72 | toka webpack -e src/app/app.js -p /build/js -f bundle.js 73 | ``` 74 | 75 | The `.gitignore` languages we support: [Full List](lib/list/gitignore.js) 76 | 77 | The LICENSE type we support: 78 | 79 | (Fuzzy search is now supported! It means you can simply type things like `toka l apa` to add Apache license) 80 | 81 | - Apache-2.0 82 | - BSD-2 83 | - BSD-3 84 | - GPL-2.0 85 | - ISC 86 | - MIT 87 | - MPL-2.0 88 | - WTF 89 | - [SOX](https://github.com/egoist/sox-license) 90 | 91 | Yap, here we go and go happy. 92 | 93 | **Q: what does toka stand for?** 94 | 95 | **A: My girlfriend, here she is: [NSFW](http://ww4.sinaimg.cn/large/a15b4afegw1enz38of1lug20dw07t1kx.gif)** 96 | 97 | ## LICENSE 98 | 99 | [MIT](LICENSE) 100 | -------------------------------------------------------------------------------- /lib/gitignore.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs'); 2 | var path = require('path'); 3 | var userHome = require('user-home'); 4 | var temp_langs = require('./list/gitignore').langs(); 5 | var langs = []; 6 | for (var i = 0; i < temp_langs.length; i++) { 7 | langs.push(temp_langs[i].toLowerCase()); 8 | } 9 | langs.sort(); 10 | 11 | var notFound = function () { 12 | log.error('We don\' support that type of language, sorry'); 13 | console.log('see USAGE:'); 14 | console.log(' $ '.cyan + 'toka .gitignore '); 15 | console.log('\nwhat we support:'); 16 | var output = ''; 17 | var c_langs = langs.slice(0); 18 | for (var index in c_langs) { 19 | var order = parseInt(index) + 1, 20 | prefix = '[' + index + '] ', 21 | main = prefix.cyan + c_langs[index]; 22 | if (order % 3 == 0) 23 | c_langs[index] = main.substring(0, 36) + '\n'; 24 | else { 25 | c_langs[index] = main + ' '; 26 | c_langs[index] = c_langs[index].substring(0, 36) 27 | } 28 | 29 | output += c_langs[index]; 30 | 31 | } 32 | console.log(output); 33 | } 34 | 35 | module.exports = function (options) { 36 | 37 | var language = options._[1] ? options._[1].split(',') : ''; 38 | if (options.d || options.default) language = ['Default']; 39 | if (!language) { 40 | 41 | notFound(); 42 | 43 | } else { 44 | var all = ''; 45 | for (var index in language) { 46 | var order = parseInt(index); 47 | var lang = language[index].toLowerCase(); 48 | var check = require('./helper').checkInArray(langs, lang); 49 | if (!check) { 50 | var guess = ''; 51 | for (var i = 0; i < langs.length; i++) { 52 | if (require('./helper').fuzzy(langs[i], lang)) { 53 | guess = langs[i]; 54 | } 55 | } 56 | notFound(); 57 | console.log(''); 58 | console.log(' Do you mean %s ?'.cyan, guess); 59 | return; 60 | } 61 | var file = fs.readFileSync(__dirname + '/gitignore/' + lang + '.gitignore').toString('utf8'); 62 | all += file; 63 | 64 | } 65 | var dir = (options.g || options.global) 66 | ? userHome + '/.gitignore_global' 67 | : (path.join(process.cwd(), options.dir || '') + '/.gitignore'); 68 | var where = (options.g || options.global) ? ' globally' : ''; 69 | if (options.a || options.append) { 70 | fs.appendFileSync(dir, all, 'utf-8'); 71 | log.success(`${language.toString()} has been append to .gitignore ${where}!`); 72 | } else { 73 | fs.writeFileSync(dir, all, 'utf-8'); 74 | log.success(`The .gitignore file for your ${language.toString()} project is saved ${where}!`); 75 | } 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /lib/gitignore/Magento.gitignore: -------------------------------------------------------------------------------- 1 | .htaccess.sample 2 | .modgit/ 3 | .modman/ 4 | app/code/community/Phoenix/ 5 | app/code/community/Cm/ 6 | app/code/core/ 7 | app/design/adminhtml/default/default/ 8 | app/design/frontend/base/ 9 | app/design/frontend/rwd/ 10 | app/design/frontend/default/blank/ 11 | app/design/frontend/default/default/ 12 | app/design/frontend/default/iphone/ 13 | app/design/frontend/default/modern/ 14 | app/design/frontend/enterprise/default 15 | app/design/install/ 16 | app/etc/modules/Enterprise_* 17 | app/etc/modules/Mage_All.xml 18 | app/etc/modules/Mage_Api.xml 19 | app/etc/modules/Mage_Api2.xml 20 | app/etc/modules/Mage_Authorizenet.xml 21 | app/etc/modules/Mage_Bundle.xml 22 | app/etc/modules/Mage_Captcha.xml 23 | app/etc/modules/Mage_Centinel.xml 24 | app/etc/modules/Mage_Compiler.xml 25 | app/etc/modules/Mage_ConfigurableSwatches.xml 26 | app/etc/modules/Mage_Connect.xml 27 | app/etc/modules/Mage_CurrencySymbol.xml 28 | app/etc/modules/Mage_Downloadable.xml 29 | app/etc/modules/Mage_ImportExport.xml 30 | app/etc/modules/Mage_LoadTest.xml 31 | app/etc/modules/Mage_Oauth.xml 32 | app/etc/modules/Mage_PageCache.xml 33 | app/etc/modules/Mage_Persistent.xml 34 | app/etc/modules/Mage_Weee.xml 35 | app/etc/modules/Mage_Widget.xml 36 | app/etc/modules/Mage_XmlConnect.xml 37 | app/etc/modules/Phoenix_Moneybookers.xml 38 | app/etc/modules/Cm_RedisSession.xml 39 | app/etc/applied.patches.list 40 | app/etc/config.xml 41 | app/etc/enterprise.xml 42 | app/etc/local.xml.additional 43 | app/etc/local.xml.template 44 | app/etc/local.xml 45 | app/.htaccess 46 | app/locale/ 47 | app/Mage.php 48 | /cron.php 49 | cron.sh 50 | downloader/ 51 | errors/ 52 | favicon.ico 53 | /get.php 54 | includes/ 55 | /index.php 56 | index.php.sample 57 | /install.php 58 | js/blank.html 59 | js/calendar/ 60 | js/enterprise/ 61 | js/extjs/ 62 | js/firebug/ 63 | js/flash/ 64 | js/index.php 65 | js/jscolor/ 66 | js/lib/ 67 | js/mage/ 68 | js/prototype/ 69 | js/scriptaculous/ 70 | js/spacer.gif 71 | js/tiny_mce/ 72 | js/varien/ 73 | lib/3Dsecure/ 74 | lib/Apache/ 75 | lib/flex/ 76 | lib/googlecheckout/ 77 | lib/.htaccess 78 | lib/LinLibertineFont/ 79 | lib/Mage/ 80 | lib/PEAR/ 81 | lib/Pelago/ 82 | lib/phpseclib/ 83 | lib/Varien/ 84 | lib/Zend/ 85 | lib/Cm/ 86 | lib/Credis/ 87 | lib/Magento/ 88 | LICENSE_AFL.txt 89 | LICENSE.html 90 | LICENSE.txt 91 | LICENSE_EE* 92 | mage 93 | media/customer/ 94 | media/dhl/ 95 | media/downloadable/ 96 | media/.htaccess 97 | media/import/ 98 | media/xmlconnect/ 99 | media/catalog/product/cache/ 100 | media/catalog/product/placeholder/default/ 101 | /api.php 102 | nbproject/ 103 | pear 104 | pear/ 105 | php.ini.sample 106 | pkginfo/ 107 | RELEASE_NOTES.txt 108 | shell/abstract.php 109 | shell/compiler.php 110 | shell/indexer.php 111 | shell/log.php 112 | sitemap.xml 113 | skin/adminhtml/default/default/ 114 | skin/adminhtml/default/enterprise 115 | skin/frontend/base/ 116 | skin/frontend/rwd/ 117 | skin/frontend/default/blank/ 118 | skin/frontend/default/blue/ 119 | skin/frontend/default/default/ 120 | skin/frontend/default/french/ 121 | skin/frontend/default/german/ 122 | skin/frontend/default/iphone/ 123 | skin/frontend/default/modern/ 124 | skin/frontend/enterprise 125 | skin/install/ 126 | var/ 127 | -------------------------------------------------------------------------------- /lib/gitignore/README.md: -------------------------------------------------------------------------------- 1 | # A collection of `.gitignore` templates 2 | 3 | This is GitHub’s collection of [`.gitignore`][man] file templates. 4 | We use this list to populate the `.gitignore` template choosers available 5 | in the GitHub.com interface when creating new repositories and files. 6 | 7 | For more information about how `.gitignore` files work, and how to use them, 8 | the following resources are a great place to start: 9 | 10 | - The [Ignoring Files chapter][chapter] of the [Pro Git][progit] book. 11 | - The [Ignoring Files article][help] on the GitHub Help site. 12 | - The [gitignore(5)][man] manual page. 13 | 14 | [man]: http://git-scm.com/docs/gitignore 15 | [help]: https://help.github.com/articles/ignoring-files 16 | [chapter]: http://git-scm.com/book/en/Git-Basics-Recording-Changes-to-the-Repository#Ignoring-Files 17 | [progit]: http://git-scm.com/book 18 | 19 | ## Folder structure 20 | 21 | The files in the root directory are for `.gitignore` templates that are 22 | project specific, such as language or framework specific templates. 23 | Global (operating system or editor specific) templates should go into the 24 | [`Global/`](./Global) directory. 25 | 26 | ## Contributing guidelines 27 | 28 | We’d love you to help us improve this project. To help us keep this collection 29 | high quality, we request that contributions adhere to the following guidelines. 30 | 31 | - **Provide a link to the application or project’s homepage**. Unless it’s 32 | extremely popular, there’s a chance the maintainers don’t know about or use 33 | the language, framework, editor, app, or project your change applies to. 34 | 35 | - **Provide links to documentation** supporting the change you’re making. 36 | Current, canonical documentation mentioning the files being ignored is best. 37 | If documentation isn’t available to support your change, do the best you can 38 | to explain what the files being ignored are for. 39 | 40 | - **Explain why you’re making a change**. Even if it seems self-evident, please 41 | take a sentence or two to tell us why your change or addition should happen. 42 | It’s especially helpful to articulate why this change applies to *everyone* 43 | who works with the applicable technology, rather than just you or your team. 44 | 45 | - **Please consider the scope of your change**. If your change specific to a 46 | certain language or framework, then make sure the change is made to the 47 | template for that language or framework, rather than to the template for an 48 | editor, tool, or operating system. 49 | 50 | - **Please only modify *one template* per pull request**. This helps keep pull 51 | requests and feedback focused on a specific project or technology. 52 | 53 | In general, the more you can do to help us understand the change you’re making, 54 | the more likely we’ll be to accept your contribution quickly. 55 | 56 | Please also understand that we can’t list every tool that ever existed. 57 | Our aim is to curate a collection of the *most common and helpful* templates, 58 | not to make sure we cover every project possible. If we choose not to 59 | include your language, tool, or project, it’s not because it’s not awesome. 60 | 61 | ## Contributing workflow 62 | 63 | Here’s how we suggest you go about proposing a change to this project: 64 | 65 | 1. [Fork this project][fork] to your account. 66 | 2. [Create a branch][branch] for the change you intend to make. 67 | 3. Make your changes to your fork. 68 | 4. [Send a pull request][pr] from your fork’s branch to our `master` branch. 69 | 70 | Using the web-based interface to make changes is fine too, and will help you 71 | by automatically forking the project and prompting to send a pull request too. 72 | 73 | [fork]: http://help.github.com/forking/ 74 | [branch]: https://help.github.com/articles/creating-and-deleting-branches-within-your-repository 75 | [pr]: http://help.github.com/pull-requests/ 76 | 77 | ## License 78 | 79 | [MIT](./LICENSE). 80 | -------------------------------------------------------------------------------- /lib/gitignore/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 | *.userosscache 8 | *.sln.docstates 9 | 10 | # User-specific files (MonoDevelop/Xamarin Studio) 11 | *.userprefs 12 | 13 | # Build results 14 | [Dd]ebug/ 15 | [Dd]ebugPublic/ 16 | [Rr]elease/ 17 | [Rr]eleases/ 18 | x64/ 19 | x86/ 20 | build/ 21 | bld/ 22 | [Bb]in/ 23 | [Oo]bj/ 24 | 25 | # Roslyn cache directories 26 | *.ide/ 27 | 28 | # MSTest test Results 29 | [Tt]est[Rr]esult*/ 30 | [Bb]uild[Ll]og.* 31 | 32 | #NUNIT 33 | *.VisualState.xml 34 | TestResult.xml 35 | 36 | # Build Results of an ATL Project 37 | [Dd]ebugPS/ 38 | [Rr]eleasePS/ 39 | dlldata.c 40 | 41 | *_i.c 42 | *_p.c 43 | *_i.h 44 | *.ilk 45 | *.meta 46 | *.obj 47 | *.pch 48 | *.pdb 49 | *.pgc 50 | *.pgd 51 | *.rsp 52 | *.sbr 53 | *.tlb 54 | *.tli 55 | *.tlh 56 | *.tmp 57 | *.tmp_proj 58 | *.log 59 | *.vspscc 60 | *.vssscc 61 | .builds 62 | *.pidb 63 | *.svclog 64 | *.scc 65 | 66 | # Chutzpah Test files 67 | _Chutzpah* 68 | 69 | # Visual C++ cache files 70 | ipch/ 71 | *.aps 72 | *.ncb 73 | *.opensdf 74 | *.sdf 75 | *.cachefile 76 | 77 | # Visual Studio profiler 78 | *.psess 79 | *.vsp 80 | *.vspx 81 | 82 | # TFS 2012 Local Workspace 83 | $tf/ 84 | 85 | # Guidance Automation Toolkit 86 | *.gpState 87 | 88 | # ReSharper is a .NET coding add-in 89 | _ReSharper*/ 90 | *.[Rr]e[Ss]harper 91 | *.DotSettings.user 92 | 93 | # JustCode is a .NET coding addin-in 94 | .JustCode 95 | 96 | # TeamCity is a build add-in 97 | _TeamCity* 98 | 99 | # DotCover is a Code Coverage Tool 100 | *.dotCover 101 | 102 | # NCrunch 103 | _NCrunch_* 104 | .*crunch*.local.xml 105 | 106 | # MightyMoose 107 | *.mm.* 108 | AutoTest.Net/ 109 | 110 | # Web workbench (sass) 111 | .sass-cache/ 112 | 113 | # Installshield output folder 114 | [Ee]xpress/ 115 | 116 | # DocProject is a documentation generator add-in 117 | DocProject/buildhelp/ 118 | DocProject/Help/*.HxT 119 | DocProject/Help/*.HxC 120 | DocProject/Help/*.hhc 121 | DocProject/Help/*.hhk 122 | DocProject/Help/*.hhp 123 | DocProject/Help/Html2 124 | DocProject/Help/html 125 | 126 | # Click-Once directory 127 | publish/ 128 | 129 | # Publish Web Output 130 | *.[Pp]ublish.xml 131 | *.azurePubxml 132 | # TODO: Comment the next line if you want to checkin your web deploy settings 133 | # but database connection strings (with potential passwords) will be unencrypted 134 | *.pubxml 135 | *.publishproj 136 | 137 | # NuGet Packages 138 | *.nupkg 139 | # The packages folder can be ignored because of Package Restore 140 | **/packages/* 141 | # except build/, which is used as an MSBuild target. 142 | !**/packages/build/ 143 | # Uncomment if necessary however generally it will be regenerated when needed 144 | #!**/packages/repositories.config 145 | 146 | # Windows Azure Build Output 147 | csx/ 148 | *.build.csdef 149 | 150 | # Windows Store app package directory 151 | AppPackages/ 152 | 153 | # Others 154 | *.[Cc]ache 155 | ClientBin/ 156 | [Ss]tyle[Cc]op.* 157 | ~$* 158 | *~ 159 | *.dbmdl 160 | *.dbproj.schemaview 161 | *.pfx 162 | *.publishsettings 163 | node_modules/ 164 | bower_components/ 165 | 166 | # RIA/Silverlight projects 167 | Generated_Code/ 168 | 169 | # Backup & report files from converting an old project file 170 | # to a newer Visual Studio version. Backup files are not needed, 171 | # because we have git ;-) 172 | _UpgradeReport_Files/ 173 | Backup*/ 174 | UpgradeLog*.XML 175 | UpgradeLog*.htm 176 | 177 | # SQL Server files 178 | *.mdf 179 | *.ldf 180 | 181 | # Business Intelligence projects 182 | *.rdl.data 183 | *.bim.layout 184 | *.bim_*.settings 185 | 186 | # Microsoft Fakes 187 | FakesAssemblies/ 188 | 189 | # Node.js Tools for Visual Studio 190 | .ntvs_analysis.dat 191 | 192 | # Visual Studio 6 build log 193 | *.plg 194 | 195 | # Visual Studio 6 workspace options file 196 | *.opt 197 | -------------------------------------------------------------------------------- /lib/license/Apache-2.0.txt: -------------------------------------------------------------------------------- 1 | 2 | Apache License 3 | Version 2.0, January 2004 4 | http://www.apache.org/licenses/ 5 | 6 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 7 | 8 | 1. Definitions. 9 | 10 | "License" shall mean the terms and conditions for use, reproduction, 11 | and distribution as defined by Sections 1 through 9 of this document. 12 | 13 | "Licensor" shall mean the copyright owner or entity authorized by 14 | the copyright owner that is granting the License. 15 | 16 | "Legal Entity" shall mean the union of the acting entity and all 17 | other entities that control, are controlled by, or are under common 18 | control with that entity. For the purposes of this definition, 19 | "control" means (i) the power, direct or indirect, to cause the 20 | direction or management of such entity, whether by contract or 21 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 22 | outstanding shares, or (iii) beneficial ownership of such entity. 23 | 24 | "You" (or "Your") shall mean an individual or Legal Entity 25 | exercising permissions granted by this License. 26 | 27 | "Source" form shall mean the preferred form for making modifications, 28 | including but not limited to software source code, documentation 29 | source, and configuration files. 30 | 31 | "Object" form shall mean any form resulting from mechanical 32 | transformation or translation of a Source form, including but 33 | not limited to compiled object code, generated documentation, 34 | and conversions to other media types. 35 | 36 | "Work" shall mean the work of authorship, whether in Source or 37 | Object form, made available under the License, as indicated by a 38 | copyright notice that is included in or attached to the work 39 | (an example is provided in the Appendix below). 40 | 41 | "Derivative Works" shall mean any work, whether in Source or Object 42 | form, that is based on (or derived from) the Work and for which the 43 | editorial revisions, annotations, elaborations, or other modifications 44 | represent, as a whole, an original work of authorship. For the purposes 45 | of this License, Derivative Works shall not include works that remain 46 | separable from, or merely link (or bind by name) to the interfaces of, 47 | the Work and Derivative Works thereof. 48 | 49 | "Contribution" shall mean any work of authorship, including 50 | the original version of the Work and any modifications or additions 51 | to that Work or Derivative Works thereof, that is intentionally 52 | submitted to Licensor for inclusion in the Work by the copyright owner 53 | or by an individual or Legal Entity authorized to submit on behalf of 54 | the copyright owner. For the purposes of this definition, "submitted" 55 | means any form of electronic, verbal, or written communication sent 56 | to the Licensor or its representatives, including but not limited to 57 | communication on electronic mailing lists, source code control systems, 58 | and issue tracking systems that are managed by, or on behalf of, the 59 | Licensor for the purpose of discussing and improving the Work, but 60 | excluding communication that is conspicuously marked or otherwise 61 | designated in writing by the copyright owner as "Not a Contribution." 62 | 63 | "Contributor" shall mean Licensor and any individual or Legal Entity 64 | on behalf of whom a Contribution has been received by Licensor and 65 | subsequently incorporated within the Work. 66 | 67 | 2. Grant of Copyright License. Subject to the terms and conditions of 68 | this License, each Contributor hereby grants to You a perpetual, 69 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 70 | copyright license to reproduce, prepare Derivative Works of, 71 | publicly display, publicly perform, sublicense, and distribute the 72 | Work and such Derivative Works in Source or Object form. 73 | 74 | 3. Grant of Patent License. Subject to the terms and conditions of 75 | this License, each Contributor hereby grants to You a perpetual, 76 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 77 | (except as stated in this section) patent license to make, have made, 78 | use, offer to sell, sell, import, and otherwise transfer the Work, 79 | where such license applies only to those patent claims licensable 80 | by such Contributor that are necessarily infringed by their 81 | Contribution(s) alone or by combination of their Contribution(s) 82 | with the Work to which such Contribution(s) was submitted. If You 83 | institute patent litigation against any entity (including a 84 | cross-claim or counterclaim in a lawsuit) alleging that the Work 85 | or a Contribution incorporated within the Work constitutes direct 86 | or contributory patent infringement, then any patent licenses 87 | granted to You under this License for that Work shall terminate 88 | as of the date such litigation is filed. 89 | 90 | 4. Redistribution. You may reproduce and distribute copies of the 91 | Work or Derivative Works thereof in any medium, with or without 92 | modifications, and in Source or Object form, provided that You 93 | meet the following conditions: 94 | 95 | (a) You must give any other recipients of the Work or 96 | Derivative Works a copy of this License; and 97 | 98 | (b) You must cause any modified files to carry prominent notices 99 | stating that You changed the files; and 100 | 101 | (c) You must retain, in the Source form of any Derivative Works 102 | that You distribute, all copyright, patent, trademark, and 103 | attribution notices from the Source form of the Work, 104 | excluding those notices that do not pertain to any part of 105 | the Derivative Works; and 106 | 107 | (d) If the Work includes a "NOTICE" text file as part of its 108 | distribution, then any Derivative Works that You distribute must 109 | include a readable copy of the attribution notices contained 110 | within such NOTICE file, excluding those notices that do not 111 | pertain to any part of the Derivative Works, in at least one 112 | of the following places: within a NOTICE text file distributed 113 | as part of the Derivative Works; within the Source form or 114 | documentation, if provided along with the Derivative Works; or, 115 | within a display generated by the Derivative Works, if and 116 | wherever such third-party notices normally appear. The contents 117 | of the NOTICE file are for informational purposes only and 118 | do not modify the License. You may add Your own attribution 119 | notices within Derivative Works that You distribute, alongside 120 | or as an addendum to the NOTICE text from the Work, provided 121 | that such additional attribution notices cannot be construed 122 | as modifying the License. 123 | 124 | You may add Your own copyright statement to Your modifications and 125 | may provide additional or different license terms and conditions 126 | for use, reproduction, or distribution of Your modifications, or 127 | for any such Derivative Works as a whole, provided Your use, 128 | reproduction, and distribution of the Work otherwise complies with 129 | the conditions stated in this License. 130 | 131 | 5. Submission of Contributions. Unless You explicitly state otherwise, 132 | any Contribution intentionally submitted for inclusion in the Work 133 | by You to the Licensor shall be under the terms and conditions of 134 | this License, without any additional terms or conditions. 135 | Notwithstanding the above, nothing herein shall supersede or modify 136 | the terms of any separate license agreement you may have executed 137 | with Licensor regarding such Contributions. 138 | 139 | 6. Trademarks. This License does not grant permission to use the trade 140 | names, trademarks, service marks, or product names of the Licensor, 141 | except as required for reasonable and customary use in describing the 142 | origin of the Work and reproducing the content of the NOTICE file. 143 | 144 | 7. Disclaimer of Warranty. Unless required by applicable law or 145 | agreed to in writing, Licensor provides the Work (and each 146 | Contributor provides its Contributions) on an "AS IS" BASIS, 147 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 148 | implied, including, without limitation, any warranties or conditions 149 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 150 | PARTICULAR PURPOSE. You are solely responsible for determining the 151 | appropriateness of using or redistributing the Work and assume any 152 | risks associated with Your exercise of permissions under this License. 153 | 154 | 8. Limitation of Liability. In no event and under no legal theory, 155 | whether in tort (including negligence), contract, or otherwise, 156 | unless required by applicable law (such as deliberate and grossly 157 | negligent acts) or agreed to in writing, shall any Contributor be 158 | liable to You for damages, including any direct, indirect, special, 159 | incidental, or consequential damages of any character arising as a 160 | result of this License or out of the use or inability to use the 161 | Work (including but not limited to damages for loss of goodwill, 162 | work stoppage, computer failure or malfunction, or any and all 163 | other commercial damages or losses), even if such Contributor 164 | has been advised of the possibility of such damages. 165 | 166 | 9. Accepting Warranty or Additional Liability. While redistributing 167 | the Work or Derivative Works thereof, You may choose to offer, 168 | and charge a fee for, acceptance of support, warranty, indemnity, 169 | or other liability obligations and/or rights consistent with this 170 | License. However, in accepting such obligations, You may act only 171 | on Your own behalf and on Your sole responsibility, not on behalf 172 | of any other Contributor, and only if You agree to indemnify, 173 | defend, and hold each Contributor harmless for any liability 174 | incurred by, or claims asserted against, such Contributor by reason 175 | of your accepting any such warranty or additional liability. 176 | 177 | END OF TERMS AND CONDITIONS 178 | 179 | APPENDIX: How to apply the Apache License to your work. 180 | 181 | To apply the Apache License to your work, attach the following 182 | boilerplate notice, with the fields enclosed by brackets "[]" 183 | replaced with your own identifying information. (Don't include 184 | the brackets!) The text should be enclosed in the appropriate 185 | comment syntax for the file format. We also recommend that a 186 | file or class name and description of purpose be included on the 187 | same "printed page" as the copyright notice for easier 188 | identification within third-party archives. 189 | 190 | Copyright {{YEAR}} {{OWNER}} 191 | 192 | Licensed under the Apache License, Version 2.0 (the "License"); 193 | you may not use this file except in compliance with the License. 194 | You may obtain a copy of the License at 195 | 196 | http://www.apache.org/licenses/LICENSE-2.0 197 | 198 | Unless required by applicable law or agreed to in writing, software 199 | distributed under the License is distributed on an "AS IS" BASIS, 200 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 201 | See the License for the specific language governing permissions and 202 | limitations under the License. -------------------------------------------------------------------------------- /lib/license/GPL-2.0.txt: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc. 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. -------------------------------------------------------------------------------- /lib/license/MPL-2.0.txt: -------------------------------------------------------------------------------- 1 | Mozilla Public License Version 2.0 2 | ================================== 3 | 4 | 1. Definitions 5 | -------------- 6 | 7 | 1.1. "Contributor" 8 | means each individual or legal entity that creates, contributes to 9 | the creation of, or owns Covered Software. 10 | 11 | 1.2. "Contributor Version" 12 | means the combination of the Contributions of others (if any) used 13 | by a Contributor and that particular Contributor's Contribution. 14 | 15 | 1.3. "Contribution" 16 | means Covered Software of a particular Contributor. 17 | 18 | 1.4. "Covered Software" 19 | means Source Code Form to which the initial Contributor has attached 20 | the notice in Exhibit A, the Executable Form of such Source Code 21 | Form, and Modifications of such Source Code Form, in each case 22 | including portions thereof. 23 | 24 | 1.5. "Incompatible With Secondary Licenses" 25 | means 26 | 27 | (a) that the initial Contributor has attached the notice described 28 | in Exhibit B to the Covered Software; or 29 | 30 | (b) that the Covered Software was made available under the terms of 31 | version 1.1 or earlier of the License, but not also under the 32 | terms of a Secondary License. 33 | 34 | 1.6. "Executable Form" 35 | means any form of the work other than Source Code Form. 36 | 37 | 1.7. "Larger Work" 38 | means a work that combines Covered Software with other material, in 39 | a separate file or files, that is not Covered Software. 40 | 41 | 1.8. "License" 42 | means this document. 43 | 44 | 1.9. "Licensable" 45 | means having the right to grant, to the maximum extent possible, 46 | whether at the time of the initial grant or subsequently, any and 47 | all of the rights conveyed by this License. 48 | 49 | 1.10. "Modifications" 50 | means any of the following: 51 | 52 | (a) any file in Source Code Form that results from an addition to, 53 | deletion from, or modification of the contents of Covered 54 | Software; or 55 | 56 | (b) any new file in Source Code Form that contains any Covered 57 | Software. 58 | 59 | 1.11. "Patent Claims" of a Contributor 60 | means any patent claim(s), including without limitation, method, 61 | process, and apparatus claims, in any patent Licensable by such 62 | Contributor that would be infringed, but for the grant of the 63 | License, by the making, using, selling, offering for sale, having 64 | made, import, or transfer of either its Contributions or its 65 | Contributor Version. 66 | 67 | 1.12. "Secondary License" 68 | means either the GNU General Public License, Version 2.0, the GNU 69 | Lesser General Public License, Version 2.1, the GNU Affero General 70 | Public License, Version 3.0, or any later versions of those 71 | licenses. 72 | 73 | 1.13. "Source Code Form" 74 | means the form of the work preferred for making modifications. 75 | 76 | 1.14. "You" (or "Your") 77 | means an individual or a legal entity exercising rights under this 78 | License. For legal entities, "You" includes any entity that 79 | controls, is controlled by, or is under common control with You. For 80 | purposes of this definition, "control" means (a) the power, direct 81 | or indirect, to cause the direction or management of such entity, 82 | whether by contract or otherwise, or (b) ownership of more than 83 | fifty percent (50%) of the outstanding shares or beneficial 84 | ownership of such entity. 85 | 86 | 2. License Grants and Conditions 87 | -------------------------------- 88 | 89 | 2.1. Grants 90 | 91 | Each Contributor hereby grants You a world-wide, royalty-free, 92 | non-exclusive license: 93 | 94 | (a) under intellectual property rights (other than patent or trademark) 95 | Licensable by such Contributor to use, reproduce, make available, 96 | modify, display, perform, distribute, and otherwise exploit its 97 | Contributions, either on an unmodified basis, with Modifications, or 98 | as part of a Larger Work; and 99 | 100 | (b) under Patent Claims of such Contributor to make, use, sell, offer 101 | for sale, have made, import, and otherwise transfer either its 102 | Contributions or its Contributor Version. 103 | 104 | 2.2. Effective Date 105 | 106 | The licenses granted in Section 2.1 with respect to any Contribution 107 | become effective for each Contribution on the date the Contributor first 108 | distributes such Contribution. 109 | 110 | 2.3. Limitations on Grant Scope 111 | 112 | The licenses granted in this Section 2 are the only rights granted under 113 | this License. No additional rights or licenses will be implied from the 114 | distribution or licensing of Covered Software under this License. 115 | Notwithstanding Section 2.1(b) above, no patent license is granted by a 116 | Contributor: 117 | 118 | (a) for any code that a Contributor has removed from Covered Software; 119 | or 120 | 121 | (b) for infringements caused by: (i) Your and any other third party's 122 | modifications of Covered Software, or (ii) the combination of its 123 | Contributions with other software (except as part of its Contributor 124 | Version); or 125 | 126 | (c) under Patent Claims infringed by Covered Software in the absence of 127 | its Contributions. 128 | 129 | This License does not grant any rights in the trademarks, service marks, 130 | or logos of any Contributor (except as may be necessary to comply with 131 | the notice requirements in Section 3.4). 132 | 133 | 2.4. Subsequent Licenses 134 | 135 | No Contributor makes additional grants as a result of Your choice to 136 | distribute the Covered Software under a subsequent version of this 137 | License (see Section 10.2) or under the terms of a Secondary License (if 138 | permitted under the terms of Section 3.3). 139 | 140 | 2.5. Representation 141 | 142 | Each Contributor represents that the Contributor believes its 143 | Contributions are its original creation(s) or it has sufficient rights 144 | to grant the rights to its Contributions conveyed by this License. 145 | 146 | 2.6. Fair Use 147 | 148 | This License is not intended to limit any rights You have under 149 | applicable copyright doctrines of fair use, fair dealing, or other 150 | equivalents. 151 | 152 | 2.7. Conditions 153 | 154 | Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted 155 | in Section 2.1. 156 | 157 | 3. Responsibilities 158 | ------------------- 159 | 160 | 3.1. Distribution of Source Form 161 | 162 | All distribution of Covered Software in Source Code Form, including any 163 | Modifications that You create or to which You contribute, must be under 164 | the terms of this License. You must inform recipients that the Source 165 | Code Form of the Covered Software is governed by the terms of this 166 | License, and how they can obtain a copy of this License. You may not 167 | attempt to alter or restrict the recipients' rights in the Source Code 168 | Form. 169 | 170 | 3.2. Distribution of Executable Form 171 | 172 | If You distribute Covered Software in Executable Form then: 173 | 174 | (a) such Covered Software must also be made available in Source Code 175 | Form, as described in Section 3.1, and You must inform recipients of 176 | the Executable Form how they can obtain a copy of such Source Code 177 | Form by reasonable means in a timely manner, at a charge no more 178 | than the cost of distribution to the recipient; and 179 | 180 | (b) You may distribute such Executable Form under the terms of this 181 | License, or sublicense it under different terms, provided that the 182 | license for the Executable Form does not attempt to limit or alter 183 | the recipients' rights in the Source Code Form under this License. 184 | 185 | 3.3. Distribution of a Larger Work 186 | 187 | You may create and distribute a Larger Work under terms of Your choice, 188 | provided that You also comply with the requirements of this License for 189 | the Covered Software. If the Larger Work is a combination of Covered 190 | Software with a work governed by one or more Secondary Licenses, and the 191 | Covered Software is not Incompatible With Secondary Licenses, this 192 | License permits You to additionally distribute such Covered Software 193 | under the terms of such Secondary License(s), so that the recipient of 194 | the Larger Work may, at their option, further distribute the Covered 195 | Software under the terms of either this License or such Secondary 196 | License(s). 197 | 198 | 3.4. Notices 199 | 200 | You may not remove or alter the substance of any license notices 201 | (including copyright notices, patent notices, disclaimers of warranty, 202 | or limitations of liability) contained within the Source Code Form of 203 | the Covered Software, except that You may alter any license notices to 204 | the extent required to remedy known factual inaccuracies. 205 | 206 | 3.5. Application of Additional Terms 207 | 208 | You may choose to offer, and to charge a fee for, warranty, support, 209 | indemnity or liability obligations to one or more recipients of Covered 210 | Software. However, You may do so only on Your own behalf, and not on 211 | behalf of any Contributor. You must make it absolutely clear that any 212 | such warranty, support, indemnity, or liability obligation is offered by 213 | You alone, and You hereby agree to indemnify every Contributor for any 214 | liability incurred by such Contributor as a result of warranty, support, 215 | indemnity or liability terms You offer. You may include additional 216 | disclaimers of warranty and limitations of liability specific to any 217 | jurisdiction. 218 | 219 | 4. Inability to Comply Due to Statute or Regulation 220 | --------------------------------------------------- 221 | 222 | If it is impossible for You to comply with any of the terms of this 223 | License with respect to some or all of the Covered Software due to 224 | statute, judicial order, or regulation then You must: (a) comply with 225 | the terms of this License to the maximum extent possible; and (b) 226 | describe the limitations and the code they affect. Such description must 227 | be placed in a text file included with all distributions of the Covered 228 | Software under this License. Except to the extent prohibited by statute 229 | or regulation, such description must be sufficiently detailed for a 230 | recipient of ordinary skill to be able to understand it. 231 | 232 | 5. Termination 233 | -------------- 234 | 235 | 5.1. The rights granted under this License will terminate automatically 236 | if You fail to comply with any of its terms. However, if You become 237 | compliant, then the rights granted under this License from a particular 238 | Contributor are reinstated (a) provisionally, unless and until such 239 | Contributor explicitly and finally terminates Your grants, and (b) on an 240 | ongoing basis, if such Contributor fails to notify You of the 241 | non-compliance by some reasonable means prior to 60 days after You have 242 | come back into compliance. Moreover, Your grants from a particular 243 | Contributor are reinstated on an ongoing basis if such Contributor 244 | notifies You of the non-compliance by some reasonable means, this is the 245 | first time You have received notice of non-compliance with this License 246 | from such Contributor, and You become compliant prior to 30 days after 247 | Your receipt of the notice. 248 | 249 | 5.2. If You initiate litigation against any entity by asserting a patent 250 | infringement claim (excluding declaratory judgment actions, 251 | counter-claims, and cross-claims) alleging that a Contributor Version 252 | directly or indirectly infringes any patent, then the rights granted to 253 | You by any and all Contributors for the Covered Software under Section 254 | 2.1 of this License shall terminate. 255 | 256 | 5.3. In the event of termination under Sections 5.1 or 5.2 above, all 257 | end user license agreements (excluding distributors and resellers) which 258 | have been validly granted by You or Your distributors under this License 259 | prior to termination shall survive termination. 260 | 261 | ************************************************************************ 262 | * * 263 | * 6. Disclaimer of Warranty * 264 | * ------------------------- * 265 | * * 266 | * Covered Software is provided under this License on an "as is" * 267 | * basis, without warranty of any kind, either expressed, implied, or * 268 | * statutory, including, without limitation, warranties that the * 269 | * Covered Software is free of defects, merchantable, fit for a * 270 | * particular purpose or non-infringing. The entire risk as to the * 271 | * quality and performance of the Covered Software is with You. * 272 | * Should any Covered Software prove defective in any respect, You * 273 | * (not any Contributor) assume the cost of any necessary servicing, * 274 | * repair, or correction. This disclaimer of warranty constitutes an * 275 | * essential part of this License. No use of any Covered Software is * 276 | * authorized under this License except under this disclaimer. * 277 | * * 278 | ************************************************************************ 279 | 280 | ************************************************************************ 281 | * * 282 | * 7. Limitation of Liability * 283 | * -------------------------- * 284 | * * 285 | * Under no circumstances and under no legal theory, whether tort * 286 | * (including negligence), contract, or otherwise, shall any * 287 | * Contributor, or anyone who distributes Covered Software as * 288 | * permitted above, be liable to You for any direct, indirect, * 289 | * special, incidental, or consequential damages of any character * 290 | * including, without limitation, damages for lost profits, loss of * 291 | * goodwill, work stoppage, computer failure or malfunction, or any * 292 | * and all other commercial damages or losses, even if such party * 293 | * shall have been informed of the possibility of such damages. This * 294 | * limitation of liability shall not apply to liability for death or * 295 | * personal injury resulting from such party's negligence to the * 296 | * extent applicable law prohibits such limitation. Some * 297 | * jurisdictions do not allow the exclusion or limitation of * 298 | * incidental or consequential damages, so this exclusion and * 299 | * limitation may not apply to You. * 300 | * * 301 | ************************************************************************ 302 | 303 | 8. Litigation 304 | ------------- 305 | 306 | Any litigation relating to this License may be brought only in the 307 | courts of a jurisdiction where the defendant maintains its principal 308 | place of business and such litigation shall be governed by laws of that 309 | jurisdiction, without reference to its conflict-of-law provisions. 310 | Nothing in this Section shall prevent a party's ability to bring 311 | cross-claims or counter-claims. 312 | 313 | 9. Miscellaneous 314 | ---------------- 315 | 316 | This License represents the complete agreement concerning the subject 317 | matter hereof. If any provision of this License is held to be 318 | unenforceable, such provision shall be reformed only to the extent 319 | necessary to make it enforceable. Any law or regulation which provides 320 | that the language of a contract shall be construed against the drafter 321 | shall not be used to construe this License against a Contributor. 322 | 323 | 10. Versions of the License 324 | --------------------------- 325 | 326 | 10.1. New Versions 327 | 328 | Mozilla Foundation is the license steward. Except as provided in Section 329 | 10.3, no one other than the license steward has the right to modify or 330 | publish new versions of this License. Each version will be given a 331 | distinguishing version number. 332 | 333 | 10.2. Effect of New Versions 334 | 335 | You may distribute the Covered Software under the terms of the version 336 | of the License under which You originally received the Covered Software, 337 | or under the terms of any subsequent version published by the license 338 | steward. 339 | 340 | 10.3. Modified Versions 341 | 342 | If you create software not governed by this License, and you want to 343 | create a new license for such software, you may create and use a 344 | modified version of this License if you rename the license and remove 345 | any references to the name of the license steward (except to note that 346 | such modified license differs from this License). 347 | 348 | 10.4. Distributing Source Code Form that is Incompatible With Secondary 349 | Licenses 350 | 351 | If You choose to distribute Source Code Form that is Incompatible With 352 | Secondary Licenses under the terms of this version of the License, the 353 | notice described in Exhibit B of this License must be attached. 354 | 355 | Exhibit A - Source Code Form License Notice 356 | ------------------------------------------- 357 | 358 | This Source Code Form is subject to the terms of the Mozilla Public 359 | License, v. 2.0. If a copy of the MPL was not distributed with this 360 | file, You can obtain one at http://mozilla.org/MPL/2.0/. 361 | 362 | If it is not possible or desirable to put the notice in a particular 363 | file, then You may include the notice in a location (such as a LICENSE 364 | file in a relevant directory) where a recipient would be likely to look 365 | for such a notice. 366 | 367 | You may add additional accurate notices of copyright ownership. 368 | 369 | Exhibit B - "Incompatible With Secondary Licenses" Notice 370 | --------------------------------------------------------- 371 | 372 | This Source Code Form is "Incompatible With Secondary Licenses", as 373 | defined by the Mozilla Public License, v. 2.0. -------------------------------------------------------------------------------- /lib/gitignore/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_finder/* 14 | /administrator/components/com_installer/* 15 | /administrator/components/com_languages/* 16 | /administrator/components/com_login/* 17 | /administrator/components/com_media/* 18 | /administrator/components/com_menus/* 19 | /administrator/components/com_messages/* 20 | /administrator/components/com_modules/* 21 | /administrator/components/com_newsfeeds/* 22 | /administrator/components/com_plugins/* 23 | /administrator/components/com_redirect/* 24 | /administrator/components/com_search/* 25 | /administrator/components/com_templates/* 26 | /administrator/components/com_users/* 27 | /administrator/components/com_weblinks/* 28 | /administrator/components/index.html 29 | /administrator/help/* 30 | /administrator/includes/* 31 | /administrator/language/en-GB/ 32 | /administrator/language/en-GB/en-GB.com_admin.ini 33 | /administrator/language/en-GB/en-GB.com_admin.sys.ini 34 | /administrator/language/en-GB/en-GB.com_banners.ini 35 | /administrator/language/en-GB/en-GB.com_banners.sys.ini 36 | /administrator/language/en-GB/en-GB.com_cache.ini 37 | /administrator/language/en-GB/en-GB.com_cache.sys.ini 38 | /administrator/language/en-GB/en-GB.com_categories.ini 39 | /administrator/language/en-GB/en-GB.com_categories.sys.ini 40 | /administrator/language/en-GB/en-GB.com_checkin.ini 41 | /administrator/language/en-GB/en-GB.com_checkin.sys.ini 42 | /administrator/language/en-GB/en-GB.com_config.ini 43 | /administrator/language/en-GB/en-GB.com_config.sys.ini 44 | /administrator/language/en-GB/en-GB.com_contact.ini 45 | /administrator/language/en-GB/en-GB.com_contact.sys.ini 46 | /administrator/language/en-GB/en-GB.com_content.ini 47 | /administrator/language/en-GB/en-GB.com_content.sys.ini 48 | /administrator/language/en-GB/en-GB.com_cpanel.ini 49 | /administrator/language/en-GB/en-GB.com_cpanel.sys.ini 50 | /administrator/language/en-GB/en-GB.com_finder.ini 51 | /administrator/language/en-GB/en-GB.com_finder.sys.ini 52 | /administrator/language/en-GB/en-GB.com_installer.ini 53 | /administrator/language/en-GB/en-GB.com_installer.sys.ini 54 | /administrator/language/en-GB/en-GB.com_languages.ini 55 | /administrator/language/en-GB/en-GB.com_languages.sys.ini 56 | /administrator/language/en-GB/en-GB.com_login.ini 57 | /administrator/language/en-GB/en-GB.com_login.sys.ini 58 | /administrator/language/en-GB/en-GB.com_mailto.sys.ini 59 | /administrator/language/en-GB/en-GB.com_media.ini 60 | /administrator/language/en-GB/en-GB.com_media.sys.ini 61 | /administrator/language/en-GB/en-GB.com_menus.ini 62 | /administrator/language/en-GB/en-GB.com_menus.sys.ini 63 | /administrator/language/en-GB/en-GB.com_messages.ini 64 | /administrator/language/en-GB/en-GB.com_messages.sys.ini 65 | /administrator/language/en-GB/en-GB.com_modules.ini 66 | /administrator/language/en-GB/en-GB.com_modules.sys.ini 67 | /administrator/language/en-GB/en-GB.com_newsfeeds.ini 68 | /administrator/language/en-GB/en-GB.com_newsfeeds.sys.ini 69 | /administrator/language/en-GB/en-GB.com_plugins.ini 70 | /administrator/language/en-GB/en-GB.com_plugins.sys.ini 71 | /administrator/language/en-GB/en-GB.com_redirect.ini 72 | /administrator/language/en-GB/en-GB.com_redirect.sys.ini 73 | /administrator/language/en-GB/en-GB.com_search.ini 74 | /administrator/language/en-GB/en-GB.com_search.sys.ini 75 | /administrator/language/en-GB/en-GB.com_templates.ini 76 | /administrator/language/en-GB/en-GB.com_templates.sys.ini 77 | /administrator/language/en-GB/en-GB.com_users.ini 78 | /administrator/language/en-GB/en-GB.com_users.sys.ini 79 | /administrator/language/en-GB/en-GB.com_weblinks.ini 80 | /administrator/language/en-GB/en-GB.com_weblinks.sys.ini 81 | /administrator/language/en-GB/en-GB.com_wrapper.ini 82 | /administrator/language/en-GB/en-GB.com_wrapper.sys.ini 83 | /administrator/language/en-GB/en-GB.ini 84 | /administrator/language/en-GB/en-GB.lib_joomla.ini 85 | /administrator/language/en-GB/en-GB.localise.php 86 | /administrator/language/en-GB/en-GB.mod_custom.ini 87 | /administrator/language/en-GB/en-GB.mod_custom.sys.ini 88 | /administrator/language/en-GB/en-GB.mod_feed.ini 89 | /administrator/language/en-GB/en-GB.mod_feed.sys.ini 90 | /administrator/language/en-GB/en-GB.mod_latest.ini 91 | /administrator/language/en-GB/en-GB.mod_latest.sys.ini 92 | /administrator/language/en-GB/en-GB.mod_logged.ini 93 | /administrator/language/en-GB/en-GB.mod_logged.sys.ini 94 | /administrator/language/en-GB/en-GB.mod_login.ini 95 | /administrator/language/en-GB/en-GB.mod_login.sys.ini 96 | /administrator/language/en-GB/en-GB.mod_menu.ini 97 | /administrator/language/en-GB/en-GB.mod_menu.sys.ini 98 | /administrator/language/en-GB/en-GB.mod_multilangstatus.ini 99 | /administrator/language/en-GB/en-GB.mod_multilangstatus.sys.ini 100 | /administrator/language/en-GB/en-GB.mod_online.ini 101 | /administrator/language/en-GB/en-GB.mod_online.sys.ini 102 | /administrator/language/en-GB/en-GB.mod_popular.ini 103 | /administrator/language/en-GB/en-GB.mod_popular.sys.ini 104 | /administrator/language/en-GB/en-GB.mod_quickicon.ini 105 | /administrator/language/en-GB/en-GB.mod_quickicon.sys.ini 106 | /administrator/language/en-GB/en-GB.mod_status.ini 107 | /administrator/language/en-GB/en-GB.mod_status.sys.ini 108 | /administrator/language/en-GB/en-GB.mod_submenu.ini 109 | /administrator/language/en-GB/en-GB.mod_submenu.sys.ini 110 | /administrator/language/en-GB/en-GB.mod_title.ini 111 | /administrator/language/en-GB/en-GB.mod_title.sys.ini 112 | /administrator/language/en-GB/en-GB.mod_toolbar.ini 113 | /administrator/language/en-GB/en-GB.mod_toolbar.sys.ini 114 | /administrator/language/en-GB/en-GB.mod_unread.ini 115 | /administrator/language/en-GB/en-GB.mod_unread.sys.ini 116 | /administrator/language/en-GB/en-GB.mod_version.ini 117 | /administrator/language/en-GB/en-GB.mod_version.sys.ini 118 | /administrator/language/en-GB/en-GB.plg_authentication_example.ini 119 | /administrator/language/en-GB/en-GB.plg_authentication_example.sys.ini 120 | /administrator/language/en-GB/en-GB.plg_authentication_gmail.ini 121 | /administrator/language/en-GB/en-GB.plg_authentication_gmail.sys.ini 122 | /administrator/language/en-GB/en-GB.plg_authentication_joomla.ini 123 | /administrator/language/en-GB/en-GB.plg_authentication_joomla.sys.ini 124 | /administrator/language/en-GB/en-GB.plg_authentication_ldap.ini 125 | /administrator/language/en-GB/en-GB.plg_authentication_ldap.sys.ini 126 | /administrator/language/en-GB/en-GB.plg_captcha_recaptcha.ini 127 | /administrator/language/en-GB/en-GB.plg_captcha_recaptcha.sys.ini 128 | /administrator/language/en-GB/en-GB.plg_content_emailcloak.ini 129 | /administrator/language/en-GB/en-GB.plg_content_emailcloak.sys.ini 130 | /administrator/language/en-GB/en-GB.plg_content_geshi.ini 131 | /administrator/language/en-GB/en-GB.plg_content_geshi.sys.ini 132 | /administrator/language/en-GB/en-GB.plg_content_joomla.ini 133 | /administrator/language/en-GB/en-GB.plg_content_joomla.sys.ini 134 | /administrator/language/en-GB/en-GB.plg_content_loadmodule.ini 135 | /administrator/language/en-GB/en-GB.plg_content_loadmodule.sys.ini 136 | /administrator/language/en-GB/en-GB.plg_content_pagebreak.ini 137 | /administrator/language/en-GB/en-GB.plg_content_pagebreak.sys.ini 138 | /administrator/language/en-GB/en-GB.plg_content_pagenavigation.ini 139 | /administrator/language/en-GB/en-GB.plg_content_pagenavigation.sys.ini 140 | /administrator/language/en-GB/en-GB.plg_content_vote.ini 141 | /administrator/language/en-GB/en-GB.plg_content_vote.sys.ini 142 | /administrator/language/en-GB/en-GB.plg_editors_codemirror.ini 143 | /administrator/language/en-GB/en-GB.plg_editors_codemirror.sys.ini 144 | /administrator/language/en-GB/en-GB.plg_editors_none.ini 145 | /administrator/language/en-GB/en-GB.plg_editors_none.sys.ini 146 | /administrator/language/en-GB/en-GB.plg_editors_tinymce.ini 147 | /administrator/language/en-GB/en-GB.plg_editors_tinymce.sys.ini 148 | /administrator/language/en-GB/en-GB.plg_editors-xtd_article.ini 149 | /administrator/language/en-GB/en-GB.plg_editors-xtd_article.sys.ini 150 | /administrator/language/en-GB/en-GB.plg_editors-xtd_image.ini 151 | /administrator/language/en-GB/en-GB.plg_editors-xtd_image.sys.ini 152 | /administrator/language/en-GB/en-GB.plg_editors-xtd_pagebreak.ini 153 | /administrator/language/en-GB/en-GB.plg_editors-xtd_pagebreak.sys.ini 154 | /administrator/language/en-GB/en-GB.plg_editors-xtd_readmore.ini 155 | /administrator/language/en-GB/en-GB.plg_editors-xtd_readmore.sys.ini 156 | /administrator/language/en-GB/en-GB.plg_extension_joomla.ini 157 | /administrator/language/en-GB/en-GB.plg_extension_joomla.sys.ini 158 | /administrator/language/en-GB/en-GB.plg_quickicon_extensionupdate.ini 159 | /administrator/language/en-GB/en-GB.plg_quickicon_extensionupdate.sys.ini 160 | /administrator/language/en-GB/en-GB.plg_search_categories.ini 161 | /administrator/language/en-GB/en-GB.plg_search_categories.sys.ini 162 | /administrator/language/en-GB/en-GB.plg_search_contacts.ini 163 | /administrator/language/en-GB/en-GB.plg_search_contacts.sys.ini 164 | /administrator/language/en-GB/en-GB.plg_search_content.ini 165 | /administrator/language/en-GB/en-GB.plg_search_content.sys.ini 166 | /administrator/language/en-GB/en-GB.plg_search_newsfeeds.ini 167 | /administrator/language/en-GB/en-GB.plg_search_newsfeeds.sys.ini 168 | /administrator/language/en-GB/en-GB.plg_search_weblinks.ini 169 | /administrator/language/en-GB/en-GB.plg_search_weblinks.sys.ini 170 | /administrator/language/en-GB/en-GB.plg_system_cache.ini 171 | /administrator/language/en-GB/en-GB.plg_system_cache.sys.ini 172 | /administrator/language/en-GB/en-GB.plg_system_debug.ini 173 | /administrator/language/en-GB/en-GB.plg_system_debug.sys.ini 174 | /administrator/language/en-GB/en-GB.plg_system_highlight.ini 175 | /administrator/language/en-GB/en-GB.plg_system_highlight.sys.ini 176 | /administrator/language/en-GB/en-GB.plg_system_languagefilter.ini 177 | /administrator/language/en-GB/en-GB.plg_system_languagefilter.sys.ini 178 | /administrator/language/en-GB/en-GB.plg_system_log.ini 179 | /administrator/language/en-GB/en-GB.plg_system_logout.ini 180 | /administrator/language/en-GB/en-GB.plg_system_logout.sys.ini 181 | /administrator/language/en-GB/en-GB.plg_system_log.sys.ini 182 | /administrator/language/en-GB/en-GB.plg_system_p3p.ini 183 | /administrator/language/en-GB/en-GB.plg_system_p3p.sys.ini 184 | /administrator/language/en-GB/en-GB.plg_system_redirect.ini 185 | /administrator/language/en-GB/en-GB.plg_system_redirect.sys.ini 186 | /administrator/language/en-GB/en-GB.plg_system_remember.ini 187 | /administrator/language/en-GB/en-GB.plg_system_remember.sys.ini 188 | /administrator/language/en-GB/en-GB.plg_system_sef.ini 189 | /administrator/language/en-GB/en-GB.plg_system_sef.sys.ini 190 | /administrator/language/en-GB/en-GB.plg_user_contactcreator.ini 191 | /administrator/language/en-GB/en-GB.plg_user_contactcreator.sys.ini 192 | /administrator/language/en-GB/en-GB.plg_user_joomla.ini 193 | /administrator/language/en-GB/en-GB.plg_user_joomla.sys.ini 194 | /administrator/language/en-GB/en-GB.plg_user_profile.ini 195 | /administrator/language/en-GB/en-GB.plg_user_profile.sys.ini 196 | /administrator/language/en-GB/en-GB.tpl_bluestork.ini 197 | /administrator/language/en-GB/en-GB.tpl_bluestork.sys.ini 198 | /administrator/language/en-GB/en-GB.tpl_hathor.ini 199 | /administrator/language/en-GB/en-GB.tpl_hathor.sys.ini 200 | /administrator/language/en-GB/en-GB.xml 201 | /administrator/language/en-GB/index.html 202 | /administrator/language/overrides/* 203 | /administrator/language/index.html 204 | /administrator/manifests/* 205 | /administrator/modules/mod_custom/* 206 | /administrator/modules/mod_feed/* 207 | /administrator/modules/mod_latest/* 208 | /administrator/modules/mod_logged/* 209 | /administrator/modules/mod_login/* 210 | /administrator/modules/mod_menu/* 211 | /administrator/modules/mod_multilangstatus/* 212 | /administrator/modules/mod_online/* 213 | /administrator/modules/mod_popular/* 214 | /administrator/modules/mod_quickicon/* 215 | /administrator/modules/mod_status/* 216 | /administrator/modules/mod_submenu/* 217 | /administrator/modules/mod_title/* 218 | /administrator/modules/mod_toolbar/* 219 | /administrator/modules/mod_unread/* 220 | /administrator/modules/mod_version/* 221 | /administrator/modules/index.html 222 | /administrator/templates/bluestork/* 223 | /administrator/templates/hathor/* 224 | /administrator/templates/system/* 225 | /administrator/templates/index.html 226 | /administrator/index.php 227 | /cache/* 228 | /cli/* 229 | /components/com_banners/* 230 | /components/com_contact/* 231 | /components/com_content/* 232 | /components/com_finder/* 233 | /components/com_mailto/* 234 | /components/com_media/* 235 | /components/com_newsfeeds/* 236 | /components/com_search/* 237 | /components/com_users/* 238 | /components/com_weblinks/* 239 | /components/com_wrapper/* 240 | /components/index.html 241 | /images/banners/* 242 | /images/sampledata/* 243 | /images/joomla* 244 | /images/index.html 245 | /images/powered_by.png 246 | /includes/* 247 | /installation/* 248 | /language/en-GB/en-GB.com_contact.ini 249 | /language/en-GB/en-GB.com_content.ini 250 | /language/en-GB/en-GB.com_mailto.ini 251 | /language/en-GB/en-GB.com_media.ini 252 | /language/en-GB/en-GB.com_messages.ini 253 | /language/en-GB/en-GB.com_newsfeeds.ini 254 | /language/en-GB/en-GB.com_search.ini 255 | /language/en-GB/en-GB.com_users.ini 256 | /language/en-GB/en-GB.com_weblinks.ini 257 | /language/en-GB/en-GB.com_wrapper.ini 258 | /language/en-GB/en-GB.files_joomla.sys.ini 259 | /language/en-GB/en-GB.ini 260 | /language/en-GB/en-GB.lib_joomla.ini 261 | /language/en-GB/en-GB.localise.php 262 | /language/en-GB/en-GB.mod_articles_archive.ini 263 | /language/en-GB/en-GB.mod_articles_archive.sys.ini 264 | /language/en-GB/en-GB.mod_articles_categories.ini 265 | /language/en-GB/en-GB.mod_articles_categories.sys.ini 266 | /language/en-GB/en-GB.mod_articles_category.ini 267 | /language/en-GB/en-GB.mod_articles_category.sys.ini 268 | /language/en-GB/en-GB.mod_articles_latest.ini 269 | /language/en-GB/en-GB.mod_articles_latest.sys.ini 270 | /language/en-GB/en-GB.mod_articles_news.ini 271 | /language/en-GB/en-GB.mod_articles_news.sys.ini 272 | /language/en-GB/en-GB.mod_articles_popular.ini 273 | /language/en-GB/en-GB.mod_articles_popular.sys.ini 274 | /language/en-GB/en-GB.mod_banners.ini 275 | /language/en-GB/en-GB.mod_banners.sys.ini 276 | /language/en-GB/en-GB.mod_breadcrumbs.ini 277 | /language/en-GB/en-GB.mod_breadcrumbs.sys.ini 278 | /language/en-GB/en-GB.mod_custom.ini 279 | /language/en-GB/en-GB.mod_custom.sys.ini 280 | /language/en-GB/en-GB.mod_feed.ini 281 | /language/en-GB/en-GB.mod_feed.sys.ini 282 | /language/en-GB/en-GB.mod_footer.ini 283 | /language/en-GB/en-GB.mod_footer.sys.ini 284 | /language/en-GB/en-GB.mod_languages.ini 285 | /language/en-GB/en-GB.mod_languages.sys.ini 286 | /language/en-GB/en-GB.mod_login.ini 287 | /language/en-GB/en-GB.mod_login.sys.ini 288 | /language/en-GB/en-GB.mod_menu.ini 289 | /language/en-GB/en-GB.mod_menu.sys.ini 290 | /language/en-GB/en-GB.mod_random_image.ini 291 | /language/en-GB/en-GB.mod_random_image.sys.ini 292 | /language/en-GB/en-GB.mod_related_items.ini 293 | /language/en-GB/en-GB.mod_related_items.sys.ini 294 | /language/en-GB/en-GB.mod_search.ini 295 | /language/en-GB/en-GB.mod_search.sys.ini 296 | /language/en-GB/en-GB.mod_stats.ini 297 | /language/en-GB/en-GB.mod_stats.sys.ini 298 | /language/en-GB/en-GB.mod_syndicate.ini 299 | /language/en-GB/en-GB.mod_syndicate.sys.ini 300 | /language/en-GB/en-GB.mod_users_latest.ini 301 | /language/en-GB/en-GB.mod_users_latest.sys.ini 302 | /language/en-GB/en-GB.mod_weblinks.ini 303 | /language/en-GB/en-GB.mod_weblinks.sys.ini 304 | /language/en-GB/en-GB.mod_whosonline.ini 305 | /language/en-GB/en-GB.mod_whosonline.sys.ini 306 | /language/en-GB/en-GB.mod_wrapper.ini 307 | /language/en-GB/en-GB.mod_wrapper.sys.ini 308 | /language/en-GB/en-GB.tpl_atomic.ini 309 | /language/en-GB/en-GB.tpl_atomic.sys.ini 310 | /language/en-GB/en-GB.tpl_beez_20.ini 311 | /language/en-GB/en-GB.tpl_beez_20.sys.ini 312 | /language/en-GB/en-GB.tpl_beez5.ini 313 | /language/en-GB/en-GB.tpl_beez5.sys.ini 314 | /language/en-GB/en-GB.xml 315 | /language/en-GB/index.html 316 | /language/en-GB/install.xml 317 | /language/overrides/* 318 | /language/index.html 319 | /libraries/cms.php 320 | /libraries/cms/* 321 | /libraries/joomla/* 322 | /libraries/phpmailer/* 323 | /libraries/phputf8/* 324 | /libraries/simplepie/* 325 | /libraries/index.html 326 | /libraries/import.php 327 | /libraries/loader.php 328 | /libraries/platform.php 329 | /logs/* 330 | /media/cms/* 331 | /media/com_finder/* 332 | /media/contacts/* 333 | /media/editors/* 334 | /media/mailto/* 335 | /media/media/* 336 | /media/mod_languages/* 337 | /media/overrider/* 338 | /media/plg_quickicon_extensionupdate/* 339 | /media/plg_quickicon_joomlaupdate/* 340 | /media/plg_system_highlight/* 341 | /media/system/* 342 | /media/index.html 343 | /modules/mod_articles_archive/* 344 | /modules/mod_articles_categories/* 345 | /modules/mod_articles_category/* 346 | /modules/mod_articles_latest/* 347 | /modules/mod_articles_news/* 348 | /modules/mod_articles_popular/* 349 | /modules/mod_banners/* 350 | /modules/mod_breadcrumbs/* 351 | /modules/mod_custom/* 352 | /modules/mod_feed/* 353 | /modules/mod_finder/* 354 | /modules/mod_footer/* 355 | /modules/mod_languages/* 356 | /modules/mod_login/* 357 | /modules/mod_menu/* 358 | /modules/mod_random_image/* 359 | /modules/mod_related_items/* 360 | /modules/mod_search/* 361 | /modules/mod_stats/* 362 | /modules/mod_syndicate/* 363 | /modules/mod_users_latest/* 364 | /modules/mod_weblinks/* 365 | /modules/mod_whosonline/* 366 | /modules/mod_wrapper/* 367 | /modules/index.html 368 | /plugins/authentication/example/* 369 | /plugins/authentication/gmail/* 370 | /plugins/authentication/joomla/* 371 | /plugins/authentication/ldap/* 372 | /plugins/authentication/index.html 373 | /plugins/captcha/recaptcha/* 374 | /plugins/content/emailcloak/* 375 | /plugins/content/example/* 376 | /plugins/content/finder/* 377 | /plugins/content/geshi/* 378 | /plugins/content/joomla/* 379 | /plugins/content/loadmodule/* 380 | /plugins/content/pagebreak/* 381 | /plugins/content/pagenavigation/* 382 | /plugins/content/vote/* 383 | /plugins/content/index.html 384 | /plugins/editors/codemirror/* 385 | /plugins/editors/none/* 386 | /plugins/editors/tinymce/* 387 | /plugins/editors/index.html 388 | /plugins/editors-xtd/article/* 389 | /plugins/editors-xtd/image/* 390 | /plugins/editors-xtd/pagebreak/* 391 | /plugins/editors-xtd/readmore/* 392 | /plugins/editors-xtd/index.html 393 | /plugins/extension/example/* 394 | /plugins/extension/joomla/* 395 | /plugins/extension/index.html 396 | /plugins/finder/index.html 397 | /plugins/finder/categories/* 398 | /plugins/finder/contacts/* 399 | /plugins/finder/content/* 400 | /plugins/finder/newsfeeds/* 401 | /plugins/finder/weblinks/* 402 | /plugins/quickicon/extensionupdate/* 403 | /plugins/quickicon/joomlaupdate/* 404 | /plugins/search/categories/* 405 | /plugins/search/contacts/* 406 | /plugins/search/content/* 407 | /plugins/search/newsfeeds/* 408 | /plugins/search/weblinks/* 409 | /plugins/search/index.html 410 | /plugins/system/cache/* 411 | /plugins/system/debug/* 412 | /plugins/system/highlight/* 413 | /plugins/system/languagecode/* 414 | /plugins/system/languagefilter/* 415 | /plugins/system/log/* 416 | /plugins/system/logout/* 417 | /plugins/system/p3p/* 418 | /plugins/system/redirect/* 419 | /plugins/system/remember/* 420 | /plugins/system/sef/* 421 | /plugins/system/index.html 422 | /plugins/user/contactcreator/* 423 | /plugins/user/example/* 424 | /plugins/user/joomla/* 425 | /plugins/user/profile/* 426 | /plugins/user/index.html 427 | /plugins/index.html 428 | /templates/atomic/* 429 | /templates/beez_20/* 430 | /templates/beez5/* 431 | /templates/system/* 432 | /templates/index.html 433 | /tmp/* 434 | /configuration.php 435 | /index.php 436 | /joomla.xml 437 | /*.txt 438 | --------------------------------------------------------------------------------