Skip to content

Commit 12d2752

Browse files
committed
Latest
1 parent a4c1bed commit 12d2752

2,735 files changed

Lines changed: 681361 additions & 0 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# top-most EditorConfig file
2+
root = true
3+
4+
# Unix-style newlines with a newline ending every file
5+
[*]
6+
end_of_line = lf
7+
insert_final_newline = true
8+
9+
# Matches multiple files with brace expansion notation
10+
# Set default charset
11+
[*]
12+
charset = utf-8
13+
14+
# Tab indentation (no size specified)
15+
indent_style = tab

.gitignore

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
.DS_Store
2+
3+
application/cache/*
4+
!application/cache/index.html
5+
6+
application/logs/*
7+
!application/logs/index.html
8+
9+
!application/*/.htaccess
10+
11+
composer.lock
12+
13+
user_guide_src/build/*
14+
user_guide_src/cilexer/build/*
15+
user_guide_src/cilexer/dist/*
16+
user_guide_src/cilexer/pycilexer.egg-info/*
17+
/vendor/
18+
19+
# IDE Files
20+
#-------------------------
21+
/nbproject/
22+
.idea/*
23+
24+
## Sublime Text cache files
25+
*.tmlanguage.cache
26+
*.tmPreferences.cache
27+
*.stTheme.cache
28+
*.sublime-workspace
29+
*.sublime-project
30+
/tests/tests/
31+
/tests/results/

.htaccess

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
RewriteEngine On
2+
RewriteCond %{REQUEST_FILENAME} !-f
3+
RewriteCond %{REQUEST_FILENAME} !-d
4+
RewriteRule ^(.*)$ index.php/$1 [L]

0 commit comments

Comments
 (0)