mirror of https://github.com/gogits/gogs.git
Mukaiu
9 years ago
1633 changed files with 58082 additions and 45715 deletions
@ -0,0 +1,20 @@
|
||||
.git |
||||
.git/ |
||||
.git/* |
||||
conf |
||||
conf/ |
||||
conf/* |
||||
packager |
||||
packager/ |
||||
packager/* |
||||
scripts |
||||
scripts/ |
||||
scripts/* |
||||
*.yml |
||||
*.md |
||||
.bra.toml |
||||
.editorconfig |
||||
.gitignore |
||||
.gopmfile |
||||
config.codekit |
||||
LICENSE |
@ -1,16 +1,27 @@
|
||||
language: go |
||||
|
||||
go: |
||||
- 1.2 |
||||
- 1.3 |
||||
- 1.4 |
||||
- tip |
||||
- 1.5 |
||||
|
||||
sudo: false |
||||
before_install: |
||||
- sudo apt-get update -qq |
||||
- sudo apt-get install -y libpam-dev |
||||
- go get github.com/msteinert/pam |
||||
|
||||
script: go build -v |
||||
install: |
||||
- go get -t -v ./... |
||||
|
||||
script: go build -v -tags "pam" |
||||
|
||||
notifications: |
||||
email: |
||||
- u@gogs.io |
||||
slack: gophercn:o5pSanyTeNhnfYc3QnG0X7Wx |
||||
slack: gophercn:o5pSanyTeNhnfYc3QnG0X7Wx |
||||
webhooks: |
||||
urls: |
||||
- https://webhooks.gitter.im/e/b590f8e03882f7aedc3e |
||||
on_success: change |
||||
on_failure: always |
||||
on_start: never |
||||
|
@ -0,0 +1,35 @@
|
||||
LDFLAGS += -X "github.com/gogits/gogs/modules/setting.BuildTime=$(shell date -u '+%Y-%m-%d %I:%M:%S %Z')"
|
||||
LDFLAGS += -X "github.com/gogits/gogs/modules/setting.BuildGitHash=$(shell git rev-parse HEAD)"
|
||||
|
||||
TAGS = ""
|
||||
|
||||
RELEASE_ROOT = "release"
|
||||
RELEASE_GOGS = "release/gogs"
|
||||
NOW = $(shell date -u '+%Y%m%d%I%M%S')
|
||||
|
||||
.PHONY: build pack release bindata clean |
||||
|
||||
build: |
||||
go install -ldflags '$(LDFLAGS)' -tags '$(TAGS)'
|
||||
go build -ldflags '$(LDFLAGS)' -tags '$(TAGS)'
|
||||
|
||||
govet: |
||||
go tool vet -composites=false -methods=false -structtags=false .
|
||||
|
||||
pack: |
||||
rm -rf $(RELEASE_GOGS)
|
||||
mkdir -p $(RELEASE_GOGS)
|
||||
cp -r gogs LICENSE README.md README_ZH.md templates public scripts $(RELEASE_GOGS)
|
||||
rm -rf $(RELEASE_GOGS)/public/config.codekit $(RELEASE_GOGS)/public/less
|
||||
cd $(RELEASE_ROOT) && zip -r gogs.$(NOW).zip "gogs"
|
||||
|
||||
release: build pack |
||||
|
||||
bindata: |
||||
go-bindata -o=modules/bindata/bindata.go -ignore="\\.DS_Store|README.md" -pkg=bindata conf/...
|
||||
|
||||
clean: |
||||
go clean -i ./...
|
||||
|
||||
clean-mac: clean |
||||
find . -name ".DS_Store" -print0 | xargs -0 rm
|
@ -0,0 +1,42 @@
|
||||
// Copyright 2015 The Gogs Authors. All rights reserved.
|
||||
// Use of this source code is governed by a MIT-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package cmd |
||||
|
||||
import ( |
||||
"time" |
||||
|
||||
"github.com/codegangsta/cli" |
||||
) |
||||
|
||||
func stringFlag(name, value, usage string) cli.StringFlag { |
||||
return cli.StringFlag{ |
||||
Name: name, |
||||
Value: value, |
||||
Usage: usage, |
||||
} |
||||
} |
||||
|
||||
func boolFlag(name, usage string) cli.BoolFlag { |
||||
return cli.BoolFlag{ |
||||
Name: name, |
||||
Usage: usage, |
||||
} |
||||
} |
||||
|
||||
func intFlag(name string, value int, usage string) cli.IntFlag { |
||||
return cli.IntFlag{ |
||||
Name: name, |
||||
Value: value, |
||||
Usage: usage, |
||||
} |
||||
} |
||||
|
||||
func durationFlag(name string, value time.Duration, usage string) cli.DurationFlag { |
||||
return cli.DurationFlag{ |
||||
Name: name, |
||||
Value: value, |
||||
Usage: usage, |
||||
} |
||||
} |
@ -1,7 +0,0 @@
|
||||
Execute following command in ROOT directory when anything is changed: |
||||
|
||||
$ go-bindata -o=modules/bindata/bindata.go -ignore="\\.DS_Store|README" -pkg=bindata conf/... |
||||
|
||||
Add -debug flag to make life easier in development(somehow isn't working): |
||||
|
||||
$ go-bindata -debug -o=modules/bindata/bindata.go -ignore="\\.DS_Store|README" -pkg=bindata conf/... |
@ -0,0 +1,7 @@
|
||||
Execute following command in ROOT directory when anything is changed: |
||||
|
||||
$ go-bindata -o=modules/bindata/bindata.go -ignore="\\.DS_Store|README.md" -pkg=bindata conf/... |
||||
|
||||
Add -debug flag to make life easier in development(somehow isn't working): |
||||
|
||||
$ go-bindata -debug -o=modules/bindata/bindata.go -ignore="\\.DS_Store|README.md" -pkg=bindata conf/... |
@ -0,0 +1,11 @@
|
||||
# Build and Release Folders |
||||
bin/ |
||||
bin-debug/ |
||||
bin-release/ |
||||
|
||||
# Other files and folders |
||||
.settings/ |
||||
|
||||
# Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties` |
||||
# should NOT be excluded as they contain compiler settings and other important |
||||
# information for Eclipse / Flash Builder. |
@ -0,0 +1,5 @@
|
||||
# Object file |
||||
*.o |
||||
|
||||
# Ada Library Information |
||||
*.ali |
@ -0,0 +1,3 @@
|
||||
# Local configuration folder and symbol database |
||||
/.anjuta/ |
||||
/.anjuta_sym_db.db |
@ -0,0 +1,2 @@
|
||||
# Google App Engine generated folder |
||||
appengine-generated/ |
@ -0,0 +1,3 @@
|
||||
# Build folder and log file |
||||
build/ |
||||
build.log |
@ -0,0 +1,13 @@
|
||||
*.tar |
||||
*.tar.* |
||||
*.jar |
||||
*.exe |
||||
*.msi |
||||
*.zip |
||||
*.tgz |
||||
*.log |
||||
*.log.* |
||||
*.sig |
||||
|
||||
pkg/ |
||||
src/ |
@ -0,0 +1,27 @@
|
||||
# It's better to unpack these files and commit the raw source because |
||||
# git has its own built in compression methods. |
||||
*.7z |
||||
*.jar |
||||
*.rar |
||||
*.zip |
||||
*.gz |
||||
*.bzip |
||||
*.bz2 |
||||
*.xz |
||||
*.lzma |
||||
*.cab |
||||
|
||||
#packing-only formats |
||||
*.iso |
||||
*.tar |
||||
|
||||
#package management formats |
||||
*.dmg |
||||
*.xpi |
||||
*.gem |
||||
*.egg |
||||
*.deb |
||||
*.rpm |
||||
*.msi |
||||
*.msm |
||||
*.msp |
@ -0,0 +1,14 @@
|
||||
# http://www.gnu.org/software/automake |
||||
|
||||
Makefile.in |
||||
|
||||
# http://www.gnu.org/software/autoconf |
||||
|
||||
/autom4te.cache |
||||
/aclocal.m4 |
||||
/compile |
||||
/configure |
||||
/depcomp |
||||
/install-sh |
||||
/missing |
||||
/stamp-h1 |
@ -0,0 +1,4 @@
|
||||
# Bricx Command Center IDE |
||||
# http://bricxcc.sourceforge.net |
||||
*.bak |
||||
*.sym |
@ -0,0 +1,12 @@
|
||||
# unpacked plugin folders |
||||
plugins/**/* |
||||
|
||||
# files directory where uploads go |
||||
files |
||||
|
||||
# DBMigrate plugin: generated SQL |
||||
db/sql |
||||
|
||||
# AssetBundler plugin: generated bundles |
||||
javascripts/bundles |
||||
stylesheets/bundles |
@ -0,0 +1,6 @@
|
||||
CMakeCache.txt |
||||
CMakeFiles |
||||
CMakeScripts |
||||
Makefile |
||||
cmake_install.cmake |
||||
install_manifest.txt |
@ -0,0 +1,13 @@
|
||||
# CakePHP 3 |
||||
|
||||
/vendor/* |
||||
/config/app.php |
||||
/tmp/* |
||||
/logs/* |
||||
|
||||
# CakePHP 2 |
||||
|
||||
/app/tmp/* |
||||
/app/Config/core.php |
||||
/app/Config/database.php |
||||
/vendors/* |
@ -0,0 +1,9 @@
|
||||
.vagrant |
||||
/cookbooks |
||||
|
||||
# Bundler |
||||
bin/* |
||||
.bundle/* |
||||
|
||||
.kitchen/ |
||||
.kitchen.local.yml |
@ -0,0 +1,3 @@
|
||||
# Cloud9 IDE - http://c9.io |
||||
.c9revisions |
||||
.c9 |
@ -0,0 +1,6 @@
|
||||
*/config/development |
||||
*/logs/log-*.php |
||||
!*/logs/index.html |
||||
*/cache/* |
||||
!*/cache/index.html |
||||
!*/cache/.htaccess |
@ -0,0 +1,3 @@
|
||||
# General CodeKit files to ignore |
||||
config.codekit |
||||
/min |
@ -0,0 +1,6 @@
|
||||
composer.phar |
||||
vendor/ |
||||
|
||||
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file |
||||
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file |
||||
# composer.lock |
@ -0,0 +1,3 @@
|
||||
config/site.php |
||||
files/cache/* |
||||
files/tmp/* |
@ -0,0 +1,3 @@
|
||||
# Craft Storage (cache) [http://buildwithcraft.com/help/craft-storage-gitignore] |
||||
/craft/storage/* |
||||
!/craft/storage/logo/* |
@ -0,0 +1,15 @@
|
||||
# Don’t commit the following directories created by pub. |
||||
.buildlog |
||||
.pub/ |
||||
build/ |
||||
packages |
||||
.packages |
||||
|
||||
# Or the files created by dart2js. |
||||
*.dart.js |
||||
*.js_ |
||||
*.js.deps |
||||
*.js.map |
||||
|
||||
# Include when developing application packages. |
||||
pubspec.lock |
@ -0,0 +1,57 @@
|
||||
# Uncomment these types if you want even more clean repository. But be careful. |
||||
# It can make harm to an existing project source. Read explanations below. |
||||
# |
||||
# Resource files are binaries containing manifest, project icon and version info. |
||||
# They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files. |
||||
#*.res |
||||
# |
||||
# Type library file (binary). In old Delphi versions it should be stored. |
||||
# Since Delphi 2009 it is produced from .ridl file and can safely be ignored. |
||||
#*.tlb |
||||
# |
||||
# Diagram Portfolio file. Used by the diagram editor up to Delphi 7. |
||||
# Uncomment this if you are not using diagrams or use newer Delphi version. |
||||
#*.ddp |
||||
# |
||||
# Visual LiveBindings file. Added in Delphi XE2. |
||||
# Uncomment this if you are not using LiveBindings Designer. |
||||
#*.vlb |
||||
# |
||||
# Deployment Manager configuration file for your project. Added in Delphi XE2. |
||||
# Uncomment this if it is not mobile development and you do not use remote debug feature. |
||||
#*.deployproj |
||||
# |
||||
|
||||
# Delphi compiler-generated binaries (safe to delete) |
||||
*.exe |
||||
*.dll |
||||
*.bpl |
||||
*.bpi |
||||
*.dcp |
||||
*.so |
||||
*.apk |
||||
*.drc |
||||
*.map |
||||
*.dres |
||||
*.rsm |
||||
*.tds |
||||
*.dcu |
||||
*.lib |
||||
|
||||
# Delphi autogenerated files (duplicated info) |
||||
*.cfg |
||||
*Resource.rc |
||||
|
||||
# Delphi local files (user-specific info) |
||||
*.local |
||||
*.identcache |
||||
*.projdata |
||||
*.tvsconfig |
||||
*.dsk |
||||
|
||||
# Delphi history and backups |
||||
__history/ |
||||
*.~* |
||||
|
||||
# Castalia statistics file |
||||
*.stat |
@ -0,0 +1,3 @@
|
||||
# DW Dreamweaver added files |
||||
_notes |
||||
dwsync.xml |
@ -0,0 +1,36 @@
|
||||
# Ignore configuration files that may contain sensitive information. |
||||
sites/*/*settings*.php |
||||
|
||||
# Ignore paths that contain generated content. |
||||
files/ |
||||
sites/*/files |
||||
sites/*/private |
||||
|
||||
# Ignore default text files |
||||
robots.txt |
||||
/CHANGELOG.txt |
||||
/COPYRIGHT.txt |
||||
/INSTALL*.txt |
||||
/LICENSE.txt |
||||
/MAINTAINERS.txt |
||||
/UPGRADE.txt |
||||
/README.txt |
||||
sites/all/README.txt |
||||
sites/all/modules/README.txt |
||||
sites/all/themes/README.txt |
||||
|
||||
# Ignore everything but the "sites" folder ( for non core developer ) |
||||
.htaccess |
||||
web.config |
||||
authorize.php |
||||
cron.php |
||||
index.php |
||||
install.php |
||||
update.php |
||||
xmlrpc.php |
||||
/includes |
||||
/misc |
||||
/modules |
||||
/profiles |
||||
/scripts |
||||
/themes |
@ -0,0 +1,4 @@
|
||||
###################### |
||||
## EPiServer Files |
||||
###################### |
||||
*License.config |
@ -0,0 +1,36 @@
|
||||
# Ignore list for Eagle, a PCB layout tool |
||||
|
||||
# Backup files |
||||
*.s#? |
||||
*.b#? |
||||
*.l#? |
||||
|
||||
# Eagle project file |
||||
# It contains a serial number and references to the file structure |
||||
# on your computer. |
||||
# comment the following line if you want to have your project file included. |
||||
eagle.epf |
||||
|
||||
# CAM files |
||||
*.$$$ |
||||
*.cmp |
||||
*.ly2 |
||||
*.l15 |
||||
*.sol |
||||
*.plc |
||||
*.stc |
||||
*.sts |
||||
*.crc |
||||
*.crs |
||||
|
||||
*.dri |
||||
*.drl |
||||
*.gpi |
||||
*.pls |
||||
|
||||
*.drd |
||||
*.drd.* |
||||
|
||||
*.info |
||||
|
||||
*.eps |
@ -0,0 +1,39 @@
|
||||
*.pydevproject |
||||
.metadata |
||||
.gradle |
||||
bin/ |
||||
tmp/ |
||||
*.tmp |
||||
*.bak |
||||
*.swp |
||||
*~.nib |
||||
local.properties |
||||
.settings/ |
||||
.loadpath |
||||
|
||||
# Eclipse Core |
||||
.project |
||||
|
||||
# External tool builders |
||||
.externalToolBuilders/ |
||||
|
||||
# Locally stored "Eclipse launch configurations" |
||||
*.launch |
||||
|
||||
# CDT-specific |
||||
.cproject |
||||
|
||||
# JDT-specific (Eclipse Java Development Tools) |
||||
.classpath |
||||
|
||||
# Java annotation processor (APT) |
||||
.factorypath |
||||
|
||||
# PDT-specific |
||||
.buildpath |
||||
|
||||
# sbteclipse plugin |
||||
.target |
||||
|
||||
# TeXlipse plugin |
||||
.texlipse |
@ -0,0 +1,32 @@
|
||||
# -*- mode: gitignore; -*- |
||||
*~ |
||||
\#*\# |
||||
/.emacs.desktop |
||||
/.emacs.desktop.lock |
||||
*.elc |
||||
auto-save-list |
||||
tramp |
||||
.\#* |
||||
|
||||
# Org-mode |
||||
.org-id-locations |
||||
*_archive |
||||
|
||||
# flymake-mode |
||||
*_flymake.* |
||||
|
||||
# eshell files |
||||
/eshell/history |
||||
/eshell/lastdir |
||||
|
||||
# elpa packages |
||||
/elpa/ |
||||
|
||||
# reftex files |
||||
*.rel |
||||
|
||||
# AUCTeX auto folder |
||||
/auto/ |
||||
|
||||
# cask packages |
||||
.cask/ |
@ -0,0 +1,4 @@
|
||||
# Ensime specific |
||||
.ensime |
||||
.ensime_cache/ |
||||
.ensime_lucene/ |
@ -0,0 +1,10 @@
|
||||
.eunit |
||||
deps |
||||
*.o |
||||
*.beam |
||||
*.plt |
||||
erl_crash.dump |
||||
ebin |
||||
rel/example_project |
||||
.concrete/DEV_MODE |
||||
.rebar |
@ -0,0 +1,19 @@
|
||||
.DS_Store |
||||
|
||||
# Images |
||||
images/avatars/ |
||||
images/captchas/ |
||||
images/smileys/ |
||||
images/member_photos/ |
||||
images/signature_attachments/ |
||||
images/pm_attachments/ |
||||
|
||||
# For security do not publish the following files |
||||
system/expressionengine/config/database.php |
||||
system/expressionengine/config/config.php |
||||
|
||||
# Caches |
||||
sized/ |
||||
thumbs/ |
||||
_thumbs/ |
||||
*/expressionengine/cache/* |
@ -0,0 +1,13 @@
|
||||
*.bak |
||||
*.db |
||||
*.avi |
||||
*.pdf |
||||
*.ps |
||||
*.mid |
||||
*.midi |
||||
*.mp3 |
||||
*.aif |
||||
*.wav |
||||
# Some versions of Finale have a bug and randomly save extra copies of |
||||
# the music source as "<Filename> copy.mus" |
||||
*copy.mus |
@ -0,0 +1,4 @@
|
||||
.project |
||||
.settings |
||||
salesforce.schema |
||||
Referenced Packages |
@ -0,0 +1,28 @@
|
||||
*.class |
||||
|
||||
# Package Files # |
||||
*.jar |
||||
*.war |
||||
|
||||
# gwt caches and compiled units # |
||||
war/gwt_bree/ |
||||
gwt-unitCache/ |
||||
|
||||
# boilerplate generated classes # |
||||
.apt_generated/ |
||||
|
||||
# more caches and things from deploy # |
||||
war/WEB-INF/deploy/ |
||||
war/WEB-INF/classes/ |
||||
|
||||
#compilation logs |
||||
.gwt/ |
||||
|
||||
#caching for already compiled files |
||||
gwt-unitCache/ |
||||
|
||||
#gwt junit compilation files |
||||
www-test/ |
||||
|
||||
#old GWT (1.5) created this dir |
||||
.gwt-tmp/ |
@ -0,0 +1,5 @@
|
||||
# gcc coverage testing tool files |
||||
|
||||
*.gcno |
||||
*.gcda |
||||
*.gcov |
@ -0,0 +1,16 @@
|
||||
# Node rules: |
||||
## Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) |
||||
.grunt |
||||
|
||||
## Dependency directory |
||||
## Commenting this out is preferred by some people, see |
||||
## https://docs.npmjs.com/misc/faq#should-i-check-my-node_modules-folder-into-git |
||||
node_modules |
||||
|
||||
# Book build output |
||||
_book |
||||
|
||||
# eBook build output |
||||
*.epub |
||||
*.mobi |
||||
*.pdf |
@ -0,0 +1,24 @@
|
||||
# Compiled Object files, Static and Dynamic libs (Shared Objects) |
||||
*.o |
||||
*.a |
||||
*.so |
||||
|
||||
# Folders |
||||
_obj |
||||
_test |
||||
|
||||
# Architecture specific extensions/prefixes |
||||
*.[568vq] |
||||
[568vq].out |
||||
|
||||
*.cgo1.go |
||||
*.cgo2.c |
||||
_cgo_defun.c |
||||
_cgo_gotypes.go |
||||
_cgo_export.* |
||||
|
||||
_testmain.go |
||||
|
||||
*.exe |
||||
*.test |
||||
*.prof |
@ -1,22 +0,0 @@
|
||||
# Compiled Object files, Static and Dynamic libs (Shared Objects) |
||||
*.o |
||||
*.a |
||||
*.so |
||||
|
||||
# Folders |
||||
_obj |
||||
_test |
||||
|
||||
# Architecture specific extensions/prefixes |
||||
*.[568vq] |
||||
[568vq].out |
||||
|
||||
*.cgo1.go |
||||
*.cgo2.c |
||||
_cgo_defun.c |
||||
_cgo_gotypes.go |
||||
_cgo_export.* |
||||
|
||||
_testmain.go |
||||
|
||||
*.exe |
@ -0,0 +1,8 @@
|
||||
.gradle |
||||
build/ |
||||
|
||||
# Ignore Gradle GUI config |
||||
gradle-app.setting |
||||
|
||||
# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored) |
||||
!gradle-wrapper.jar |
@ -0,0 +1,33 @@
|
||||
# .gitignore for Grails 1.2 and 1.3 |
||||
# Although this should work for most versions of grails, it is |
||||
# suggested that you use the "grails integrate-with --git" command |
||||
# to generate your .gitignore file. |
||||
|
||||
# web application files |
||||
/web-app/WEB-INF/classes |
||||
|
||||
# default HSQL database files for production mode |
||||
/prodDb.* |
||||
|
||||
# general HSQL database files |
||||
*Db.properties |
||||
*Db.script |
||||
|
||||
# logs |
||||
/stacktrace.log |
||||
/test/reports |
||||
/logs |
||||
|
||||
# project release file |
||||
/*.war |
||||
|
||||
# plugin release files |
||||
/*.zip |
||||
/plugin.xml |
||||
|
||||
# older plugin install locations |
||||
/plugins |
||||
/web-app/plugins |
||||
|
||||
# "temporary" build files |
||||
/target |
@ -0,0 +1,16 @@
|
||||
dist |
||||
cabal-dev |
||||
*.o |
||||
*.hi |
||||
*.chi |
||||
*.chs.h |
||||
*.dyn_o |
||||
*.dyn_hi |
||||
.hpc |
||||
.hsenv |
||||
.cabal-sandbox/ |
||||
cabal.sandbox.config |
||||
*.prof |
||||
*.aux |
||||
*.hp |
||||
.stack-work/ |
@ -0,0 +1,5 @@
|
||||
# Avoid including Experiment files: they can be created and edited locally to test the ipf files |
||||
*.pxp |
||||
*.pxt |
||||
*.uxp |
||||
*.uxt |
@ -0,0 +1,2 @@
|
||||
# Temporary data |
||||
.ipynb_checkpoints/ |
@ -0,0 +1,13 @@
|
||||
# default application storage directory used by the IDE Performance Cache feature |
||||
.data/ |
||||
|
||||
# used for ADF styles caching |
||||
temp/ |
||||
|
||||
# default output directories |
||||
classes/ |
||||
deploy/ |
||||
javadoc/ |
||||
|
||||
# lock file, a part of Oracle Credential Store Framework |
||||
cwallet.sso.lck |
@ -0,0 +1,19 @@
|
||||
jboss/server/all/deploy/project.ext |
||||
jboss/server/default/deploy/project.ext |
||||
jboss/server/minimal/deploy/project.ext |
||||
jboss/server/all/log/*.log |
||||
jboss/server/all/tmp/**/* |
||||
jboss/server/all/data/**/* |
||||
jboss/server/all/work/**/* |
||||
jboss/server/default/log/*.log |
||||
jboss/server/default/tmp/**/* |
||||
jboss/server/default/data/**/* |
||||
jboss/server/default/work/**/* |
||||
jboss/server/minimal/log/*.log |
||||
jboss/server/minimal/tmp/**/* |
||||
jboss/server/minimal/data/**/* |
||||
jboss/server/minimal/work/**/* |
||||
|
||||
# deployed package files # |
||||
|
||||
*.DEPLOYED |
@ -0,0 +1,46 @@
|
||||
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio |
||||
|
||||
*.iml |
||||
|
||||
## Directory-based project format: |
||||
.idea/ |
||||
# if you remove the above rule, at least ignore the following: |
||||
|
||||
# User-specific stuff: |
||||
# .idea/workspace.xml |
||||
# .idea/tasks.xml |
||||
# .idea/dictionaries |
||||
|
||||
# Sensitive or high-churn files: |
||||
# .idea/dataSources.ids |
||||
# .idea/dataSources.xml |
||||
# .idea/sqlDataSources.xml |
||||
# .idea/dynamic.xml |
||||
# .idea/uiDesigner.xml |
||||
|
||||
# Gradle: |
||||
# .idea/gradle.xml |
||||
# .idea/libraries |
||||
|
||||
# Mongo Explorer plugin: |
||||
# .idea/mongoSettings.xml |
||||
|
||||
## File-based project format: |
||||
*.ipr |
||||
*.iws |
||||
|
||||
## Plugin-specific files: |
||||
|
||||
# IntelliJ |
||||
/out/ |
||||
|
||||
# mpeltonen/sbt-idea plugin |
||||
.idea_modules/ |
||||
|
||||
# JIRA plugin |
||||
atlassian-ide-plugin.xml |
||||
|
||||
# Crashlytics plugin (for Android Studio and IntelliJ) |
||||
com_crashlytics_export_strings.xml |
||||
crashlytics.properties |
||||
crashlytics-build.properties |
@ -0,0 +1,525 @@
|
||||
/.gitignore |
||||
/.htaccess |
||||
/administrator/cache/* |
||||
/administrator/components/com_admin/* |
||||
/administrator/components/com_ajax/* |
||||
/administrator/components/com_tags/* |
||||
/administrator/components/com_banners/* |
||||
/administrator/components/com_cache/* |
||||
/administrator/components/com_postinstall/* |
||||
/administrator/components/com_joomlaupdate/* |
||||
/administrator/components/com_contenthistory/* |
||||
/administrator/components/com_categories/* |
||||
/administrator/components/com_checkin/* |
||||
/administrator/components/com_config/* |
||||
/administrator/components/com_contact/* |
||||
/administrator/components/com_content/* |
||||
/administrator/components/com_cpanel/* |
||||
/administrator/components/com_finder/* |
||||
/administrator/components/com_installer/* |
||||
/administrator/components/com_languages/* |
||||
/administrator/components/com_login/* |
||||
/administrator/components/com_media/* |
||||
/administrator/components/com_menus/* |
||||
/administrator/components/com_messages/* |
||||
/administrator/components/com_modules/* |
||||
/administrator/components/com_newsfeeds/* |
||||
/administrator/components/com_plugins/* |
||||
/administrator/components/com_redirect/* |
||||
/administrator/components/com_search/* |
||||
/administrator/components/com_templates/* |
||||
/administrator/components/com_users/* |
||||
/administrator/components/com_weblinks/* |
||||
/administrator/components/index.html |
||||
/administrator/help/* |
||||
/administrator/includes/* |
||||
/administrator/language/en-GB/en-GB.com_ajax.ini |
||||
/administrator/language/en-GB/en-GB.com_ajax.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_contenthistory.ini |
||||
/administrator/language/en-GB/en-GB.com_contenthistory.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_joomlaupdate.ini |
||||
/administrator/language/en-GB/en-GB.com_joomlaupdate.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_postinstall.ini |
||||
/administrator/language/en-GB/en-GB.com_postinstall.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_sitemapjen.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_tags.ini |
||||
/administrator/language/en-GB/en-GB.com_tags.sys.ini |
||||
/administrator/language/en-GB/en-GB.mod_stats_admin.ini |
||||
/administrator/language/en-GB/en-GB.mod_stats_admin.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_authentication_cookie.ini |
||||
/administrator/language/en-GB/en-GB.plg_authentication_cookie.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_contact.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_contact.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_finder.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_finder.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_finder_categories.ini |
||||
/administrator/language/en-GB/en-GB.plg_finder_categories.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_finder_contacts.ini |
||||
/administrator/language/en-GB/en-GB.plg_finder_contacts.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_finder_content.ini |
||||
/administrator/language/en-GB/en-GB.plg_finder_content.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_finder_newsfeeds.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_finder_newsfeeds.ini |
||||
/administrator/language/en-GB/en-GB.plg_finder_tags.ini |
||||
/administrator/language/en-GB/en-GB.plg_finder_tags.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_finder_weblinks.ini |
||||
/administrator/language/en-GB/en-GB.plg_finder_weblinks.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_installer_webinstaller.ini |
||||
/administrator/language/en-GB/en-GB.plg_installer_webinstaller.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.ini |
||||
/administrator/language/en-GB/en-GB.plg_quickicon_joomlaupdate.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_search_tags.ini |
||||
/administrator/language/en-GB/en-GB.plg_search_tags.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_languagecode.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_languagecode.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.ini |
||||
/administrator/language/en-GB/en-GB.plg_twofactorauth_totp.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.ini |
||||
/administrator/language/en-GB/en-GB.plg_twofactorauth_yubikey.sys.ini |
||||
/administrator/language/en-GB/en-GB.tpl_isis.ini |
||||
/administrator/language/en-GB/en-GB.tpl_isis.sys.ini |
||||
/administrator/language/en-GB/install.xml |
||||
/administrator/language/en-GB/en-GB.com_admin.ini |
||||
/administrator/language/en-GB/en-GB.com_admin.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_banners.ini |
||||
/administrator/language/en-GB/en-GB.com_banners.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_cache.ini |
||||
/administrator/language/en-GB/en-GB.com_cache.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_categories.ini |
||||
/administrator/language/en-GB/en-GB.com_categories.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_checkin.ini |
||||
/administrator/language/en-GB/en-GB.com_checkin.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_config.ini |
||||
/administrator/language/en-GB/en-GB.com_config.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_contact.ini |
||||
/administrator/language/en-GB/en-GB.com_contact.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_content.ini |
||||
/administrator/language/en-GB/en-GB.com_content.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_cpanel.ini |
||||
/administrator/language/en-GB/en-GB.com_cpanel.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_finder.ini |
||||
/administrator/language/en-GB/en-GB.com_finder.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_installer.ini |
||||
/administrator/language/en-GB/en-GB.com_installer.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_languages.ini |
||||
/administrator/language/en-GB/en-GB.com_languages.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_login.ini |
||||
/administrator/language/en-GB/en-GB.com_login.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_mailto.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_media.ini |
||||
/administrator/language/en-GB/en-GB.com_media.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_menus.ini |
||||
/administrator/language/en-GB/en-GB.com_menus.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_messages.ini |
||||
/administrator/language/en-GB/en-GB.com_messages.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_modules.ini |
||||
/administrator/language/en-GB/en-GB.com_modules.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_newsfeeds.ini |
||||
/administrator/language/en-GB/en-GB.com_newsfeeds.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_plugins.ini |
||||
/administrator/language/en-GB/en-GB.com_plugins.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_redirect.ini |
||||
/administrator/language/en-GB/en-GB.com_redirect.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_search.ini |
||||
/administrator/language/en-GB/en-GB.com_search.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_templates.ini |
||||
/administrator/language/en-GB/en-GB.com_templates.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_users.ini |
||||
/administrator/language/en-GB/en-GB.com_users.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_weblinks.ini |
||||
/administrator/language/en-GB/en-GB.com_weblinks.sys.ini |
||||
/administrator/language/en-GB/en-GB.com_wrapper.ini |
||||
/administrator/language/en-GB/en-GB.com_wrapper.sys.ini |
||||
/administrator/language/en-GB/en-GB.ini |
||||
/administrator/language/en-GB/en-GB.lib_joomla.ini |
||||
/administrator/language/en-GB/en-GB.localise.php |
||||
/administrator/language/en-GB/en-GB.mod_custom.ini |
||||
/administrator/language/en-GB/en-GB.mod_custom.sys.ini |
||||
/administrator/language/en-GB/en-GB.mod_feed.ini |
||||
/administrator/language/en-GB/en-GB.mod_feed.sys.ini |
||||
/administrator/language/en-GB/en-GB.mod_latest.ini |
||||
/administrator/language/en-GB/en-GB.mod_latest.sys.ini |
||||
/administrator/language/en-GB/en-GB.mod_logged.ini |
||||
/administrator/language/en-GB/en-GB.mod_logged.sys.ini |
||||
/administrator/language/en-GB/en-GB.mod_login.ini |
||||
/administrator/language/en-GB/en-GB.mod_login.sys.ini |
||||
/administrator/language/en-GB/en-GB.mod_menu.ini |
||||
/administrator/language/en-GB/en-GB.mod_menu.sys.ini |
||||
/administrator/language/en-GB/en-GB.mod_multilangstatus.ini |
||||
/administrator/language/en-GB/en-GB.mod_multilangstatus.sys.ini |
||||
/administrator/language/en-GB/en-GB.mod_online.ini |
||||
/administrator/language/en-GB/en-GB.mod_online.sys.ini |
||||
/administrator/language/en-GB/en-GB.mod_popular.ini |
||||
/administrator/language/en-GB/en-GB.mod_popular.sys.ini |
||||
/administrator/language/en-GB/en-GB.mod_quickicon.ini |
||||
/administrator/language/en-GB/en-GB.mod_quickicon.sys.ini |
||||
/administrator/language/en-GB/en-GB.mod_status.ini |
||||
/administrator/language/en-GB/en-GB.mod_status.sys.ini |
||||
/administrator/language/en-GB/en-GB.mod_submenu.ini |
||||
/administrator/language/en-GB/en-GB.mod_submenu.sys.ini |
||||
/administrator/language/en-GB/en-GB.mod_title.ini |
||||
/administrator/language/en-GB/en-GB.mod_title.sys.ini |
||||
/administrator/language/en-GB/en-GB.mod_toolbar.ini |
||||
/administrator/language/en-GB/en-GB.mod_toolbar.sys.ini |
||||
/administrator/language/en-GB/en-GB.mod_unread.ini |
||||
/administrator/language/en-GB/en-GB.mod_unread.sys.ini |
||||
/administrator/language/en-GB/en-GB.mod_version.ini |
||||
/administrator/language/en-GB/en-GB.mod_version.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_authentication_example.ini |
||||
/administrator/language/en-GB/en-GB.plg_authentication_example.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_authentication_gmail.ini |
||||
/administrator/language/en-GB/en-GB.plg_authentication_gmail.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_authentication_joomla.ini |
||||
/administrator/language/en-GB/en-GB.plg_authentication_joomla.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_authentication_ldap.ini |
||||
/administrator/language/en-GB/en-GB.plg_authentication_ldap.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_captcha_recaptcha.ini |
||||
/administrator/language/en-GB/en-GB.plg_captcha_recaptcha.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_emailcloak.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_emailcloak.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_geshi.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_geshi.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_joomla.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_joomla.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_loadmodule.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_loadmodule.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_pagebreak.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_pagebreak.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_pagenavigation.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_pagenavigation.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_vote.ini |
||||
/administrator/language/en-GB/en-GB.plg_content_vote.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_editors_codemirror.ini |
||||
/administrator/language/en-GB/en-GB.plg_editors_codemirror.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_editors_none.ini |
||||
/administrator/language/en-GB/en-GB.plg_editors_none.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_editors_tinymce.ini |
||||
/administrator/language/en-GB/en-GB.plg_editors_tinymce.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_article.ini |
||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_article.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_image.ini |
||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_image.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_pagebreak.ini |
||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_pagebreak.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_readmore.ini |
||||
/administrator/language/en-GB/en-GB.plg_editors-xtd_readmore.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_extension_joomla.ini |
||||
/administrator/language/en-GB/en-GB.plg_extension_joomla.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_quickicon_extensionupdate.ini |
||||
/administrator/language/en-GB/en-GB.plg_quickicon_extensionupdate.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_search_categories.ini |
||||
/administrator/language/en-GB/en-GB.plg_search_categories.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_search_contacts.ini |
||||
/administrator/language/en-GB/en-GB.plg_search_contacts.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_search_content.ini |
||||
/administrator/language/en-GB/en-GB.plg_search_content.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_search_newsfeeds.ini |
||||
/administrator/language/en-GB/en-GB.plg_search_newsfeeds.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_search_weblinks.ini |
||||
/administrator/language/en-GB/en-GB.plg_search_weblinks.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_cache.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_cache.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_debug.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_debug.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_highlight.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_highlight.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_languagefilter.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_languagefilter.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_log.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_logout.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_logout.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_log.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_p3p.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_p3p.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_redirect.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_redirect.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_remember.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_remember.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_sef.ini |
||||
/administrator/language/en-GB/en-GB.plg_system_sef.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_user_contactcreator.ini |
||||
/administrator/language/en-GB/en-GB.plg_user_contactcreator.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_user_joomla.ini |
||||
/administrator/language/en-GB/en-GB.plg_user_joomla.sys.ini |
||||
/administrator/language/en-GB/en-GB.plg_user_profile.ini |
||||
/administrator/language/en-GB/en-GB.plg_user_profile.sys.ini |
||||
/administrator/language/en-GB/en-GB.tpl_bluestork.ini |
||||
/administrator/language/en-GB/en-GB.tpl_bluestork.sys.ini |
||||
/administrator/language/en-GB/en-GB.tpl_hathor.ini |
||||
/administrator/language/en-GB/en-GB.tpl_hathor.sys.ini |
||||
/administrator/language/en-GB/en-GB.xml |
||||
/administrator/language/en-GB/index.html |
||||
/administrator/language/overrides/* |
||||
/administrator/language/index.html |
||||
/administrator/manifests/* |
||||
/administrator/modules/mod_custom/* |
||||
/administrator/modules/mod_feed/* |
||||
/administrator/modules/mod_latest/* |
||||
/administrator/modules/mod_logged/* |
||||
/administrator/modules/mod_login/* |
||||
/administrator/modules/mod_menu/* |
||||
/administrator/modules/mod_multilangstatus/* |
||||
/administrator/modules/mod_online/* |
||||
/administrator/modules/mod_popular/* |
||||
/administrator/modules/mod_quickicon/* |
||||
/administrator/modules/mod_status/* |
||||
/administrator/modules/mod_submenu/* |
||||
/administrator/modules/mod_title/* |
||||
/administrator/modules/mod_toolbar/* |
||||
/administrator/modules/mod_unread/* |
||||
/administrator/modules/mod_version/* |
||||
/administrator/modules/mod_stats_admin/* |
||||
/administrator/modules/index.html |
||||
/administrator/templates/bluestork/* |
||||
/administrator/templates/isis/* |
||||
/administrator/templates/hathor/* |
||||
/administrator/templates/system/* |
||||
/administrator/templates/index.html |
||||
/administrator/index.php |
||||
/cache/* |
||||
/bin/* |
||||
/cli/* |
||||
/components/com_banners/* |
||||
/components/com_ajax/* |
||||
/components/com_config/* |
||||
/components/com_contenthistory/* |
||||
/components/com_tags/* |
||||
/components/com_contact/* |
||||
/components/com_content/* |
||||
/components/com_finder/* |
||||
/components/com_mailto/* |
||||
/components/com_media/* |
||||
/components/com_newsfeeds/* |
||||
/components/com_search/* |
||||
/components/com_users/* |
||||
/components/com_weblinks/* |
||||
/components/com_wrapper/* |
||||
/components/index.html |
||||
/images/banners/* |
||||
/images/sampledata/* |
||||
/images/joomla* |
||||
/images/index.html |
||||
/images/powered_by.png |
||||
/includes/* |
||||
/installation/* |
||||
/language/en-GB/en-GB.com_ajax.ini |
||||
/language/en-GB/en-GB.com_config.ini |
||||
/language/en-GB/en-GB.com_contact.ini |
||||
/language/en-GB/en-GB.com_finder.ini |
||||
/language/en-GB/en-GB.com_tags.ini |
||||
/language/en-GB/en-GB.finder_cli.ini |
||||
/language/en-GB/en-GB.lib_fof.sys.ini |
||||
/language/en-GB/en-GB.com_content.ini |
||||
/language/en-GB/en-GB.lib_idna_convert.sys.ini |
||||
/language/en-GB/en-GB.com_mailto.ini |
||||
/language/en-GB/en-GB.lib_joomla.sys.ini |
||||
/language/en-GB/en-GB.lib_phpass.sys.ini |
||||
/language/en-GB/en-GB.lib_phpmailer.sys.ini |
||||
/language/en-GB/en-GB.lib_phputf8.sys.ini |
||||
/language/en-GB/en-GB.lib_simplepie.sys.ini |
||||
/language/en-GB/en-GB.com_media.ini |
||||
/language/en-GB/en-GB.mod_finder.ini |
||||
/language/en-GB/en-GB.com_messages.ini |
||||
/language/en-GB/en-GB.mod_tags_popular.ini |
||||
/language/en-GB/en-GB.mod_tags_popular.sys.ini |
||||
/language/en-GB/en-GB.mod_tags_similar.ini |
||||
/language/en-GB/en-GB.mod_tags_similar.sys.ini |
||||
/language/en-GB/en-GB.mod_finder.sys.ini |
||||
/language/en-GB/en-GB.tpl_beez3.ini |
||||
/language/en-GB/en-GB.tpl_beez3.sys.ini |
||||
/language/en-GB/en-GB.com_newsfeeds.ini |
||||
/language/en-GB/en-GB.tpl_protostar.ini |
||||
/language/en-GB/en-GB.tpl_protostar.sys.ini |
||||
/language/en-GB/en-GB.com_search.ini |
||||
/language/en-GB/en-GB.com_users.ini |
||||
/language/en-GB/en-GB.com_weblinks.ini |
||||
/language/en-GB/en-GB.com_wrapper.ini |
||||
/language/en-GB/en-GB.files_joomla.sys.ini |
||||
/language/en-GB/en-GB.ini |
||||
/language/en-GB/en-GB.lib_joomla.ini |
||||
/language/en-GB/en-GB.localise.php |
||||
/language/en-GB/en-GB.mod_articles_archive.ini |
||||
/language/en-GB/en-GB.mod_articles_archive.sys.ini |
||||
/language/en-GB/en-GB.mod_articles_categories.ini |
||||
/language/en-GB/en-GB.mod_articles_categories.sys.ini |
||||
/language/en-GB/en-GB.mod_articles_category.ini |
||||
/language/en-GB/en-GB.mod_articles_category.sys.ini |
||||
/language/en-GB/en-GB.mod_articles_latest.ini |
||||
/language/en-GB/en-GB.mod_articles_latest.sys.ini |
||||
/language/en-GB/en-GB.mod_articles_news.ini |
||||
/language/en-GB/en-GB.mod_articles_news.sys.ini |
||||
/language/en-GB/en-GB.mod_articles_popular.ini |
||||
/language/en-GB/en-GB.mod_articles_popular.sys.ini |
||||
/language/en-GB/en-GB.mod_banners.ini |
||||
/language/en-GB/en-GB.mod_banners.sys.ini |
||||
/language/en-GB/en-GB.mod_breadcrumbs.ini |
||||
/language/en-GB/en-GB.mod_breadcrumbs.sys.ini |
||||
/language/en-GB/en-GB.mod_custom.ini |
||||
/language/en-GB/en-GB.mod_custom.sys.ini |
||||
/language/en-GB/en-GB.mod_feed.ini |
||||
/language/en-GB/en-GB.mod_feed.sys.ini |
||||
/language/en-GB/en-GB.mod_footer.ini |
||||
/language/en-GB/en-GB.mod_footer.sys.ini |
||||
/language/en-GB/en-GB.mod_languages.ini |
||||
/language/en-GB/en-GB.mod_languages.sys.ini |
||||
/language/en-GB/en-GB.mod_login.ini |
||||
/language/en-GB/en-GB.mod_login.sys.ini |
||||
/language/en-GB/en-GB.mod_menu.ini |
||||
/language/en-GB/en-GB.mod_menu.sys.ini |
||||
/language/en-GB/en-GB.mod_random_image.ini |
||||
/language/en-GB/en-GB.mod_random_image.sys.ini |
||||
/language/en-GB/en-GB.mod_related_items.ini |
||||
/language/en-GB/en-GB.mod_related_items.sys.ini |
||||
/language/en-GB/en-GB.mod_search.ini |
||||
/language/en-GB/en-GB.mod_search.sys.ini |
||||
/language/en-GB/en-GB.mod_stats.ini |
||||
/language/en-GB/en-GB.mod_stats.sys.ini |
||||
/language/en-GB/en-GB.mod_syndicate.ini |
||||
/language/en-GB/en-GB.mod_syndicate.sys.ini |
||||
/language/en-GB/en-GB.mod_users_latest.ini |
||||
/language/en-GB/en-GB.mod_users_latest.sys.ini |
||||
/language/en-GB/en-GB.mod_weblinks.ini |
||||
/language/en-GB/en-GB.mod_weblinks.sys.ini |
||||
/language/en-GB/en-GB.mod_whosonline.ini |
||||
/language/en-GB/en-GB.mod_whosonline.sys.ini |
||||
/language/en-GB/en-GB.mod_wrapper.ini |
||||
/language/en-GB/en-GB.mod_wrapper.sys.ini |
||||
/language/en-GB/en-GB.tpl_atomic.ini |
||||
/language/en-GB/en-GB.tpl_atomic.sys.ini |
||||
/language/en-GB/en-GB.tpl_beez_20.ini |
||||
/language/en-GB/en-GB.tpl_beez_20.sys.ini |
||||
/language/en-GB/en-GB.tpl_beez5.ini |
||||
/language/en-GB/en-GB.tpl_beez5.sys.ini |
||||
/language/en-GB/en-GB.xml |
||||
/language/en-GB/index.html |
||||
/language/en-GB/install.xml |
||||
/language/overrides/* |
||||
/language/index.html |
||||
/libraries/cms.php |
||||
/libraries/cms/* |
||||
/libraries/joomla/* |
||||
/libraries/phpmailer/* |
||||
/libraries/phputf8/* |
||||
/libraries/simplepie/* |
||||
/libraries/index.html |
||||
/libraries/import.php |
||||
/libraries/loader.php |
||||
/libraries/platform.php |
||||
/logs/* |
||||
/media/cms/* |
||||
/media/com_finder/* |
||||
/media/contacts/* |
||||
/media/editors/* |
||||
/media/mailto/* |
||||
/media/media/* |
||||
/media/mod_languages/* |
||||
/media/overrider/* |
||||
/media/plg_quickicon_extensionupdate/* |
||||
/media/plg_quickicon_joomlaupdate/* |
||||
/media/plg_system_highlight/* |
||||
/media/system/* |
||||
/media/index.html |
||||
/modules/mod_articles_archive/* |
||||
/modules/mod_articles_categories/* |
||||
/modules/mod_articles_category/* |
||||
/modules/mod_articles_latest/* |
||||
/modules/mod_articles_news/* |
||||
/modules/mod_articles_popular/* |
||||
/modules/mod_banners/* |
||||
/modules/mod_breadcrumbs/* |
||||
/modules/mod_custom/* |
||||
/modules/mod_feed/* |
||||
/modules/mod_finder/* |
||||
/modules/mod_footer/* |
||||
/modules/mod_languages/* |
||||
/modules/mod_login/* |
||||
/modules/mod_menu/* |
||||
/modules/mod_random_image/* |
||||
/modules/mod_related_items/* |
||||
/modules/mod_search/* |
||||
/modules/mod_stats/* |
||||
/modules/mod_syndicate/* |
||||
/modules/mod_users_latest/* |
||||
/modules/mod_weblinks/* |
||||
/modules/mod_whosonline/* |
||||
/modules/mod_wrapper/* |
||||
/modules/index.html |
||||
/plugins/authentication/example/* |
||||
/plugins/authentication/gmail/* |
||||
/plugins/authentication/joomla/* |
||||
/plugins/authentication/ldap/* |
||||
/plugins/authentication/index.html |
||||
/plugins/captcha/recaptcha/* |
||||
/plugins/captcha/index.html |
||||
/plugins/content/emailcloak/* |
||||
/plugins/content/example/* |
||||
/plugins/content/finder/* |
||||
/plugins/content/geshi/* |
||||
/plugins/content/joomla/* |
||||
/plugins/content/loadmodule/* |
||||
/plugins/content/pagebreak/* |
||||
/plugins/content/pagenavigation/* |
||||
/plugins/content/vote/* |
||||
/plugins/content/contact/* |
||||
/plugins/content/index.html |
||||
/plugins/editors/codemirror/* |
||||
/plugins/editors/none/* |
||||
/plugins/editors/tinymce/* |
||||
/plugins/editors/index.html |
||||
/plugins/editors-xtd/article/* |
||||
/plugins/editors-xtd/image/* |
||||
/plugins/editors-xtd/pagebreak/* |
||||
/plugins/editors-xtd/readmore/* |
||||
/plugins/editors-xtd/index.html |
||||
/plugins/extension/example/* |
||||
/plugins/extension/joomla/* |
||||
/plugins/extension/index.html |
||||
/plugins/finder/index.html |
||||
/plugins/finder/categories/* |
||||
/plugins/finder/contacts/* |
||||
/plugins/finder/content/* |
||||
/plugins/finder/newsfeeds/* |
||||
/plugins/finder/tags/* |
||||
/plugins/finder/weblinks/* |
||||
/plugins/installer/* |
||||
/plugins/quickicon/extensionupdate/* |
||||
/plugins/quickicon/joomlaupdate/* |
||||
/plugins/quickicon/index.html |
||||
/plugins/search/categories/* |
||||
/plugins/search/contacts/* |
||||
/plugins/search/content/* |
||||
/plugins/search/newsfeeds/* |
||||
/plugins/search/weblinks/* |
||||
/plugins/search/tags/* |
||||
/plugins/search/index.html |
||||
/plugins/system/cache/* |
||||
/plugins/system/debug/* |
||||
/plugins/system/highlight/* |
||||
/plugins/system/languagecode/* |
||||
/plugins/system/languagefilter/* |
||||
/plugins/system/log/* |
||||
/plugins/system/logout/* |
||||
/plugins/system/p3p/* |
||||
/plugins/system/redirect/* |
||||
/plugins/system/remember/* |
||||
/plugins/system/sef/* |
||||
/plugins/system/index.html |
||||
/plugins/twofactorauth/* |
||||
/plugins/user/contactcreator/* |
||||
/plugins/user/example/* |
||||
/plugins/user/joomla/* |
||||
/plugins/user/profile/* |
||||
/plugins/user/index.html |
||||
/plugins/index.html |
||||
/templates/atomic/* |
||||
/templates/beez3/* |
||||
/templates/beez_20/* |
||||
/templates/beez5/* |
||||
/templates/protostar/* |
||||
/templates/system/* |
||||
/templates/index.html |
||||
/tmp/* |
||||
/configuration.php |
||||
/index.php |
||||
/joomla.xml |
||||
/*.txt |
@ -0,0 +1,13 @@
|
||||
# For PCBs designed using KiCAD: http://www.kicad-pcb.org/ |
||||
|
||||
# Temporary files |
||||
*.000 |
||||
*.bak |
||||
*.bck |
||||
*.kicad_pcb-bak |
||||
|
||||
# Netlist files (exported from Eeschema) |
||||
*.net |
||||
|
||||
# Autorouter files (exported from Pcbnew) |
||||
.dsn |
@ -0,0 +1,16 @@
|
||||
# Libraries |
||||
*.lvlibp |
||||
*.llb |
||||
|
||||
# Shared objects (inc. Windows DLLs) |
||||
*.dll |
||||
*.so |
||||
*.so.* |
||||
*.dylib |
||||
|
||||
# Executables |
||||
*.exe |
||||
|
||||
# Metadata |
||||
*.aliases |
||||
*.lvlps |
@ -0,0 +1,4 @@
|
||||
/bootstrap/compiled.php |
||||
.env.*.php |
||||
.env.php |
||||
.env |
@ -0,0 +1,30 @@
|
||||
# Lazarus compiler-generated binaries (safe to delete) |
||||
*.exe |
||||
*.dll |
||||
*.so |
||||
*.dylib |
||||
*.lrs |
||||
*.res |
||||
*.compiled |
||||
*.dbg |
||||
*.ppu |
||||
*.o |
||||
*.or |
||||
*.a |
||||
|
||||
# Lazarus autogenerated files (duplicated info) |
||||
*.rst |
||||
*.rsj |
||||
*.lrt |
||||
|
||||
# Lazarus local files (user-specific info) |
||||
*.lps |
||||
|
||||
# Lazarus backups and unit output folders. |
||||
# These can be changed by user in Lazarus/project options. |
||||
backup/ |
||||
*.bak |
||||
lib/ |
||||
|
||||
# Application bundle for Mac OS |
||||
*.app/ |
@ -0,0 +1,12 @@
|
||||
pom.xml |
||||
pom.xml.asc |
||||
*jar |
||||
/lib/ |
||||
/classes/ |
||||
/target/ |
||||
/checkouts/ |
||||
.lein-deps-sum |
||||
.lein-repl-history |
||||
.lein-plugins/ |
||||
.lein-failures |
||||
.nrepl-port |
@ -0,0 +1,21 @@
|
||||
boot.php |
||||
index.php |
||||
install.php |
||||
/config/* |
||||
!/config/config.php |
||||
/controllers/* |
||||
/init/* |
||||
/logs/* |
||||
/phproad/* |
||||
/temp/* |
||||
/uploaded/* |
||||
/installer_files/* |
||||
/modules/backend/* |
||||
/modules/blog/* |
||||
/modules/cms/* |
||||
/modules/core/* |
||||
/modules/session/* |
||||
/modules/shop/* |
||||
/modules/system/* |
||||
/modules/users/* |
||||
# add content_*.php if you don't want erase client changes to content |
@ -0,0 +1,7 @@
|
||||
*~ |
||||
|
||||
# KDE directory preferences |
||||
.directory |
||||
|
||||
# Linux trash folder which might appear on any partition or disk |
||||
.Trash-* |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue