-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It works, but a lot of things need improvement. This combines the latest A3M 2-dev with Mahana Messaging and forums created from CIBB.
- Loading branch information
1 parent
8afe897
commit 74812e6
Showing
1,159 changed files
with
335,854 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
RewriteEngine on | ||
RewriteRule ^$ /index.php [L] | ||
RewriteCond $1 !^(index\.php|resource|system|user_guide|bootstrap|robots\.txt|favicon\.ico) | ||
RewriteRule ^(.*)$ /index.php/$1 [L] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
language: php | ||
|
||
php: | ||
- 5.3 | ||
- 5.4 | ||
|
||
env: | ||
- DB=mysql | ||
- DB=mysqli | ||
- DB=pgsql | ||
- DB=sqlite | ||
- DB=pdo/mysql | ||
- DB=pdo/pgsql | ||
- DB=pdo/sqlite | ||
|
||
before_script: | ||
- composer install --dev --no-progress | ||
- sh -c "if [ '$DB' = 'pgsql' ] || [ '$DB' = 'pdo/pgsql' ]; then psql -c 'DROP DATABASE IF EXISTS ci_test;' -U postgres; fi" | ||
- sh -c "if [ '$DB' = 'pgsql' ] || [ '$DB' = 'pdo/pgsql' ]; then psql -c 'create database ci_test;' -U postgres; fi" | ||
- sh -c "if [ '$DB' = 'mysql' ] || [ '$DB' = 'mysqli' ] || [ '$DB' = 'pdo/mysql' ]; then mysql -e 'create database IF NOT EXISTS ci_test;'; fi" | ||
|
||
script: phpunit --coverage-text --configuration tests/travis/$DB.phpunit.xml | ||
|
||
branches: | ||
only: | ||
- develop | ||
- /^feature\/.+$/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Developer's Certificate of Origin 1.1 | ||
|
||
By making a contribution to this project, I certify that: | ||
|
||
(1) The contribution was created in whole or in part by me and I | ||
have the right to submit it under the open source license | ||
indicated in the file; or | ||
|
||
(2) The contribution is based upon previous work that, to the best | ||
of my knowledge, is covered under an appropriate open source | ||
license and I have the right under that license to submit that | ||
work with modifications, whether created in whole or in part | ||
by me, under the same open source license (unless I am | ||
permitted to submit under a different license), as indicated | ||
in the file; or | ||
|
||
(3) The contribution was provided directly to me by some other | ||
person who certified (1), (2) or (3) and I have not modified | ||
it. | ||
|
||
(4) I understand and agree that this project and the contribution | ||
are public and that a record of the contribution (including all | ||
personal information I submit with it, including my sign-off) is | ||
maintained indefinitely and may be redistributed consistent with | ||
this project or the open source license(s) involved. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!-- Komodo Project File - DO NOT EDIT --> | ||
<project id="fc6b52cc-204e-46fa-b5e1-bd5ca4ff4bb0" kpf_version="5" name="UMF.komodoproject"> | ||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<IfModule authz_core_module> | ||
Require all denied | ||
</IfModule> | ||
<IfModule !authz_core_module> | ||
Deny from all | ||
</IfModule> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,163 @@ | ||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | ||
/** | ||
* CodeIgniter | ||
* | ||
* An open source application development framework for PHP 5.2.4 or newer | ||
* | ||
* NOTICE OF LICENSE | ||
* | ||
* Licensed under the Academic Free License version 3.0 | ||
* | ||
* This source file is subject to the Academic Free License (AFL 3.0) that is | ||
* bundled with this package in the files license_afl.txt / license_afl.rst. | ||
* It is also available through the world wide web at this URL: | ||
* http://opensource.org/licenses/AFL-3.0 | ||
* If you did not receive a copy of the license and are unable to obtain it | ||
* through the world wide web, please send an email to | ||
* [email protected] so we can send you a copy immediately. | ||
* | ||
* @package CodeIgniter | ||
* @author EllisLab Dev Team | ||
* @copyright Copyright (c) 2008 - 2013, EllisLab, Inc. (http://ellislab.com/) | ||
* @license http://opensource.org/licenses/AFL-3.0 Academic Free License (AFL 3.0) | ||
* @link http://codeigniter.com | ||
* @since Version 1.0 | ||
* @filesource | ||
*/ | ||
|
||
/* | ||
| ------------------------------------------------------------------- | ||
| AUTO-LOADER | ||
| ------------------------------------------------------------------- | ||
| This file specifies which systems should be loaded by default. | ||
| | ||
| In order to keep the framework as light-weight as possible only the | ||
| absolute minimal resources are loaded by default. For example, | ||
| the database is not connected to automatically since no assumption | ||
| is made regarding whether you intend to use it. This file lets | ||
| you globally define which systems you would like loaded with every | ||
| request. | ||
| | ||
| ------------------------------------------------------------------- | ||
| Instructions | ||
| ------------------------------------------------------------------- | ||
| | ||
| These are the things you can load automatically: | ||
| | ||
| 1. Packages | ||
| 2. Libraries | ||
| 3. Drivers | ||
| 4. Helper files | ||
| 5. Custom config files | ||
| 6. Language files | ||
| 7. Models | ||
| | ||
*/ | ||
|
||
/* | ||
| ------------------------------------------------------------------- | ||
| Auto-load Packages | ||
| ------------------------------------------------------------------- | ||
| Prototype: | ||
| | ||
| $autoload['packages'] = array(APPPATH.'third_party', '/usr/local/shared'); | ||
| | ||
*/ | ||
|
||
$autoload['packages'] = array(); | ||
|
||
|
||
/* | ||
| ------------------------------------------------------------------- | ||
| Auto-load Libraries | ||
| ------------------------------------------------------------------- | ||
| These are the classes located in the system/libraries folder | ||
| or in your application/libraries folder. | ||
| | ||
| Prototype: | ||
| | ||
| $autoload['libraries'] = array('database', 'email', 'xmlrpc'); | ||
*/ | ||
|
||
$autoload['libraries'] = array('account/Authorization', 'account/Authentication'); | ||
|
||
|
||
/* | ||
| ------------------------------------------------------------------- | ||
| Auto-load Drivers | ||
| ------------------------------------------------------------------- | ||
| These classes are located in the system/libraries folder or in your | ||
| application/libraries folder within their own subdirectory. They | ||
| offer multiple interchangeable driver options. | ||
| | ||
| Prototype: | ||
| | ||
| $autoload['drivers'] = array('session', 'cache'); | ||
*/ | ||
|
||
$autoload['drivers'] = array(); | ||
|
||
|
||
/* | ||
| ------------------------------------------------------------------- | ||
| Auto-load Helper Files | ||
| ------------------------------------------------------------------- | ||
| Prototype: | ||
| | ||
| $autoload['helper'] = array('url', 'file'); | ||
*/ | ||
|
||
$autoload['helper'] = array('account/ssl', 'language', 'url'); | ||
|
||
|
||
/* | ||
| ------------------------------------------------------------------- | ||
| Auto-load Config files | ||
| ------------------------------------------------------------------- | ||
| Prototype: | ||
| | ||
| $autoload['config'] = array('config1', 'config2'); | ||
| | ||
| NOTE: This item is intended for use ONLY if you have created custom | ||
| config files. Otherwise, leave it blank. | ||
| | ||
*/ | ||
|
||
$autoload['config'] = array('umf/account'); | ||
|
||
|
||
/* | ||
| ------------------------------------------------------------------- | ||
| Auto-load Language files | ||
| ------------------------------------------------------------------- | ||
| Prototype: | ||
| | ||
| $autoload['language'] = array('lang1', 'lang2'); | ||
| | ||
| NOTE: Do not include the "_lang" part of your file. For example | ||
| "codeigniter_lang.php" would be referenced as array('codeigniter'); | ||
| | ||
*/ | ||
|
||
$autoload['language'] = array('general'); | ||
|
||
|
||
/* | ||
| ------------------------------------------------------------------- | ||
| Auto-load Models | ||
| ------------------------------------------------------------------- | ||
| Prototype: | ||
| | ||
| $autoload['model'] = array('first_model', 'second_model'); | ||
| | ||
| You can also supply an alternative model name to be assigned | ||
| in the controller: | ||
| | ||
| $autoload['model'] = array('first_model' => 'first'); | ||
*/ | ||
|
||
$autoload['model'] = array('account/Account_model'); | ||
|
||
|
||
/* End of file autoload.php */ | ||
/* Location: ./application/config/autoload.php */ |
Oops, something went wrong.