Skip to content

Commit 404f6fe

Browse files
committed
Init commit
0 parents  commit 404f6fe

File tree

644 files changed

+96874
-0
lines changed

Some content is hidden

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

644 files changed

+96874
-0
lines changed

.gitattributes

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
User.php filter=gitignore
2+
index.vue filter=gitignore

CodeIgniter-3.1.10/.editorconfig

+15
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

CodeIgniter-3.1.10/.gitignore

+31
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/

CodeIgniter-3.1.10/.htaccess

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<IfModule mod_rewrite.c>
2+
RewriteEngine on
3+
RewriteCond %{REQUEST_FILENAME} !-d
4+
RewriteCond %{REQUEST_FILENAME} !-f
5+
RewriteRule ^(.*)$ /index.php?/$1 [QSA,PT,L]
6+
# sovled php apache missing Authorization header http://httpd.apache.org/docs/current/howto/cgi.html
7+
# If your CGI program depends on non-standard environment variables, you will need to assure that those variables are passed by Apache.
8+
SetEnvIf Authorization .+ HTTP_AUTHORIZATION=$0
9+
</IfModule>
+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<IfModule authz_core_module>
2+
Require all denied
3+
</IfModule>
4+
<IfModule !authz_core_module>
5+
Deny from all
6+
</IfModule>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>403 Forbidden</title>
5+
</head>
6+
<body>
7+
8+
<p>Directory access is forbidden.</p>
9+
10+
</body>
11+
</html>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,138 @@
1+
<?php
2+
defined('BASEPATH') OR exit('No direct script access allowed');
3+
4+
/*
5+
| -------------------------------------------------------------------
6+
| AUTO-LOADER
7+
| -------------------------------------------------------------------
8+
| This file specifies which systems should be loaded by default.
9+
|
10+
| In order to keep the framework as light-weight as possible only the
11+
| absolute minimal resources are loaded by default. For example,
12+
| the database is not connected to automatically since no assumption
13+
| is made regarding whether you intend to use it. This file lets
14+
| you globally define which systems you would like loaded with every
15+
| request.
16+
|
17+
| -------------------------------------------------------------------
18+
| Instructions
19+
| -------------------------------------------------------------------
20+
|
21+
| These are the things you can load automatically:
22+
|
23+
| 1. Packages
24+
| 2. Libraries
25+
| 3. Drivers
26+
| 4. Helper files
27+
| 5. Custom config files
28+
| 6. Language files
29+
| 7. Models
30+
|
31+
*/
32+
33+
/*
34+
| -------------------------------------------------------------------
35+
| Auto-load Packages
36+
| -------------------------------------------------------------------
37+
| Prototype:
38+
|
39+
| $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared');
40+
|
41+
*/
42+
$autoload['packages'] = array();
43+
44+
/*
45+
| -------------------------------------------------------------------
46+
| Auto-load Libraries
47+
| -------------------------------------------------------------------
48+
| These are the classes located in system/libraries/ or your
49+
| application/libraries/ directory, with the addition of the
50+
| 'database' library, which is somewhat of a special case.
51+
|
52+
| Prototype:
53+
|
54+
| $autoload['libraries'] = array('database', 'email', 'session');
55+
|
56+
| You can also supply an alternative library name to be assigned
57+
| in the controller:
58+
|
59+
| $autoload['libraries'] = array('user_agent' => 'ua');
60+
*/
61+
//$autoload['libraries'] = array();
62+
$autoload['libraries'] = array('Permission');
63+
64+
65+
/*
66+
| -------------------------------------------------------------------
67+
| Auto-load Drivers
68+
| -------------------------------------------------------------------
69+
| These classes are located in system/libraries/ or in your
70+
| application/libraries/ directory, but are also placed inside their
71+
| own subdirectory and they extend the CI_Driver_Library class. They
72+
| offer multiple interchangeable driver options.
73+
|
74+
| Prototype:
75+
|
76+
| $autoload['drivers'] = array('cache');
77+
|
78+
| You can also supply an alternative property name to be assigned in
79+
| the controller:
80+
|
81+
| $autoload['drivers'] = array('cache' => 'cch');
82+
|
83+
*/
84+
$autoload['drivers'] = array();
85+
86+
/*
87+
| -------------------------------------------------------------------
88+
| Auto-load Helper Files
89+
| -------------------------------------------------------------------
90+
| Prototype:
91+
|
92+
| $autoload['helper'] = array('url', 'file');
93+
*/
94+
//$autoload['helper'] = array();
95+
$autoload['helper'] = array('url');
96+
97+
/*
98+
| -------------------------------------------------------------------
99+
| Auto-load Config files
100+
| -------------------------------------------------------------------
101+
| Prototype:
102+
|
103+
| $autoload['config'] = array('config1', 'config2');
104+
|
105+
| NOTE: This item is intended for use ONLY if you have created custom
106+
| config files. Otherwise, leave it blank.
107+
|
108+
*/
109+
$autoload['config'] = array();
110+
111+
/*
112+
| -------------------------------------------------------------------
113+
| Auto-load Language files
114+
| -------------------------------------------------------------------
115+
| Prototype:
116+
|
117+
| $autoload['language'] = array('lang1', 'lang2');
118+
|
119+
| NOTE: Do not include the "_lang" part of your file. For example
120+
| "codeigniter_lang.php" would be referenced as array('codeigniter');
121+
|
122+
*/
123+
$autoload['language'] = array();
124+
125+
/*
126+
| -------------------------------------------------------------------
127+
| Auto-load Models
128+
| -------------------------------------------------------------------
129+
| Prototype:
130+
|
131+
| $autoload['model'] = array('first_model', 'second_model');
132+
|
133+
| You can also supply an alternative model name to be assigned
134+
| in the controller:
135+
|
136+
| $autoload['model'] = array('first_model' => 'first');
137+
*/
138+
$autoload['model'] = array();

0 commit comments

Comments
 (0)