├── codeigniter_2.1.4 ├── .htaccess ├── fonts │ ├── texb.ttf │ └── index.html ├── index.html ├── core │ ├── index.html │ ├── Model.php │ └── Controller.php ├── database │ ├── index.html │ └── drivers │ │ ├── index.html │ │ ├── cubrid │ │ └── index.html │ │ ├── mssql │ │ ├── index.html │ │ └── mssql_utility.php │ │ ├── mysql │ │ └── index.html │ │ ├── mysqli │ │ ├── index.html │ │ └── mysqli_utility.php │ │ ├── oci8 │ │ ├── index.html │ │ └── oci8_utility.php │ │ ├── odbc │ │ ├── index.html │ │ └── odbc_utility.php │ │ ├── pdo │ │ ├── index.html │ │ └── pdo_utility.php │ │ ├── postgre │ │ ├── index.html │ │ └── postgre_utility.php │ │ ├── sqlite │ │ ├── index.html │ │ └── sqlite_utility.php │ │ └── sqlsrv │ │ ├── index.html │ │ └── sqlsrv_utility.php ├── helpers │ ├── index.html │ ├── language_helper.php │ ├── email_helper.php │ ├── path_helper.php │ ├── xml_helper.php │ ├── number_helper.php │ ├── directory_helper.php │ └── typography_helper.php ├── language │ ├── index.html │ └── english │ │ ├── index.html │ │ ├── number_lang.php │ │ ├── migration_lang.php │ │ ├── unit_test_lang.php │ │ ├── profiler_lang.php │ │ ├── ftp_lang.php │ │ ├── calendar_lang.php │ │ ├── upload_lang.php │ │ ├── email_lang.php │ │ ├── form_validation_lang.php │ │ ├── imglib_lang.php │ │ └── db_lang.php └── libraries │ └── index.html ├── penjadwalan_genetik ├── .htaccess ├── cache │ ├── .htaccess │ └── index.html ├── views │ ├── hari.php │ ├── jam.php │ ├── dosen.php │ ├── ruang.php │ ├── dosen_add.php │ ├── hari_add.php │ ├── hari_edit.php │ ├── jam_add.php │ ├── jam_edit.php │ ├── pengampu.php │ ├── matakuliah.php │ ├── penjadwalan.php │ ├── ruang_edit.php │ ├── matakuliah_add.php │ ├── pengampu_add.php │ ├── pengampu_edit.php │ ├── matakuliah_edit.php │ ├── index.html │ ├── option_matakuliah_ajax.php │ ├── dosen_ajax.php │ ├── pengampu_ajax.php │ ├── ruang_add.php │ ├── dosen_edit.php │ └── matakuliah_ajax.php ├── index.html ├── config │ ├── index.html │ ├── profiler.php │ ├── hooks.php │ ├── doctypes.php │ ├── migration.php │ ├── constants.php │ ├── routes.php │ └── foreign_chars.php ├── core │ └── index.html ├── errors │ ├── index.html │ ├── error_php.php │ ├── error_general.php │ ├── error_db.php │ └── error_404.php ├── helpers │ └── index.html ├── hooks │ ├── index.html │ └── uhoh.php ├── logs │ └── index.html ├── models │ ├── index.html │ ├── m_waktu_tidak_bersedia.php │ ├── m_jam.php │ ├── m_ruang.php │ ├── m_hari.php │ └── m_jadwalkuliah.php ├── controllers │ └── index.html ├── libraries │ ├── index.html │ ├── PHPExcel │ │ ├── Chart │ │ │ ├── Renderer │ │ │ │ └── PHP Charting Libraries.txt │ │ │ ├── Exception.php │ │ │ └── Title.php │ │ ├── Shared │ │ │ ├── JAMA │ │ │ │ ├── CHANGELOG.TXT │ │ │ │ └── utils │ │ │ │ │ └── Maths.php │ │ │ ├── Escher │ │ │ │ ├── DggContainer │ │ │ │ │ ├── BstoreContainer.php │ │ │ │ │ └── BstoreContainer │ │ │ │ │ │ └── BSE │ │ │ │ │ │ └── Blip.php │ │ │ │ └── DgContainer.php │ │ │ ├── PasswordHasher.php │ │ │ ├── Escher.php │ │ │ └── OLE │ │ │ │ └── PPS │ │ │ │ └── File.php │ │ ├── locale │ │ │ ├── en │ │ │ │ └── uk │ │ │ │ │ └── config │ │ │ ├── de │ │ │ │ └── config │ │ │ ├── no │ │ │ │ └── config │ │ │ ├── pt │ │ │ │ ├── config │ │ │ │ └── br │ │ │ │ │ └── config │ │ │ ├── cs │ │ │ │ └── config │ │ │ ├── fr │ │ │ │ └── config │ │ │ ├── it │ │ │ │ └── config │ │ │ ├── nl │ │ │ │ └── config │ │ │ ├── pl │ │ │ │ └── config │ │ │ ├── ru │ │ │ │ └── config │ │ │ ├── tr │ │ │ │ └── config │ │ │ ├── hu │ │ │ │ └── config │ │ │ ├── bg │ │ │ │ └── config │ │ │ ├── da │ │ │ │ └── config │ │ │ ├── sv │ │ │ │ └── config │ │ │ ├── fi │ │ │ │ └── config │ │ │ └── es │ │ │ │ └── config │ │ ├── IComparable.php │ │ ├── Writer │ │ │ ├── IWriter.php │ │ │ ├── Exception.php │ │ │ └── Excel2007 │ │ │ │ └── WriterPart.php │ │ ├── Reader │ │ │ ├── IReadFilter.php │ │ │ ├── IReader.php │ │ │ ├── Exception.php │ │ │ ├── DefaultReadFilter.php │ │ │ └── Excel5 │ │ │ │ └── RC4.php │ │ ├── Cell │ │ │ └── IValueBinder.php │ │ ├── Calculation │ │ │ ├── ExceptionHandler.php │ │ │ └── Exception.php │ │ ├── Exception.php │ │ ├── RichText │ │ │ └── ITextElement.php │ │ ├── Worksheet │ │ │ └── Row.php │ │ └── CalcEngine │ │ │ └── CyclicReferenceStack.php │ └── MY_Session.php ├── third_party │ └── index.html └── language │ └── english │ ├── index.html │ ├── number_lang.php │ ├── migration_lang.php │ ├── unit_test_lang.php │ ├── profiler_lang.php │ ├── ftp_lang.php │ ├── calendar_lang.php │ ├── upload_lang.php │ ├── email_lang.php │ ├── form_validation_lang.php │ ├── imglib_lang.php │ └── db_lang.php ├── .travis.yml ├── assets ├── img │ ├── 140x140.gif │ ├── 170x170.gif │ ├── calendar.gif │ ├── black-Linen.png │ ├── please_wait.gif │ └── pengertian-pendidikan.jpg ├── lib │ ├── font-awesome │ │ └── font │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont_2d2816fe.eot │ ├── fullcalendar-1.5.3 │ │ └── fullcalendar │ │ │ └── fullcalendar.print.css │ └── datepicker │ │ └── less │ │ └── datepicker.less └── css │ └── badger.min.css ├── .gitignore └── license.txt /codeigniter_2.1.4/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /penjadwalan_genetik/.htaccess: -------------------------------------------------------------------------------- 1 | Deny from all -------------------------------------------------------------------------------- /penjadwalan_genetik/cache/.htaccess: -------------------------------------------------------------------------------- 1 | deny from all -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | branches: 2 | except: 3 | - 2.1-stable 4 | - master -------------------------------------------------------------------------------- /assets/img/140x140.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/assets/img/140x140.gif -------------------------------------------------------------------------------- /assets/img/170x170.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/assets/img/170x170.gif -------------------------------------------------------------------------------- /assets/img/calendar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/assets/img/calendar.gif -------------------------------------------------------------------------------- /assets/img/black-Linen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/assets/img/black-Linen.png -------------------------------------------------------------------------------- /assets/img/please_wait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/assets/img/please_wait.gif -------------------------------------------------------------------------------- /codeigniter_2.1.4/fonts/texb.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/codeigniter_2.1.4/fonts/texb.ttf -------------------------------------------------------------------------------- /penjadwalan_genetik/views/hari.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/hari.php -------------------------------------------------------------------------------- /penjadwalan_genetik/views/jam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/jam.php -------------------------------------------------------------------------------- /assets/img/pengertian-pendidikan.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/assets/img/pengertian-pendidikan.jpg -------------------------------------------------------------------------------- /penjadwalan_genetik/views/dosen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/dosen.php -------------------------------------------------------------------------------- /penjadwalan_genetik/views/ruang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/ruang.php -------------------------------------------------------------------------------- /penjadwalan_genetik/views/dosen_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/dosen_add.php -------------------------------------------------------------------------------- /penjadwalan_genetik/views/hari_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/hari_add.php -------------------------------------------------------------------------------- /penjadwalan_genetik/views/hari_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/hari_edit.php -------------------------------------------------------------------------------- /penjadwalan_genetik/views/jam_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/jam_add.php -------------------------------------------------------------------------------- /penjadwalan_genetik/views/jam_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/jam_edit.php -------------------------------------------------------------------------------- /penjadwalan_genetik/views/pengampu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/pengampu.php -------------------------------------------------------------------------------- /penjadwalan_genetik/views/matakuliah.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/matakuliah.php -------------------------------------------------------------------------------- /penjadwalan_genetik/views/penjadwalan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/penjadwalan.php -------------------------------------------------------------------------------- /penjadwalan_genetik/views/ruang_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/ruang_edit.php -------------------------------------------------------------------------------- /penjadwalan_genetik/views/matakuliah_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/matakuliah_add.php -------------------------------------------------------------------------------- /penjadwalan_genetik/views/pengampu_add.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/pengampu_add.php -------------------------------------------------------------------------------- /penjadwalan_genetik/views/pengampu_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/pengampu_edit.php -------------------------------------------------------------------------------- /penjadwalan_genetik/views/matakuliah_edit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/penjadwalan_genetik/views/matakuliah_edit.php -------------------------------------------------------------------------------- /assets/lib/font-awesome/font/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/assets/lib/font-awesome/font/fontawesome-webfont.eot -------------------------------------------------------------------------------- /assets/lib/font-awesome/font/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/assets/lib/font-awesome/font/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /assets/lib/font-awesome/font/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/assets/lib/font-awesome/font/fontawesome-webfont.woff -------------------------------------------------------------------------------- /assets/lib/font-awesome/font/fontawesome-webfont_2d2816fe.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibnoe/penjadwalan-genetik-php/HEAD/assets/lib/font-awesome/font/fontawesome-webfont_2d2816fe.eot -------------------------------------------------------------------------------- /codeigniter_2.1.4/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /penjadwalan_genetik/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/fonts/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/language/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /penjadwalan_genetik/cache/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /penjadwalan_genetik/config/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /penjadwalan_genetik/core/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /penjadwalan_genetik/errors/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /penjadwalan_genetik/helpers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /penjadwalan_genetik/hooks/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /penjadwalan_genetik/logs/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /penjadwalan_genetik/models/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /penjadwalan_genetik/views/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /penjadwalan_genetik/controllers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /penjadwalan_genetik/third_party/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | application/cache/* 4 | !application/cache/index.html 5 | !application/cache/.htaccess 6 | 7 | application/logs/* 8 | !application/logs/index.html 9 | !application/logs/.htaccess -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /penjadwalan_genetik/language/english/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/cubrid/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/mssql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/mysql/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/mysqli/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/oci8/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/odbc/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/pdo/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/postgre/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/sqlite/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/sqlsrv/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 403 Forbidden 4 | 5 | 6 | 7 |

Directory access is forbidden.

8 | 9 | 10 | -------------------------------------------------------------------------------- /penjadwalan_genetik/views/option_matakuliah_ajax.php: -------------------------------------------------------------------------------- 1 | 2 | result() as $mk) { ?> 3 | 4 | 5 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/language/english/number_lang.php: -------------------------------------------------------------------------------- 1 | 2 | 3 |

A PHP Error was encountered

4 | 5 |

Severity:

6 |

Message:

7 |

Filename:

8 |

Line Number:

9 | 10 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Chart/Renderer/PHP Charting Libraries.txt: -------------------------------------------------------------------------------- 1 | ChartDirector 2 | http://www.advsofteng.com/cdphp.html 3 | 4 | GraPHPite 5 | http://graphpite.sourceforge.net/ 6 | 7 | JpGraph 8 | http://www.aditus.nu/jpgraph/ 9 | 10 | LibChart 11 | http://naku.dohcrew.com/libchart/pages/introduction/ 12 | 13 | pChart 14 | http://pchart.sourceforge.net/ 15 | 16 | TeeChart 17 | http://www.steema.com/products/teechart/overview.html 18 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Shared/JAMA/CHANGELOG.TXT: -------------------------------------------------------------------------------- 1 | Mar 1, 2005 11:15 AST by PM 2 | 3 | + For consistency, renamed Math.php to Maths.java, utils to util, 4 | tests to test, docs to doc - 5 | 6 | + Removed conditional logic from top of Matrix class. 7 | 8 | + Switched to using hypo function in Maths.php for all php-hypot calls. 9 | NOTE TO SELF: Need to make sure that all decompositions have been 10 | switched over to using the bundled hypo. 11 | 12 | Feb 25, 2005 at 10:00 AST by PM 13 | 14 | + Recommend using simpler Error.php instead of JAMA_Error.php but 15 | can be persuaded otherwise. 16 | 17 | -------------------------------------------------------------------------------- /penjadwalan_genetik/config/profiler.php: -------------------------------------------------------------------------------- 1 | 'load_exceptions', 16 | 'filename' => 'uhoh.php', 17 | 'filepath' => 'hooks', 18 | ); 19 | /* End of file hooks.php */ 20 | /* Location: ./application/config/hooks.php */ -------------------------------------------------------------------------------- /codeigniter_2.1.4/language/english/migration_lang.php: -------------------------------------------------------------------------------- 1 | CI->session = $this; 18 | } 19 | 20 | function sess_update() 21 | { 22 | // Do NOT update an existing session on AJAX calls. 23 | if (!$this->CI->input->is_ajax_request()) 24 | return parent::sess_update(); 25 | } 26 | 27 | } 28 | 29 | /* End of file MY_Session.php */ 30 | /* Location: ./application/libraries/MY_Session.php */ -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Shared/JAMA/utils/Maths.php: -------------------------------------------------------------------------------- 1 | abs($b)) { 16 | $r = $b / $a; 17 | $r = abs($a) * sqrt(1 + $r * $r); 18 | } elseif ($b != 0) { 19 | $r = $a / $b; 20 | $r = abs($b) * sqrt(1 + $r * $r); 21 | } else { 22 | $r = 0.0; 23 | } 24 | return $r; 25 | } // function hypo() 26 | 27 | 28 | /** 29 | * Mike Bommarito's version. 30 | * Compute n-dimensional hyotheneuse. 31 | * 32 | function hypot() { 33 | $s = 0; 34 | foreach (func_get_args() as $d) { 35 | if (is_numeric($d)) { 36 | $s += pow($d, 2); 37 | } else { 38 | throw new PHPExcel_Calculation_Exception(JAMAError(ArgumentTypeException)); 39 | } 40 | } 41 | return sqrt($s); 42 | } 43 | */ 44 | -------------------------------------------------------------------------------- /penjadwalan_genetik/hooks/uhoh.php: -------------------------------------------------------------------------------- 1 | 11 | * @license Apache License v2.0 12 | * @version 1.0 13 | */ 14 | 15 | /** 16 | * Load Exceptions 17 | * 18 | * Simply loads the Exception class 19 | */ 20 | function load_exceptions() 21 | { 22 | // Due to a weird bug I have to get the absolute paths here. 23 | define('ABS_APPPATH', realpath(APPPATH) . '/'); 24 | 25 | if(CI_VERSION >= '2.0') 26 | { 27 | // For CodeIgniter 2.0 28 | define('ABS_SYSDIR', realpath(SYSDIR) . '/'); 29 | load_class('Exceptions', 'core'); 30 | } 31 | else 32 | { 33 | // For CodeIgniter 1.7.2 34 | define('ABS_SYSDIR', realpath(BASEPATH) . '/'); 35 | load_class('Exceptions'); 36 | } 37 | } -------------------------------------------------------------------------------- /penjadwalan_genetik/errors/error_general.php: -------------------------------------------------------------------------------- 1 | 39 | 40 |
41 |

[ ]

42 |
43 |

44 |
45 |
46 | -------------------------------------------------------------------------------- /assets/css/badger.min.css: -------------------------------------------------------------------------------- 1 | .thumbnails>li { 2 | float: left; 3 | margin-bottom: 30px; 4 | margin-left: 20px; 5 | } 6 | 7 | .premium_property { 8 | position: relative; 9 | } 10 | 11 | .badger-outter 12 | {background:#fff;border:1px solid#ccc;min-width:36px;height:30px;border-radius:18px;-moz-border-radius:18px;-webkit-border-radius:18px;box-shadow:0px 1px 5px#ccc;-moz-box-shadow:0px 1px 5px#ccc;-webkit-box-shadow:0px 1px 5px#ccc;float:left;position:absolute;top:-18px;right:-18px;z-index:0;} 13 | 14 | .badger-inner 15 | {min-width:30px;height:24px;border-radius:15px;-moz-border-radius:15px;-webkit-border-radius:15px;background:#f13c31;background:-moz-linear-gradient(100%100%90deg,#f13c31,#f79690);background:-webkit-gradient(linear,0%0%,0%100%,from(#f79690),to(#f13c31));background:-webkit-linear-gradient(#f79690,#f13c31);background:-o-linear-gradient(#f79690,#f13c31);margin:3px;z-index:0;} 16 | 17 | .badger-badge 18 | {color:#fff;padding:2px 5px;margin:0;text-align:center;text-shadow:0px-1px 1px#e01b0f;z-index:999999;} 19 | 20 | .badger-text 21 | {font-size:18px;} 22 | 23 | .badger-number 24 | {font-size:22px;} -------------------------------------------------------------------------------- /penjadwalan_genetik/config/doctypes.php: -------------------------------------------------------------------------------- 1 | '', 5 | 'xhtml1-strict' => '', 6 | 'xhtml1-trans' => '', 7 | 'xhtml1-frame' => '', 8 | 'html5' => '', 9 | 'html4-strict' => '', 10 | 'html4-trans' => '', 11 | 'html4-frame' => '' 12 | ); 13 | 14 | /* End of file doctypes.php */ 15 | /* Location: ./application/config/doctypes.php */ -------------------------------------------------------------------------------- /codeigniter_2.1.4/language/english/profiler_lang.php: -------------------------------------------------------------------------------- 1 | db->query("SELECT kode_hari,kode_jam ". 18 | "FROM waktu_tidak_bersedia ". 19 | "WHERE kode_dosen = $kode_dosen"); 20 | return $rs; 21 | } 22 | 23 | function update($kode,$data){ 24 | /* 25 | string.Format( 26 | "UPDATE waktu_tidak_bersedia " + 27 | "SET kode_dosen = {0} " + 28 | "WHERE kode_dosen = {1}", 29 | txtKode.Text, 30 | _selectedkode); 31 | */ 32 | 33 | $this->db->where('kode',$kode); 34 | $this->db->update('waktu_tidak_bersedia',$data); 35 | } 36 | 37 | 38 | function delete_by_dosen($kode_dosen){ 39 | $this->db->query("DELETE FROM waktu_tidak_bersedia ". 40 | "WHERE kode_dosen = $kode_dosen"); 41 | 42 | } 43 | 44 | 45 | } -------------------------------------------------------------------------------- /codeigniter_2.1.4/language/english/ftp_lang.php: -------------------------------------------------------------------------------- 1 | $key; 52 | } 53 | } 54 | // END Model Class 55 | 56 | /* End of file Model.php */ 57 | /* Location: ./system/core/Model.php */ -------------------------------------------------------------------------------- /penjadwalan_genetik/errors/error_db.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Database Error 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /penjadwalan_genetik/errors/error_404.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 404 Page Not Found 5 | 55 | 56 | 57 |
58 |

59 | 60 |
61 | 62 | -------------------------------------------------------------------------------- /penjadwalan_genetik/config/migration.php: -------------------------------------------------------------------------------- 1 | migration->latest() this is the version that schema will 21 | | be upgraded / downgraded to. 22 | | 23 | */ 24 | $config['migration_version'] = 0; 25 | 26 | 27 | /* 28 | |-------------------------------------------------------------------------- 29 | | Migrations Path 30 | |-------------------------------------------------------------------------- 31 | | 32 | | Path to your migrations folder. 33 | | Typically, it will be within your application path. 34 | | Also, writing permission is required within the migrations path. 35 | | 36 | */ 37 | $config['migration_path'] = APPPATH . 'migrations/'; 38 | 39 | 40 | /* End of file migration.php */ 41 | /* Location: ./application/config/migration.php */ -------------------------------------------------------------------------------- /penjadwalan_genetik/models/m_jam.php: -------------------------------------------------------------------------------- 1 | db->query("SELECT kode ,range_jam ". 18 | "FROM jam ". 19 | "ORDER BY range_jam"); 20 | return $rs; 21 | } 22 | 23 | function get_by_kode($kode){ 24 | $rs = $this->db->query("SELECT kode ,range_jam ". 25 | "FROM jam ". 26 | "WHERE kode = $kode"); 27 | return $rs; 28 | } 29 | 30 | function cek_for_update($kode_baru,$kode_lama){ 31 | $rs = $this->db->query("SELECT CAST(COUNT(*) AS CHAR(1)) as cnt ". 32 | "FROM jam ". 33 | "WHERE kode=$kode_baru AND kode <> $kode_lama"); 34 | return $rs->row()->cnt; 35 | } 36 | 37 | function cek_for_insert($kode){ 38 | $rs = $this->db->query("SELECT CAST(COUNT(*) AS CHAR(1)) as cnt ". 39 | "FROM jam ". 40 | "WHERE kode=$kode"); 41 | return $rs->row()->cnt; 42 | } 43 | 44 | function update($kode,$data){ 45 | $this->db->where('kode',$kode); 46 | $this->db->update('jam',$data); 47 | } 48 | 49 | function insert($data){ 50 | $this->db->insert('jam',$data); 51 | } 52 | 53 | function delete($kode){ 54 | $this->db->query("DELETE FROM jam WHERE kode = '$kode'"); 55 | } 56 | 57 | } -------------------------------------------------------------------------------- /penjadwalan_genetik/models/m_ruang.php: -------------------------------------------------------------------------------- 1 | db->query("SELECT * FROM ruang"); 18 | return $rs; 19 | } 20 | 21 | function get_by_kode($kode){ 22 | $rs = $this->db->query("SELECT * FROM ruang WHERE kode = $kode"); 23 | return $rs; 24 | } 25 | 26 | function cek_for_update($nama,$kode){ 27 | $rs = $this->db->query("SELECT CAST(COUNT(*) AS CHAR(1)) as cnt ". 28 | "FROM ruang ". 29 | "WHERE nama='$nama' AND kode <> $kode"); 30 | return $rs->row()->cnt; 31 | } 32 | 33 | function cek_for_insert($nama){ 34 | $rs = $this->db->query("SELECT CAST(COUNT(*) AS CHAR(1)) as cnt ". 35 | "FROM ruang ". 36 | "WHERE nama='$nama'"); 37 | return $rs->row()->cnt; 38 | } 39 | 40 | function update($kode,$data){ 41 | $this->db->where('kode',$kode); 42 | $this->db->update('ruang',$data); 43 | } 44 | 45 | function insert($data){ 46 | $this->db->insert('ruang',$data); 47 | } 48 | 49 | function delete($kode){ 50 | $this->db->query("DELETE FROM ruang where kode = $kode"); 51 | } 52 | 53 | function get_search($search_query){ 54 | $rs = $this->db->query("SELECT kode,nama,kapasitas,jenis FROM ruang WHERE nama LIKE '%$search_query%'"); 55 | return $rs; 56 | } 57 | 58 | } -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/locale/de/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version ##VERSION##, ##DATE## 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = € 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #NULL! 42 | DIV0 = #DIV/0! 43 | VALUE = #WERT! 44 | REF = #BEZUG! 45 | NAME = #NAME? 46 | NUM = #ZAHL! 47 | NA = #NV 48 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/locale/no/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version ##VERSION##, ##DATE## 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = kr 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #NULL! 42 | DIV0 = #DIV/0! 43 | VALUE = #VERDI! 44 | REF = #REF! 45 | NAME = #NAVN? 46 | NUM = #NUM! 47 | NA = #I/T 48 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/locale/pt/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version ##VERSION##, ##DATE## 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = € 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #NULO! 42 | DIV0 = #DIV/0! 43 | VALUE = #VALOR! 44 | REF = #REF! 45 | NAME = #NOME? 46 | NUM = #NÚM! 47 | NA = #N/D 48 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/locale/cs/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version ##VERSION##, ##DATE## 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = Kč 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #NULL! 42 | DIV0 = #DIV/0! 43 | VALUE = #HODNOTA! 44 | REF = #REF! 45 | NAME = #NÁZEV? 46 | NUM = #NUM! 47 | NA = #N/A 48 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/locale/fr/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version ##VERSION##, ##DATE## 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = € 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #NUL! 42 | DIV0 = #DIV/0! 43 | VALUE = #VALEUR! 44 | REF = #REF! 45 | NAME = #NOM? 46 | NUM = #NOMBRE! 47 | NA = #N/A 48 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/locale/it/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version ##VERSION##, ##DATE## 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = € 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #NULLO! 42 | DIV0 = #DIV/0! 43 | VALUE = #VALORE! 44 | REF = #RIF! 45 | NAME = #NOME? 46 | NUM = #NUM! 47 | NA = #N/D 48 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/locale/nl/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version ##VERSION##, ##DATE## 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = € 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #LEEG! 42 | DIV0 = #DEEL/0! 43 | VALUE = #WAARDE! 44 | REF = #VERW! 45 | NAME = #NAAM? 46 | NUM = #GETAL! 47 | NA = #N/B 48 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/locale/pl/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version ##VERSION##, ##DATE## 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = zł 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #ZERO! 42 | DIV0 = #DZIEL/0! 43 | VALUE = #ARG! 44 | REF = #ADR! 45 | NAME = #NAZWA? 46 | NUM = #LICZBA! 47 | NA = #N/D! 48 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/locale/pt/br/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version ##VERSION##, ##DATE## 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = R$ 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #NULO! 42 | DIV0 = #DIV/0! 43 | VALUE = #VALOR! 44 | REF = #REF! 45 | NAME = #NOME? 46 | NUM = #NÚM! 47 | NA = #N/D 48 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/locale/ru/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version ##VERSION##, ##DATE## 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = р 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #ПУСТО! 42 | DIV0 = #ДЕЛ/0! 43 | VALUE = #ЗНАЧ! 44 | REF = #ССЫЛ! 45 | NAME = #ИМЯ? 46 | NUM = #ЧИСЛО! 47 | NA = #Н/Д 48 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/locale/tr/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version ##VERSION##, ##DATE## 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = YTL 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #BOŞ! 42 | DIV0 = #SAYI/0! 43 | VALUE = #DEĞER! 44 | REF = #BAŞV! 45 | NAME = #AD? 46 | NUM = #SAYI! 47 | NA = #YOK 48 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/locale/hu/config: -------------------------------------------------------------------------------- 1 | ## 2 | ## PHPExcel 3 | ## 4 | ## Copyright (c) 2006 - 2013 PHPExcel 5 | ## 6 | ## This library is free software; you can redistribute it and/or 7 | ## modify it under the terms of the GNU Lesser General Public 8 | ## License as published by the Free Software Foundation; either 9 | ## version 2.1 of the License, or (at your option) any later version. 10 | ## 11 | ## This library is distributed in the hope that it will be useful, 12 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 14 | ## Lesser General Public License for more details. 15 | ## 16 | ## You should have received a copy of the GNU Lesser General Public 17 | ## License along with this library; if not, write to the Free Software 18 | ## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 19 | ## 20 | ## @category PHPExcel 21 | ## @package PHPExcel_Settings 22 | ## @copyright Copyright (c) 2006 - 2013 PHPExcel (http://www.codeplex.com/PHPExcel) 23 | ## @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL 24 | ## @version ##VERSION##, ##DATE## 25 | ## 26 | ## 27 | 28 | 29 | ArgumentSeparator = ; 30 | 31 | 32 | ## 33 | ## (For future use) 34 | ## 35 | currencySymbol = Ft 36 | 37 | 38 | ## 39 | ## Excel Error Codes (For future use) 40 | ## 41 | NULL = #NULLA! 42 | DIV0 = #ZÉRÓOSZTÓ! 43 | VALUE = #ÉRTÉK! 44 | REF = #HIV! 45 | NAME = #NÉV? 46 | NUM = #SZÁM! 47 | NA = #HIÁNYZIK 48 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/IComparable.php: -------------------------------------------------------------------------------- 1 | tag. 6 | * Make sure to include this stylesheet IN ADDITION to the regular fullcalendar.css. 7 | * 8 | * Copyright (c) 2011 Adam Shaw 9 | * Dual licensed under the MIT and GPL licenses, located in 10 | * MIT-LICENSE.txt and GPL-LICENSE.txt respectively. 11 | * 12 | * Date: Mon Feb 6 22:40:40 2012 -0800 13 | * 14 | */ 15 | 16 | 17 | /* Events 18 | -----------------------------------------------------*/ 19 | 20 | .fc-event-skin { 21 | background: none !important; 22 | color: #000 !important; 23 | } 24 | 25 | /* horizontal events */ 26 | 27 | .fc-event-hori { 28 | border-width: 0 0 1px 0 !important; 29 | border-bottom-style: dotted !important; 30 | border-bottom-color: #000 !important; 31 | padding: 1px 0 0 0 !important; 32 | } 33 | 34 | .fc-event-hori .fc-event-inner { 35 | border-width: 0 !important; 36 | padding: 0 1px !important; 37 | } 38 | 39 | /* vertical events */ 40 | 41 | .fc-event-vert { 42 | border-width: 0 0 0 1px !important; 43 | border-left-style: dotted !important; 44 | border-left-color: #000 !important; 45 | padding: 0 1px 0 0 !important; 46 | } 47 | 48 | .fc-event-vert .fc-event-inner { 49 | border-width: 0 !important; 50 | padding: 1px 0 !important; 51 | } 52 | 53 | .fc-event-bg { 54 | display: none !important; 55 | } 56 | 57 | .fc-event .ui-resizable-handle { 58 | display: none !important; 59 | } 60 | 61 | 62 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/helpers/language_helper.php: -------------------------------------------------------------------------------- 1 | lang->line($line); 46 | 47 | if ($id != '') 48 | { 49 | $line = '"; 50 | } 51 | 52 | return $line; 53 | } 54 | } 55 | 56 | // ------------------------------------------------------------------------ 57 | /* End of file language_helper.php */ 58 | /* Location: ./system/helpers/language_helper.php */ -------------------------------------------------------------------------------- /codeigniter_2.1.4/language/english/calendar_lang.php: -------------------------------------------------------------------------------- 1 | $class) 45 | { 46 | $this->$var =& load_class($class); 47 | } 48 | 49 | $this->load =& load_class('Loader', 'core'); 50 | 51 | $this->load->initialize(); 52 | 53 | log_message('debug', "Controller Class Initialized"); 54 | } 55 | 56 | public static function &get_instance() 57 | { 58 | return self::$instance; 59 | } 60 | } 61 | // END Controller class 62 | 63 | /* End of file Controller.php */ 64 | /* Location: ./system/core/Controller.php */ -------------------------------------------------------------------------------- /penjadwalan_genetik/config/foreign_chars.php: -------------------------------------------------------------------------------- 1 | 'ae', 12 | '/ö|œ/' => 'oe', 13 | '/ü/' => 'ue', 14 | '/Ä/' => 'Ae', 15 | '/Ü/' => 'Ue', 16 | '/Ö/' => 'Oe', 17 | '/À|Á|Â|Ã|Ä|Å|Ǻ|Ā|Ă|Ą|Ǎ/' => 'A', 18 | '/à|á|â|ã|å|ǻ|ā|ă|ą|ǎ|ª/' => 'a', 19 | '/Ç|Ć|Ĉ|Ċ|Č/' => 'C', 20 | '/ç|ć|ĉ|ċ|č/' => 'c', 21 | '/Ð|Ď|Đ/' => 'D', 22 | '/ð|ď|đ/' => 'd', 23 | '/È|É|Ê|Ë|Ē|Ĕ|Ė|Ę|Ě/' => 'E', 24 | '/è|é|ê|ë|ē|ĕ|ė|ę|ě/' => 'e', 25 | '/Ĝ|Ğ|Ġ|Ģ/' => 'G', 26 | '/ĝ|ğ|ġ|ģ/' => 'g', 27 | '/Ĥ|Ħ/' => 'H', 28 | '/ĥ|ħ/' => 'h', 29 | '/Ì|Í|Î|Ï|Ĩ|Ī|Ĭ|Ǐ|Į|İ/' => 'I', 30 | '/ì|í|î|ï|ĩ|ī|ĭ|ǐ|į|ı/' => 'i', 31 | '/Ĵ/' => 'J', 32 | '/ĵ/' => 'j', 33 | '/Ķ/' => 'K', 34 | '/ķ/' => 'k', 35 | '/Ĺ|Ļ|Ľ|Ŀ|Ł/' => 'L', 36 | '/ĺ|ļ|ľ|ŀ|ł/' => 'l', 37 | '/Ñ|Ń|Ņ|Ň/' => 'N', 38 | '/ñ|ń|ņ|ň|ʼn/' => 'n', 39 | '/Ò|Ó|Ô|Õ|Ō|Ŏ|Ǒ|Ő|Ơ|Ø|Ǿ/' => 'O', 40 | '/ò|ó|ô|õ|ō|ŏ|ǒ|ő|ơ|ø|ǿ|º/' => 'o', 41 | '/Ŕ|Ŗ|Ř/' => 'R', 42 | '/ŕ|ŗ|ř/' => 'r', 43 | '/Ś|Ŝ|Ş|Š/' => 'S', 44 | '/ś|ŝ|ş|š|ſ/' => 's', 45 | '/Ţ|Ť|Ŧ/' => 'T', 46 | '/ţ|ť|ŧ/' => 't', 47 | '/Ù|Ú|Û|Ũ|Ū|Ŭ|Ů|Ű|Ų|Ư|Ǔ|Ǖ|Ǘ|Ǚ|Ǜ/' => 'U', 48 | '/ù|ú|û|ũ|ū|ŭ|ů|ű|ų|ư|ǔ|ǖ|ǘ|ǚ|ǜ/' => 'u', 49 | '/Ý|Ÿ|Ŷ/' => 'Y', 50 | '/ý|ÿ|ŷ/' => 'y', 51 | '/Ŵ/' => 'W', 52 | '/ŵ/' => 'w', 53 | '/Ź|Ż|Ž/' => 'Z', 54 | '/ź|ż|ž/' => 'z', 55 | '/Æ|Ǽ/' => 'AE', 56 | '/ß/'=> 'ss', 57 | '/IJ/' => 'IJ', 58 | '/ij/' => 'ij', 59 | '/Œ/' => 'OE', 60 | '/ƒ/' => 'f' 61 | ); 62 | 63 | /* End of file foreign_chars.php */ 64 | /* Location: ./application/config/foreign_chars.php */ -------------------------------------------------------------------------------- /penjadwalan_genetik/models/m_hari.php: -------------------------------------------------------------------------------- 1 | db->query("SELECT * FROM hari"); 18 | return $rs; 19 | } 20 | 21 | function get_by_kode($kode){ 22 | $rs = $this->db->query("SELECT kode ,nama ". 23 | "FROM hari ". 24 | "WHERE kode = $kode"); 25 | return $rs; 26 | } 27 | 28 | function cek_for_update($kode_baru,$nama,$kode_lama){ 29 | /* 30 | var check = string.Format("SELECT CAST(COUNT(*) AS CHAR(1)) " + 31 | "FROM hari " + 32 | "WHERE (kode='{0}' OR nama='{1}') AND kode <> {2}", 33 | txtKodeHari.Text, txtNamaHari.Text, _selectedkodeHr); 34 | var i = int.Parse(_dbConnect.ExecuteScalar(check)); 35 | */ 36 | 37 | $rs = $this->db->query("SELECT CAST(COUNT(*) AS CHAR(1)) as cnt ". 38 | "FROM hari WHERE (kode=$kode_baru OR nama='$nama') AND kode <> $kode_lama"); 39 | return $rs->row()->cnt; 40 | } 41 | 42 | function cek_for_insert($kode,$nama){ 43 | $rs = $this->db->query("SELECT CAST(COUNT(*) AS CHAR(1)) as cnt ". 44 | "FROM hari WHERE kode=$kode OR nama='$nama'"); 45 | return $rs->row()->cnt; 46 | } 47 | 48 | function update($kode,$data){ 49 | $this->db->where('kode',$kode); 50 | $this->db->update('hari',$data); 51 | } 52 | 53 | function insert($data){ 54 | $this->db->insert('hari',$data); 55 | } 56 | 57 | function delete($kode){ 58 | $this->db->query("DELETE FROM hari WHERE kode = '$kode'"); 59 | } 60 | 61 | 62 | } -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Calculation/ExceptionHandler.php: -------------------------------------------------------------------------------- 1 | line = $line; 49 | $e->file = $file; 50 | throw $e; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Reader/Exception.php: -------------------------------------------------------------------------------- 1 | line = $line; 49 | $e->file = $file; 50 | throw $e; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Writer/Exception.php: -------------------------------------------------------------------------------- 1 | line = $line; 49 | $e->file = $file; 50 | throw $e; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/language/english/form_validation_lang.php: -------------------------------------------------------------------------------- 1 | line = $line; 49 | $e->file = $file; 50 | throw $e; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Exception.php: -------------------------------------------------------------------------------- 1 | line = $line; 49 | $e->file = $file; 50 | throw $e; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/RichText/ITextElement.php: -------------------------------------------------------------------------------- 1 | db->query( "SELECT e.nama as hari,". 19 | " Concat_WS('-', concat('(', g.kode), concat( (SELECT kode". 20 | " FROM jam ". 21 | " WHERE kode = (SELECT jm.kode ". 22 | " FROM jam jm ". 23 | " WHERE MID(jm.range_jam,1,5) = MID(g.range_jam,1,5)) + (c.sks - 1)),')')) as sesi, ". 24 | " Concat_WS('-', MID(g.range_jam,1,5),". 25 | " (SELECT MID(range_jam,7,5) ". 26 | " FROM jam ". 27 | " WHERE kode = (SELECT jm.kode ". 28 | " FROM jam jm ". 29 | " WHERE MID(jm.range_jam,1,5) = MID(g.range_jam,1,5)) + (c.sks - 1))) as jam_kuliah, ". 30 | 31 | " c.nama as nama_mk,". 32 | " c.sks as sks,". 33 | " c.semester as semester,". 34 | " b.kelas as kelas,". 35 | " d.nama as dosen,". 36 | " f.nama as ruang ". 37 | "FROM jadwalkuliah a ". 38 | "LEFT JOIN pengampu b ". 39 | "ON a.kode_pengampu = b.kode ". 40 | "LEFT JOIN matakuliah c ". 41 | "ON b.kode_mk = c.kode ". 42 | "LEFT JOIN dosen d ". 43 | "ON b.kode_dosen = d.kode ". 44 | "LEFT JOIN hari e ". 45 | "ON a.kode_hari = e.kode ". 46 | "LEFT JOIN ruang f ". 47 | "ON a.kode_ruang = f.kode ". 48 | "LEFT JOIN jam g ". 49 | "ON a.kode_jam = g.kode ". 50 | "order by e.kode asc,Jam_Kuliah asc;"); 51 | return $rs; 52 | } 53 | } -------------------------------------------------------------------------------- /penjadwalan_genetik/views/dosen_ajax.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | result() as $dosen) { ?> 23 | 24 | 25 | 26 | 27 | 28 | 29 | 33 | 34 | 35 | 36 | 37 |
#NIDNNamaTelp
nidn;?>nama;?>telp;?> 30 | 31 | 32 |
38 |
39 | 40 | 41 | 46 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/helpers/path_helper.php: -------------------------------------------------------------------------------- 1 | ","\"", "'", "-"), 53 | array("&", "<", ">", """, "'", "-"), 54 | $str); 55 | 56 | // Decode the temp markers back to entities 57 | $str = preg_replace("/$temp(\d+);/","&#\\1;",$str); 58 | 59 | if ($protect_all === TRUE) 60 | { 61 | $str = preg_replace("/$temp(\w+);/","&\\1;", $str); 62 | } 63 | 64 | return $str; 65 | } 66 | } 67 | 68 | // ------------------------------------------------------------------------ 69 | 70 | /* End of file xml_helper.php */ 71 | /* Location: ./system/helpers/xml_helper.php */ -------------------------------------------------------------------------------- /penjadwalan_genetik/language/english/imglib_lang.php: -------------------------------------------------------------------------------- 1 | lang->load('number'); 43 | 44 | if ($num >= 1000000000000) 45 | { 46 | $num = round($num / 1099511627776, $precision); 47 | $unit = $CI->lang->line('terabyte_abbr'); 48 | } 49 | elseif ($num >= 1000000000) 50 | { 51 | $num = round($num / 1073741824, $precision); 52 | $unit = $CI->lang->line('gigabyte_abbr'); 53 | } 54 | elseif ($num >= 1000000) 55 | { 56 | $num = round($num / 1048576, $precision); 57 | $unit = $CI->lang->line('megabyte_abbr'); 58 | } 59 | elseif ($num >= 1000) 60 | { 61 | $num = round($num / 1024, $precision); 62 | $unit = $CI->lang->line('kilobyte_abbr'); 63 | } 64 | else 65 | { 66 | $unit = $CI->lang->line('bytes'); 67 | return number_format($num).' '.$unit; 68 | } 69 | 70 | return number_format($num, $precision).' '.$unit; 71 | } 72 | } 73 | 74 | 75 | /* End of file number_helper.php */ 76 | /* Location: ./system/helpers/number_helper.php */ -------------------------------------------------------------------------------- /penjadwalan_genetik/views/pengampu_ajax.php: -------------------------------------------------------------------------------- 1 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | result() as $pengampu) { ?> 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 35 | 36 | 37 | 38 | 39 |
#MatakuliahDosenKelasTahun Akademik
nama_mk;?>nama_dosen;?>kelas;?>tahun_akademik;?> 32 | 33 | 34 |
40 |
41 | 42 | 43 | 48 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/postgre/postgre_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsuported_feature'); 83 | } 84 | } 85 | 86 | 87 | /* End of file postgre_utility.php */ 88 | /* Location: ./system/database/drivers/postgre/postgre_utility.php */ -------------------------------------------------------------------------------- /penjadwalan_genetik/views/ruang_add.php: -------------------------------------------------------------------------------- 1 |
2 |
3 |

4 |
5 | 10 | 11 |
12 |
13 | 14 |
15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 34 | 35 |
36 | 37 | 38 |
39 |
40 | 41 | 46 | 47 |
48 |
49 |
-------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Shared/Escher/DggContainer/BstoreContainer.php: -------------------------------------------------------------------------------- 1 | _BSECollection[] = $BSE; 52 | $BSE->setParent($this); 53 | } 54 | 55 | /** 56 | * Get the collection of BLIP Store Entries 57 | * 58 | * @return PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE[] 59 | */ 60 | public function getBSECollection() 61 | { 62 | return $this->_BSECollection; 63 | } 64 | 65 | } 66 | -------------------------------------------------------------------------------- /penjadwalan_genetik/views/dosen_edit.php: -------------------------------------------------------------------------------- 1 | result() as $dosen) {} ?> 2 | 3 |
4 |
5 |

6 |
7 | 12 | 13 |
14 |
15 | 16 |
17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 |
39 | 40 | 41 |
42 |
43 | 44 | 49 | 50 |
51 |
52 |
-------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/oci8/oci8_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsuported_feature'); 83 | } 84 | } 85 | 86 | /* End of file oci8_utility.php */ 87 | /* Location: ./system/database/drivers/oci8/oci8_utility.php */ -------------------------------------------------------------------------------- /codeigniter_2.1.4/language/english/db_lang.php: -------------------------------------------------------------------------------- 1 | 3 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | result() as $mk) { ?> 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 39 | 40 | 41 | 42 | 43 |
#Kode MKNamaSKSSemesterJenis
kode_mk;?>nama;?>sks;?>semester;?>jenis;?> 36 | 37 | 38 |
44 |
45 | 46 | 47 | 52 | 53 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/mssql/mssql_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsuported_feature'); 83 | } 84 | 85 | } 86 | 87 | /* End of file mssql_utility.php */ 88 | /* Location: ./system/database/drivers/mssql/mssql_utility.php */ -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/mysqli/mysqli_utility.php: -------------------------------------------------------------------------------- 1 | db->_escape_identifiers($table); 52 | } 53 | 54 | // -------------------------------------------------------------------- 55 | 56 | /** 57 | * Repair table query 58 | * 59 | * Generates a platform-specific query so that a table can be repaired 60 | * 61 | * @access private 62 | * @param string the table name 63 | * @return object 64 | */ 65 | function _repair_table($table) 66 | { 67 | return "REPAIR TABLE ".$this->db->_escape_identifiers($table); 68 | } 69 | 70 | // -------------------------------------------------------------------- 71 | 72 | /** 73 | * MySQLi Export 74 | * 75 | * @access private 76 | * @param array Preferences 77 | * @return mixed 78 | */ 79 | function _backup($params = array()) 80 | { 81 | // Currently unsupported 82 | return $this->db->display_error('db_unsuported_feature'); 83 | } 84 | } 85 | 86 | /* End of file mysqli_utility.php */ 87 | /* Location: ./system/database/drivers/mysqli/mysqli_utility.php */ -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/sqlsrv/sqlsrv_utility.php: -------------------------------------------------------------------------------- 1 | db->display_error('db_unsuported_feature'); 83 | } 84 | 85 | } 86 | 87 | /* End of file mssql_utility.php */ 88 | /* Location: ./system/database/drivers/mssql/mssql_utility.php */ -------------------------------------------------------------------------------- /codeigniter_2.1.4/helpers/directory_helper.php: -------------------------------------------------------------------------------- 1 | 0) && @is_dir($source_dir.$file)) 61 | { 62 | $filedata[$file] = directory_map($source_dir.$file.DIRECTORY_SEPARATOR, $new_depth, $hidden); 63 | } 64 | else 65 | { 66 | $filedata[] = $file; 67 | } 68 | } 69 | 70 | closedir($fp); 71 | return $filedata; 72 | } 73 | 74 | return FALSE; 75 | } 76 | } 77 | 78 | 79 | /* End of file directory_helper.php */ 80 | /* Location: ./system/helpers/directory_helper.php */ -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Shared/Escher/DgContainer.php: -------------------------------------------------------------------------------- 1 | _dgId; 56 | } 57 | 58 | public function setDgId($value) 59 | { 60 | $this->_dgId = $value; 61 | } 62 | 63 | public function getLastSpId() 64 | { 65 | return $this->_lastSpId; 66 | } 67 | 68 | public function setLastSpId($value) 69 | { 70 | $this->_lastSpId = $value; 71 | } 72 | 73 | public function getSpgrContainer() 74 | { 75 | return $this->_spgrContainer; 76 | } 77 | 78 | public function setSpgrContainer($spgrContainer) 79 | { 80 | return $this->_spgrContainer = $spgrContainer; 81 | } 82 | 83 | } 84 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Chart/Title.php: -------------------------------------------------------------------------------- 1 | _caption = $caption; 59 | $this->_layout = $layout; 60 | } 61 | 62 | /** 63 | * Get caption 64 | * 65 | * @return string 66 | */ 67 | public function getCaption() { 68 | return $this->_caption; 69 | } 70 | 71 | /** 72 | * Set caption 73 | * 74 | * @param string $caption 75 | * @return PHPExcel_Chart_Title 76 | */ 77 | public function setCaption($caption = null) { 78 | $this->_caption = $caption; 79 | 80 | return $this; 81 | } 82 | 83 | /** 84 | * Get Layout 85 | * 86 | * @return PHPExcel_Chart_Layout 87 | */ 88 | public function getLayout() { 89 | return $this->_layout; 90 | } 91 | 92 | } 93 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/sqlite/sqlite_utility.php: -------------------------------------------------------------------------------- 1 | db_debug) 41 | { 42 | return $this->db->display_error('db_unsuported_feature'); 43 | } 44 | return array(); 45 | } 46 | 47 | // -------------------------------------------------------------------- 48 | 49 | /** 50 | * Optimize table query 51 | * 52 | * Is optimization even supported in SQLite? 53 | * 54 | * @access private 55 | * @param string the table name 56 | * @return object 57 | */ 58 | function _optimize_table($table) 59 | { 60 | return FALSE; 61 | } 62 | 63 | // -------------------------------------------------------------------- 64 | 65 | /** 66 | * Repair table query 67 | * 68 | * Are table repairs even supported in SQLite? 69 | * 70 | * @access private 71 | * @param string the table name 72 | * @return object 73 | */ 74 | function _repair_table($table) 75 | { 76 | return FALSE; 77 | } 78 | 79 | // -------------------------------------------------------------------- 80 | 81 | /** 82 | * SQLite Export 83 | * 84 | * @access private 85 | * @param array Preferences 86 | * @return mixed 87 | */ 88 | function _backup($params = array()) 89 | { 90 | // Currently unsupported 91 | return $this->db->display_error('db_unsuported_feature'); 92 | } 93 | } 94 | 95 | /* End of file sqlite_utility.php */ 96 | /* Location: ./system/database/drivers/sqlite/sqlite_utility.php */ -------------------------------------------------------------------------------- /codeigniter_2.1.4/helpers/typography_helper.php: -------------------------------------------------------------------------------- 1 | load->library('typography'); 44 | 45 | return $CI->typography->nl2br_except_pre($str); 46 | } 47 | } 48 | 49 | // ------------------------------------------------------------------------ 50 | 51 | /** 52 | * Auto Typography Wrapper Function 53 | * 54 | * 55 | * @access public 56 | * @param string 57 | * @param bool whether to allow javascript event handlers 58 | * @param bool whether to reduce multiple instances of double newlines to two 59 | * @return string 60 | */ 61 | if ( ! function_exists('auto_typography')) 62 | { 63 | function auto_typography($str, $strip_js_event_handlers = TRUE, $reduce_linebreaks = FALSE) 64 | { 65 | $CI =& get_instance(); 66 | $CI->load->library('typography'); 67 | return $CI->typography->auto_typography($str, $strip_js_event_handlers, $reduce_linebreaks); 68 | } 69 | } 70 | 71 | 72 | // -------------------------------------------------------------------- 73 | 74 | /** 75 | * HTML Entities Decode 76 | * 77 | * This function is a replacement for html_entity_decode() 78 | * 79 | * @access public 80 | * @param string 81 | * @return string 82 | */ 83 | if ( ! function_exists('entity_decode')) 84 | { 85 | function entity_decode($str, $charset='UTF-8') 86 | { 87 | global $SEC; 88 | return $SEC->entity_decode($str, $charset); 89 | } 90 | } 91 | 92 | /* End of file typography_helper.php */ 93 | /* Location: ./system/helpers/typography_helper.php */ -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) 2008 - 2011, EllisLab, Inc. 2 | All rights reserved. 3 | 4 | This license is a legal agreement between you and EllisLab Inc. for the use 5 | of CodeIgniter Software (the "Software"). By obtaining the Software you 6 | agree to comply with the terms and conditions of this license. 7 | 8 | PERMITTED USE 9 | You are permitted to use, copy, modify, and distribute the Software and its 10 | documentation, with or without modification, for any purpose, provided that 11 | the following conditions are met: 12 | 13 | 1. A copy of this license agreement must be included with the distribution. 14 | 15 | 2. Redistributions of source code must retain the above copyright notice in 16 | all source code files. 17 | 18 | 3. Redistributions in binary form must reproduce the above copyright notice 19 | in the documentation and/or other materials provided with the distribution. 20 | 21 | 4. Any files that have been modified must carry notices stating the nature 22 | of the change and the names of those who changed them. 23 | 24 | 5. Products derived from the Software must include an acknowledgment that 25 | they are derived from CodeIgniter in their documentation and/or other 26 | materials provided with the distribution. 27 | 28 | 6. Products derived from the Software may not be called "CodeIgniter", 29 | nor may "CodeIgniter" appear in their name, without prior written 30 | permission from EllisLab, Inc. 31 | 32 | INDEMNITY 33 | You agree to indemnify and hold harmless the authors of the Software and 34 | any contributors for any direct, indirect, incidental, or consequential 35 | third-party claims, actions or suits, as well as any related expenses, 36 | liabilities, damages, settlements or fees arising from your use or misuse 37 | of the Software, or a violation of any terms of this license. 38 | 39 | DISCLAIMER OF WARRANTY 40 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESSED OR 41 | IMPLIED, INCLUDING, BUT NOT LIMITED TO, WARRANTIES OF QUALITY, PERFORMANCE, 42 | NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE. 43 | 44 | LIMITATIONS OF LIABILITY 45 | YOU ASSUME ALL RISK ASSOCIATED WITH THE INSTALLATION AND USE OF THE SOFTWARE. 46 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS OF THE SOFTWARE BE LIABLE 47 | FOR CLAIMS, DAMAGES OR OTHER LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION 48 | WITH THE SOFTWARE. LICENSE HOLDERS ARE SOLELY RESPONSIBLE FOR DETERMINING THE 49 | APPROPRIATENESS OF USE AND ASSUME ALL RISKS ASSOCIATED WITH ITS USE, INCLUDING 50 | BUT NOT LIMITED TO THE RISKS OF PROGRAM ERRORS, DAMAGE TO EQUIPMENT, LOSS OF 51 | DATA OR SOFTWARE PROGRAMS, OR UNAVAILABILITY OR INTERRUPTION OF OPERATIONS. 52 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Shared/PasswordHasher.php: -------------------------------------------------------------------------------- 1 | . 44 | * 45 | * @param string $pPassword Password to hash 46 | * @return string Hashed password 47 | */ 48 | public static function hashPassword($pPassword = '') { 49 | $password = 0x0000; 50 | $charPos = 1; // char position 51 | 52 | // split the plain text password in its component characters 53 | $chars = preg_split('//', $pPassword, -1, PREG_SPLIT_NO_EMPTY); 54 | foreach ($chars as $char) { 55 | $value = ord($char) << $charPos++; // shifted ASCII value 56 | $rotated_bits = $value >> 15; // rotated bits beyond bit 15 57 | $value &= 0x7fff; // first 15 bits 58 | $password ^= ($value | $rotated_bits); 59 | } 60 | 61 | $password ^= strlen($pPassword); 62 | $password ^= 0xCE4B; 63 | 64 | return(strtoupper(dechex($password))); 65 | } 66 | } 67 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Shared/Escher/DggContainer/BstoreContainer/BSE/Blip.php: -------------------------------------------------------------------------------- 1 | _data; 59 | } 60 | 61 | /** 62 | * Set the raw image data 63 | * 64 | * @param string 65 | */ 66 | public function setData($data) 67 | { 68 | $this->_data = $data; 69 | } 70 | 71 | /** 72 | * Set parent BSE 73 | * 74 | * @param PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE $parent 75 | */ 76 | public function setParent($parent) 77 | { 78 | $this->_parent = $parent; 79 | } 80 | 81 | /** 82 | * Get parent BSE 83 | * 84 | * @return PHPExcel_Shared_Escher_DggContainer_BstoreContainer_BSE $parent 85 | */ 86 | public function getParent() 87 | { 88 | return $this->_parent; 89 | } 90 | 91 | } 92 | -------------------------------------------------------------------------------- /assets/lib/datepicker/less/datepicker.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Datepicker for Bootstrap 3 | * 4 | * Copyright 2012 Stefan Petre 5 | * Licensed under the Apache License v2.0 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | */ 9 | 10 | .datepicker { 11 | top: 0; 12 | left: 0; 13 | padding: 4px; 14 | margin-top: 1px; 15 | .border-radius(4px); 16 | &:before { 17 | content: ''; 18 | display: inline-block; 19 | border-left: 7px solid transparent; 20 | border-right: 7px solid transparent; 21 | border-bottom: 7px solid #ccc; 22 | border-bottom-color: rgba(0,0,0,.2); 23 | position: absolute; 24 | top: -7px; 25 | left: 6px; 26 | } 27 | &:after { 28 | content: ''; 29 | display: inline-block; 30 | border-left: 6px solid transparent; 31 | border-right: 6px solid transparent; 32 | border-bottom: 6px solid @white; 33 | position: absolute; 34 | top: -6px; 35 | left: 7px; 36 | } 37 | >div { 38 | display: none; 39 | } 40 | table{ 41 | width: 100%; 42 | margin: 0; 43 | } 44 | td, 45 | th{ 46 | text-align: center; 47 | width: 20px; 48 | height: 20px; 49 | .border-radius(4px); 50 | } 51 | td { 52 | &.day:hover { 53 | background: @grayLighter; 54 | cursor: pointer; 55 | } 56 | &.day.disabled { 57 | color: @grayLighter; 58 | } 59 | &.old, 60 | &.new { 61 | color: @grayLight; 62 | } 63 | &.active, 64 | &.active:hover { 65 | .buttonBackground(@btnPrimaryBackground, spin(@btnPrimaryBackground, 20)); 66 | color: #fff; 67 | text-shadow: 0 -1px 0 rgba(0,0,0,.25); 68 | } 69 | span { 70 | display: block; 71 | width: 47px; 72 | height: 54px; 73 | line-height: 54px; 74 | float: left; 75 | margin: 2px; 76 | cursor: pointer; 77 | .border-radius(4px); 78 | &:hover { 79 | background: @grayLighter; 80 | } 81 | &.active { 82 | .buttonBackground(@btnPrimaryBackground, spin(@btnPrimaryBackground, 20)); 83 | color: #fff; 84 | text-shadow: 0 -1px 0 rgba(0,0,0,.25); 85 | } 86 | &.old { 87 | color: @grayLight; 88 | } 89 | } 90 | } 91 | 92 | th { 93 | &.switch { 94 | width: 145px; 95 | } 96 | &.next, 97 | &.prev { 98 | font-size: @baseFontSize * 1.5; 99 | } 100 | } 101 | 102 | thead tr:first-child th { 103 | cursor: pointer; 104 | &:hover{ 105 | background: @grayLighter; 106 | } 107 | } 108 | /*.dow { 109 | border-top: 1px solid #ddd !important; 110 | }*/ 111 | } 112 | .input-append, 113 | .input-prepend { 114 | &.date { 115 | .add-on i { 116 | display: block; 117 | cursor: pointer; 118 | width: 16px; 119 | height: 16px; 120 | } 121 | } 122 | } -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Worksheet/Row.php: -------------------------------------------------------------------------------- 1 | _parent = $parent; 63 | $this->_rowIndex = $rowIndex; 64 | } 65 | 66 | /** 67 | * Destructor 68 | */ 69 | public function __destruct() { 70 | unset($this->_parent); 71 | } 72 | 73 | /** 74 | * Get row index 75 | * 76 | * @return int 77 | */ 78 | public function getRowIndex() { 79 | return $this->_rowIndex; 80 | } 81 | 82 | /** 83 | * Get cell iterator 84 | * 85 | * @return PHPExcel_Worksheet_CellIterator 86 | */ 87 | public function getCellIterator() { 88 | return new PHPExcel_Worksheet_CellIterator($this->_parent, $this->_rowIndex); 89 | } 90 | } 91 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Writer/Excel2007/WriterPart.php: -------------------------------------------------------------------------------- 1 | _parentWriter = $pWriter; 53 | } 54 | 55 | /** 56 | * Get parent IWriter object 57 | * 58 | * @return PHPExcel_Writer_IWriter 59 | * @throws PHPExcel_Writer_Exception 60 | */ 61 | public function getParentWriter() { 62 | if (!is_null($this->_parentWriter)) { 63 | return $this->_parentWriter; 64 | } else { 65 | throw new PHPExcel_Writer_Exception("No parent PHPExcel_Writer_IWriter assigned."); 66 | } 67 | } 68 | 69 | /** 70 | * Set parent IWriter object 71 | * 72 | * @param PHPExcel_Writer_IWriter $pWriter 73 | * @throws PHPExcel_Writer_Exception 74 | */ 75 | public function __construct(PHPExcel_Writer_IWriter $pWriter = null) { 76 | if (!is_null($pWriter)) { 77 | $this->_parentWriter = $pWriter; 78 | } 79 | } 80 | 81 | } 82 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Shared/Escher.php: -------------------------------------------------------------------------------- 1 | _dggContainer; 59 | } 60 | 61 | /** 62 | * Set Drawing Group Container 63 | * 64 | * @param PHPExcel_Shared_Escher_DggContainer $dggContainer 65 | */ 66 | public function setDggContainer($dggContainer) 67 | { 68 | return $this->_dggContainer = $dggContainer; 69 | } 70 | 71 | /** 72 | * Get Drawing Container 73 | * 74 | * @return PHPExcel_Shared_Escher_DgContainer 75 | */ 76 | public function getDgContainer() 77 | { 78 | return $this->_dgContainer; 79 | } 80 | 81 | /** 82 | * Set Drawing Container 83 | * 84 | * @param PHPExcel_Shared_Escher_DgContainer $dgContainer 85 | */ 86 | public function setDgContainer($dgContainer) 87 | { 88 | return $this->_dgContainer = $dgContainer; 89 | } 90 | 91 | } 92 | -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/pdo/pdo_utility.php: -------------------------------------------------------------------------------- 1 | db->db_debug) 37 | { 38 | return $this->db->display_error('db_unsuported_feature'); 39 | } 40 | return FALSE; 41 | } 42 | 43 | // -------------------------------------------------------------------- 44 | 45 | /** 46 | * Optimize table query 47 | * 48 | * Generates a platform-specific query so that a table can be optimized 49 | * 50 | * @access private 51 | * @param string the table name 52 | * @return object 53 | */ 54 | function _optimize_table($table) 55 | { 56 | // Not a supported PDO feature 57 | if ($this->db->db_debug) 58 | { 59 | return $this->db->display_error('db_unsuported_feature'); 60 | } 61 | return FALSE; 62 | } 63 | 64 | // -------------------------------------------------------------------- 65 | 66 | /** 67 | * Repair table query 68 | * 69 | * Generates a platform-specific query so that a table can be repaired 70 | * 71 | * @access private 72 | * @param string the table name 73 | * @return object 74 | */ 75 | function _repair_table($table) 76 | { 77 | // Not a supported PDO feature 78 | if ($this->db->db_debug) 79 | { 80 | return $this->db->display_error('db_unsuported_feature'); 81 | } 82 | return FALSE; 83 | } 84 | 85 | // -------------------------------------------------------------------- 86 | 87 | /** 88 | * PDO Export 89 | * 90 | * @access private 91 | * @param array Preferences 92 | * @return mixed 93 | */ 94 | function _backup($params = array()) 95 | { 96 | // Currently unsupported 97 | return $this->db->display_error('db_unsuported_feature'); 98 | } 99 | 100 | } 101 | 102 | /* End of file pdo_utility.php */ 103 | /* Location: ./system/database/drivers/pdo/pdo_utility.php */ -------------------------------------------------------------------------------- /codeigniter_2.1.4/database/drivers/odbc/odbc_utility.php: -------------------------------------------------------------------------------- 1 | db->db_debug) 37 | { 38 | return $this->db->display_error('db_unsuported_feature'); 39 | } 40 | return FALSE; 41 | } 42 | 43 | // -------------------------------------------------------------------- 44 | 45 | /** 46 | * Optimize table query 47 | * 48 | * Generates a platform-specific query so that a table can be optimized 49 | * 50 | * @access private 51 | * @param string the table name 52 | * @return object 53 | */ 54 | function _optimize_table($table) 55 | { 56 | // Not a supported ODBC feature 57 | if ($this->db->db_debug) 58 | { 59 | return $this->db->display_error('db_unsuported_feature'); 60 | } 61 | return FALSE; 62 | } 63 | 64 | // -------------------------------------------------------------------- 65 | 66 | /** 67 | * Repair table query 68 | * 69 | * Generates a platform-specific query so that a table can be repaired 70 | * 71 | * @access private 72 | * @param string the table name 73 | * @return object 74 | */ 75 | function _repair_table($table) 76 | { 77 | // Not a supported ODBC feature 78 | if ($this->db->db_debug) 79 | { 80 | return $this->db->display_error('db_unsuported_feature'); 81 | } 82 | return FALSE; 83 | } 84 | 85 | // -------------------------------------------------------------------- 86 | 87 | /** 88 | * ODBC Export 89 | * 90 | * @access private 91 | * @param array Preferences 92 | * @return mixed 93 | */ 94 | function _backup($params = array()) 95 | { 96 | // Currently unsupported 97 | return $this->db->display_error('db_unsuported_feature'); 98 | } 99 | 100 | } 101 | 102 | /* End of file odbc_utility.php */ 103 | /* Location: ./system/database/drivers/odbc/odbc_utility.php */ -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Shared/OLE/PPS/File.php: -------------------------------------------------------------------------------- 1 | | 17 | // | Based on OLE::Storage_Lite by Kawai, Takanori | 18 | // +----------------------------------------------------------------------+ 19 | // 20 | // $Id: File.php,v 1.11 2007/02/13 21:00:42 schmidt Exp $ 21 | 22 | 23 | /** 24 | * Class for creating File PPS's for OLE containers 25 | * 26 | * @author Xavier Noguer 27 | * @category PHPExcel 28 | * @package PHPExcel_Shared_OLE 29 | */ 30 | class PHPExcel_Shared_OLE_PPS_File extends PHPExcel_Shared_OLE_PPS 31 | { 32 | /** 33 | * The constructor 34 | * 35 | * @access public 36 | * @param string $name The name of the file (in Unicode) 37 | * @see OLE::Asc2Ucs() 38 | */ 39 | public function __construct($name) 40 | { 41 | parent::__construct( 42 | null, 43 | $name, 44 | PHPExcel_Shared_OLE::OLE_PPS_TYPE_FILE, 45 | null, 46 | null, 47 | null, 48 | null, 49 | null, 50 | '', 51 | array()); 52 | } 53 | 54 | /** 55 | * Initialization method. Has to be called right after OLE_PPS_File(). 56 | * 57 | * @access public 58 | * @return mixed true on success 59 | */ 60 | public function init() 61 | { 62 | return true; 63 | } 64 | 65 | /** 66 | * Append data to PPS 67 | * 68 | * @access public 69 | * @param string $data The data to append 70 | */ 71 | public function append($data) 72 | { 73 | $this->_data .= $data; 74 | } 75 | 76 | /** 77 | * Returns a stream for reading this file using fread() etc. 78 | * @return resource a read-only stream 79 | */ 80 | public function getStream() 81 | { 82 | $this->ole->getStream($this); 83 | } 84 | } 85 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/Reader/Excel5/RC4.php: -------------------------------------------------------------------------------- 1 | i = 0; $this->i < 256; $this->i++) { 52 | $this->s[$this->i] = $this->i; 53 | } 54 | 55 | $this->j = 0; 56 | for ($this->i = 0; $this->i < 256; $this->i++) { 57 | $this->j = ($this->j + $this->s[$this->i] + ord($key[$this->i % $len])) % 256; 58 | $t = $this->s[$this->i]; 59 | $this->s[$this->i] = $this->s[$this->j]; 60 | $this->s[$this->j] = $t; 61 | } 62 | $this->i = $this->j = 0; 63 | } 64 | 65 | /** 66 | * Symmetric decryption/encryption function 67 | * 68 | * @param string $data Data to encrypt/decrypt 69 | * 70 | * @return string 71 | */ 72 | public function RC4($data) 73 | { 74 | $len = strlen($data); 75 | for ($c = 0; $c < $len; $c++) { 76 | $this->i = ($this->i + 1) % 256; 77 | $this->j = ($this->j + $this->s[$this->i]) % 256; 78 | $t = $this->s[$this->i]; 79 | $this->s[$this->i] = $this->s[$this->j]; 80 | $this->s[$this->j] = $t; 81 | 82 | $t = ($this->s[$this->i] + $this->s[$this->j]) % 256; 83 | 84 | $data[$c] = chr(ord($data[$c]) ^ $this->s[$t]); 85 | } 86 | return $data; 87 | } 88 | } 89 | -------------------------------------------------------------------------------- /penjadwalan_genetik/libraries/PHPExcel/CalcEngine/CyclicReferenceStack.php: -------------------------------------------------------------------------------- 1 | _stack); 53 | } 54 | 55 | /** 56 | * Push a new entry onto the stack 57 | * 58 | * @param mixed $value 59 | */ 60 | public function push($value) { 61 | $this->_stack[] = $value; 62 | } // function push() 63 | 64 | /** 65 | * Pop the last entry from the stack 66 | * 67 | * @return mixed 68 | */ 69 | public function pop() { 70 | return array_pop($this->_stack); 71 | } // function pop() 72 | 73 | /** 74 | * Test to see if a specified entry exists on the stack 75 | * 76 | * @param mixed $value The value to test 77 | */ 78 | public function onStack($value) { 79 | return in_array($value, $this->_stack); 80 | } 81 | 82 | /** 83 | * Clear the stack 84 | */ 85 | public function clear() { 86 | $this->_stack = array(); 87 | } // function push() 88 | 89 | /** 90 | * Return an array of all entries on the stack 91 | * 92 | * @return mixed[] 93 | */ 94 | public function showStack() { 95 | return $this->_stack; 96 | } 97 | 98 | } // class PHPExcel_CalcEngine_CyclicReferenceStack 99 | --------------------------------------------------------------------------------