code
stringlengths
1
2.01M
repo_name
stringlengths
3
62
path
stringlengths
1
267
language
stringclasses
231 values
license
stringclasses
13 values
size
int64
1
2.01M
// // ASIInputStream.m // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest // // Created by Ben Copsey on 10/08/2009. // Copyright 2009 All-Seeing Interactive. All rights reserved. // #import "ASIInputStream.h" #import "ASIHTTPRequest.h" // Used to ensure only one request can read data at once stat...
009-20120511-zi
trunk/Zinipad/ASI/ASIInputStream.m
Objective-C
gpl3
3,122
// // ASIAuthenticationDialog.h // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest // // Created by Ben Copsey on 21/08/2009. // Copyright 2009 All-Seeing Interactive. All rights reserved. // #import <Foundation/Foundation.h> #import <UIKit/UIKit.h> @class ASIHTTPRequest; typedef enum _ASIAuthenti...
009-20120511-zi
trunk/Zinipad/ASI/ASIAuthenticationDialog.h
Objective-C
gpl3
1,107
// // ASIDownloadCache.m // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest // // Created by Ben Copsey on 01/05/2010. // Copyright 2010 All-Seeing Interactive. All rights reserved. // #import "ASIDownloadCache.h" #import "ASIHTTPRequest.h" #import <CommonCrypto/CommonHMAC.h> static ASIDownloadCac...
009-20120511-zi
trunk/Zinipad/ASI/ASIDownloadCache.m
Objective-C
gpl3
17,761
// // ASIInputStream.h // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest // // Created by Ben Copsey on 10/08/2009. // Copyright 2009 All-Seeing Interactive. All rights reserved. // #import <Foundation/Foundation.h> @class ASIHTTPRequest; // This is a wrapper for NSInputStream that pretends to b...
009-20120511-zi
trunk/Zinipad/ASI/ASIInputStream.h
Objective-C
gpl3
969
// // ASIDataDecompressor.m // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest // // Created by Ben Copsey on 17/08/2010. // Copyright 2010 All-Seeing Interactive. All rights reserved. // #import "ASIDataDecompressor.h" #import "ASIHTTPRequest.h" #define DATA_CHUNK_SIZE 262144 // Deal with gzipped...
009-20120511-zi
trunk/Zinipad/ASI/ASIDataDecompressor.m
Objective-C
gpl3
6,422
// // ASINetworkQueue.h // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest // // Created by Ben Copsey on 07/11/2008. // Copyright 2008-2009 All-Seeing Interactive. All rights reserved. // #import <Foundation/Foundation.h> #import "ASIHTTPRequestDelegate.h" #import "ASIProgressDelegate.h" @interfa...
009-20120511-zi
trunk/Zinipad/ASI/ASINetworkQueue.h
Objective-C
gpl3
4,621
// // ASIDataCompressor.h // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest // // Created by Ben Copsey on 17/08/2010. // Copyright 2010 All-Seeing Interactive. All rights reserved. // // This is a helper class used by ASIHTTPRequest to handle deflating (compressing) data in memory and on disk // ...
009-20120511-zi
trunk/Zinipad/ASI/ASIDataCompressor.h
Objective-C
gpl3
1,836
// // ASINetworkQueue.m // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest // // Created by Ben Copsey on 07/11/2008. // Copyright 2008-2009 All-Seeing Interactive. All rights reserved. // #import "ASINetworkQueue.h" #import "ASIHTTPRequest.h" // Private stuff @interface ASINetworkQueue () - (voi...
009-20120511-zi
trunk/Zinipad/ASI/ASINetworkQueue.m
Objective-C
gpl3
11,405
// // ASIAuthenticationDialog.m // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest // // Created by Ben Copsey on 21/08/2009. // Copyright 2009 All-Seeing Interactive. All rights reserved. // #import "ASIAuthenticationDialog.h" #import "ASIHTTPRequest.h" #import <QuartzCore/QuartzCore.h> static AS...
009-20120511-zi
trunk/Zinipad/ASI/ASIAuthenticationDialog.m
Objective-C
gpl3
16,202
// // ASIHTTPRequest.h // // Created by Ben Copsey on 04/10/2007. // Copyright 2007-2011 All-Seeing Interactive. All rights reserved. // // A guide to the main features is available at: // http://allseeing-i.com/ASIHTTPRequest // // Portions are based on the ImageClient example from Apple: // See: http://develop...
009-20120511-zi
trunk/Zinipad/ASI/ASIHTTPRequest.h
Objective-C
gpl3
45,045
// // ASIProgressDelegate.h // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest // // Created by Ben Copsey on 13/04/2010. // Copyright 2010 All-Seeing Interactive. All rights reserved. // @class ASIHTTPRequest; @protocol ASIProgressDelegate <NSObject> @optional // These methods are used to updat...
009-20120511-zi
trunk/Zinipad/ASI/ASIProgressDelegate.h
Objective-C
gpl3
1,656
// // ASICacheDelegate.h // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest // // Created by Ben Copsey on 01/05/2010. // Copyright 2010 All-Seeing Interactive. All rights reserved. // #import <Foundation/Foundation.h> @class ASIHTTPRequest; // Cache policies control the behaviour of a cache and h...
009-20120511-zi
trunk/Zinipad/ASI/ASICacheDelegate.h
Objective-C
gpl3
5,151
// // ASIFormDataRequest.m // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest // // Created by Ben Copsey on 07/11/2008. // Copyright 2008-2009 All-Seeing Interactive. All rights reserved. // #import "ASIFormDataRequest.h" // Private stuff @interface ASIFormDataRequest () - (void)buildMultipartFo...
009-20120511-zi
trunk/Zinipad/ASI/ASIFormDataRequest.m
Objective-C
gpl3
11,266
// // ASIHTTPRequest.m // // Created by Ben Copsey on 04/10/2007. // Copyright 2007-2011 All-Seeing Interactive. All rights reserved. // // A guide to the main features is available at: // http://allseeing-i.com/ASIHTTPRequest // // Portions are based on the ImageClient example from Apple: // See: http://develop...
009-20120511-zi
trunk/Zinipad/ASI/ASIHTTPRequest.m
Objective-C
gpl3
184,635
// // ASIDataCompressor.m // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest // // Created by Ben Copsey on 17/08/2010. // Copyright 2010 All-Seeing Interactive. All rights reserved. // #import "ASIDataCompressor.h" #import "ASIHTTPRequest.h" #define DATA_CHUNK_SIZE 262144 // Deal with gzipped dat...
009-20120511-zi
trunk/Zinipad/ASI/ASIDataCompressor.m
Objective-C
gpl3
6,755
// // ASIFormDataRequest.h // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest // // Created by Ben Copsey on 07/11/2008. // Copyright 2008-2009 All-Seeing Interactive. All rights reserved. // #import <Foundation/Foundation.h> #import "ASIHTTPRequest.h" #import "ASIHTTPRequestConfig.h" typedef enum...
009-20120511-zi
trunk/Zinipad/ASI/ASIFormDataRequest.h
Objective-C
gpl3
2,693
// // RootViewController.h // ViewAnimationTest // // Created by 성주 이 on 5/17/12. // Copyright (c) 2012 __MyCompanyName__. All rights reserved. // #import <UIKit/UIKit.h> #import "TreeView.h" #import "LeftTreeView.h" #import "SampleBookViewWallpaper.h" #import "SampleBookViewFlooring.h" @interface ZinMainViewCont...
009-20120511-zi
trunk/Zinipad/ZinMainViewController.h
Objective-C
gpl3
2,235
// // MatchingViewController.h // Zinipad // // Created by ZeLkOvA on 12. 6. 25.. // Copyright (c) 2012년 __MyCompanyName__. All rights reserved. // #import <UIKit/UIKit.h> #import <OpenGLES/EAGLDrawable.h> #import <OpenGLES/EAGL.h> #import <OpenGLES/ES1/gl.h> #import <OpenGLES/ES1/glext.h> #import <QuartzCore/Qua...
009-20120511-zi
trunk/Zinipad/MatchingViewController.h
Objective-C
gpl3
452
<!DOCTYPE html> <html lang="en"> <head> <?php $this->load->view('admin/meta'); ?> </head> <body> <?php $this->load->view('admin/nav'); ?> <div class="container"> <h1>Bootstrap starter template</h1> <p>Use this document as a way to quick start any new project.<br> All you get...
069h-course-management
trunk/ci/search.php
PHP
mit
1,081
<html> <head> <title>403 Forbidden</title> </head> <body> <p>Directory access is forbidden.</p> </body> </html>
069h-course-management
trunk/ci/application/config/index.html
HTML
mit
114
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /* | ------------------------------------------------------------------- | DATABASE CONNECTIVITY SETTINGS | ------------------------------------------------------------------- | This file will contain the settings needed to access your database...
069h-course-management
trunk/ci/application/config/database.php
PHP
mit
3,225
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /* | ------------------------------------------------------------------------- | URI ROUTING | ------------------------------------------------------------------------- | This file lets you re-map URI requests to specific controller functions. ...
069h-course-management
trunk/ci/application/config/routes.php
PHP
mit
1,546
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /* |-------------------------------------------------------------------------- | File and Directory Modes |-------------------------------------------------------------------------- | | These prefs are used when checking and setting modes when...
069h-course-management
trunk/ci/application/config/constants.php
PHP
mit
1,558
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /* |-------------------------------------------------------------------------- | Base Site URL |-------------------------------------------------------------------------- | | URL to your CodeIgniter root. Typically this will be your base URL, ...
069h-course-management
trunk/ci/application/config/config.php
PHP
mit
12,833
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /* | ------------------------------------------------------------------- | AUTO-LOADER | ------------------------------------------------------------------- | This file specifies which systems should be loaded by default. | | In order to keep t...
069h-course-management
trunk/ci/application/config/autoload.php
PHP
mit
3,145
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /* | ------------------------------------------------------------------- | MIME TYPES | ------------------------------------------------------------------- | This file contains an array of mime types. It is used by the | Upload class to help i...
069h-course-management
trunk/ci/application/config/mimes.php
PHP
mit
4,453
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /* | ------------------------------------------------------------------- | Foreign Characters | ------------------------------------------------------------------- | This file contains an array of foreign characters for transliteration | conver...
069h-course-management
trunk/ci/application/config/foreign_chars.php
PHP
mit
1,781
<?php defined('BASEPATH') OR exit('No direct script access allowed'); /* |-------------------------------------------------------------------------- | Enable/Disable Migrations |-------------------------------------------------------------------------- | | Migrations are disabled by default but should be enabled ...
069h-course-management
trunk/ci/application/config/migration.php
PHP
mit
1,322
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /* | ------------------------------------------------------------------- | USER AGENT TYPES | ------------------------------------------------------------------- | This file contains four arrays of user agent data. It is used by the | User Age...
069h-course-management
trunk/ci/application/config/user_agents.php
PHP
mit
5,589
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /* | ------------------------------------------------------------------------- | Hooks | ------------------------------------------------------------------------- | This file lets you define "hooks" to extend CI without hacking the core | files...
069h-course-management
trunk/ci/application/config/hooks.php
PHP
mit
498
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /* | ------------------------------------------------------------------------- | Profiler Sections | ------------------------------------------------------------------------- | This file lets you determine whether or not various sections of Pro...
069h-course-management
trunk/ci/application/config/profiler.php
PHP
mit
564
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); $_doctypes = array( 'xhtml11' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">', 'xhtml1-strict' => '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/...
069h-course-management
trunk/ci/application/config/doctypes.php
PHP
mit
1,138
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /* | ------------------------------------------------------------------- | SMILEYS | ------------------------------------------------------------------- | This file contains an array of smileys for use with the emoticon helper. | Individual ima...
069h-course-management
trunk/ci/application/config/smileys.php
PHP
mit
3,295
<html> <head> <title>Upload Form</title> </head> <body> <h3>Your file was successfully uploaded!</h3> <ul> <?php foreach ($upload_data as $item => $value):?> <li><?php echo $item;?>: <?php echo $value;?></li> <?php endforeach; ?> </ul> <p><?php echo anchor('upload', 'Upload Another File!'); ?></p> <...
069h-course-management
trunk/ci/application/views/upload_success.php
PHP
mit
335
<html> <head> <title>403 Forbidden</title> </head> <body> <p>Directory access is forbidden.</p> </body> </html>
069h-course-management
trunk/ci/application/views/index.html
HTML
mit
114
<html> <head> <title>Upload Form</title> </head> <body> <?php echo $error;?> <?php echo form_open_multipart('upload/do_upload');?> <input type="file" name="userfile" size="20" /> <br /><br /> <input type="submit" value="upload" /> </form> </body> </html>
069h-course-management
trunk/ci/application/views/upload_form.php
PHP
mit
281
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Hello </title> <style type="text/css"> ::selection{ background-color: #E13300; color: white; } ::moz-selection{ background-color: #E13300; color: white; } ::webkit-selection{ background-color: #E13300; color: white; } body { background-co...
069h-course-management
trunk/ci/application/views/hello.php
Hack
mit
1,333
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Welcome </title> <style type="text/css"> ::selection{ background-color: #E13300; color: white; } ::moz-selection{ background-color: #E13300; color: white; } ::webkit-selection{ background-color: #E13300; color: white; } body { background-...
069h-course-management
trunk/ci/application/views/welcome_message.php
Hack
mit
1,904
<!DOCTYPE html> <html lang="en"> <head> <?php $this->load->view('admin/meta');?> </head> <body> <?php $this->load->view('admin/nav');?> <div class="container"> <h1>Add Exam for course </h1> <p>From here you can add exam of Online Examination System.</p> <br/> <br/> ...
069h-course-management
trunk/ci/application/views/admin/add_exam.php
PHP
mit
3,872
<html> <head> <title>Upload Form</title> </head> <body> <h3>Your file was successfully uploaded!</h3> <ul> <?php foreach ($upload_data as $item => $value):?> <li><?php echo $item;?>: <?php echo $value;?></li> <?php endforeach; ?> </ul> <p><?php echo anchor('upload', 'Upload Another File!'); ?></p> <...
069h-course-management
trunk/ci/application/views/admin/upload_success.php
PHP
mit
335
<!DOCTYPE html> <html lang="en"> <head> <?php $this->load->view('admin/meta'); ?> </head> <body> <?php $this->load->view('admin/nav'); ?> <div class="container"> <h1>Bootstrap starter template</h1> <p>Use this document as a way to quick start any new project.<br> All you get is this messa...
069h-course-management
trunk/ci/application/views/admin/base.php
PHP
mit
1,031
<!DOCTYPE html> <html lang="en"> <head> <?php $this->load->view('admin/meta'); ?> </head> <body> <?php $this->load->view('admin/nav'); ?> <div class="container"> <h1>Add New Course</h1> <p>From here you can add courses of Online Examination System.</p> </br></...
069h-course-management
trunk/ci/application/views/admin/create_course.php
PHP
mit
1,355
<!DOCTYPE html> <html lang="en"> <head> <?php $this->load->view('admin/meta'); ?> </head> <body> <?php $this->load->view('admin/nav'); ?> <div class="container"> <h1>Provided Feedback</h1> <p>Manage the feedbacks</p> <br/> <h3 class="pull-left">Recent Feedacks</h3> <table...
069h-course-management
trunk/ci/application/views/admin/feedback.php
PHP
mit
1,397
<!DOCTYPE html> <html lang="en"> <head> <?php $this->load->view('admin/meta'); ?> </head> <body> <?php $this->load->view('admin/nav'); ?> <div class="container"> <h1>Edit User</h1> <p>From here you can Edit user of Online Examination System.</p> <br /> <br /> <form class="form-horizontal" ...
069h-course-management
trunk/ci/application/views/admin/edit_user.php
PHP
mit
4,327
<!DOCTYPE html> <html lang="en"> <head> <?php $this->load->view('admin/meta'); ?> </head> <body> <?php $this->load->view('admin/nav'); ?> <div class="container"> <h1>Manage Exams</h1> <br /> <h3> Recent Exams <span style="font-size: 14px;">(<a href="<?php echo site_url("admin/exams/add"); ?>"> Add E...
069h-course-management
trunk/ci/application/views/admin/exams.php
PHP
mit
1,405
<meta charset="utf-8"> <title><?php echo $page_title ?></title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="<?php echo base_url(); ?>assets/css/bootstrap.css" re...
069h-course-management
trunk/ci/application/views/admin/meta.php
PHP
mit
1,372
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <!DOCTYPE html> <html lang="en"> <head> <?php $this->load->view('admin/meta'); ?> </head> <body> <?php $this->load->view('admin/nav'); ?> <div class="container"> <h1>Manage Courses</h1> <p>From here you can manage Co...
069h-course-management
trunk/ci/application/views/admin/courses.php
PHP
mit
1,608
<!DOCTYPE html> <html lang="en"> <head> <?php $this->load->view('admin/meta');?> </head> <body> <?php $this->load->view('admin/nav'); ?> <div class="container"> <h1>Add New Course</h1> <p>From here you can add courses of Online Examination System.</p> </br> </br> <form class="form-horizontal"...
069h-course-management
trunk/ci/application/views/admin/edit_course.php
PHP
mit
1,721
<!DOCTYPE html> <html lang="en"> <head> <?php $this->load->view('admin/meta'); ?> </head> <body> <?php $this->load->view('admin/nav'); ?> <div class="container"> <h1>Manage Questions</h1> <p>From here you can manage Questions of Online Examination System.</p> <br/> <h3 class="pull-lef...
069h-course-management
trunk/ci/application/views/admin/questions.php
PHP
mit
2,001
<!-- Le javascript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> <script src="<?php echo base_url(); ?>assets/js/jquery.js"></script> <script src="<?php echo base_url(); ?>assets/js/bootstrap-transition.js"></script> <...
069h-course-management
trunk/ci/application/views/admin/footer.php
PHP
mit
1,246
<!DOCTYPE html> <html lang="en"> <head> <?php $this->load->view('admin/meta');?> </head> <body> <?php $this->load->view('admin/nav');?> <div class="container"> <h1>Edit Exam </h1> <p>From here you can Edit exam of Online Examination System.</p> <br/> <br/> ...
069h-course-management
trunk/ci/application/views/admin/edit_exam.php
PHP
mit
3,844
<div class="navbar navbar-inverse navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <a class="bran...
069h-course-management
trunk/ci/application/views/admin/nav.php
PHP
mit
1,663
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title><?php echo $page_title; ?> </title> <style type="text/css"> ::selection{ background-color: #E13300; color: white; } ::moz-selection{ background-color: #E13300; color: white; } ::webkit-selection{ background-color: #E13300; color: white; } b...
069h-course-management
trunk/ci/application/views/admin/login.php
PHP
mit
1,520
<!DOCTYPE html> <html lang="en"> <head> <?php $this->load->view('admin/meta'); ?> </head> <body> <?php $this->load->view('admin/nav'); ?> <div class="container"> </br> <h1>Welcome to Online Examination System</h1> <form id='login' action='login.php' method='post'> <fieldset > <h2>Login...
069h-course-management
trunk/ci/application/views/admin/home.php
PHP
mit
756
<!DOCTYPE html> <html lang="en"> <head> <?php $this->load->view('admin/meta'); ?> </head> <body> <?php $this->load->view('admin/nav'); ?> <div class="container"> <h1>Manage Users</h1> <p>From here you can manage users of Online Examination System.</p> <br/> <h3 class="pull-left">Rece...
069h-course-management
trunk/ci/application/views/admin/users.php
PHP
mit
2,235
<html> <head> <title>403 Forbidden</title> </head> <body> <p>Directory access is forbidden.</p> </body> </html>
069h-course-management
trunk/ci/application/errors/index.html
HTML
mit
114
<!DOCTYPE html> <html lang="en"> <head> <title>Error</title> <style type="text/css"> ::selection{ background-color: #E13300; color: white; } ::moz-selection{ background-color: #E13300; color: white; } ::webkit-selection{ background-color: #E13300; color: white; } body { background-color: #fff; margin: 40px; font: ...
069h-course-management
trunk/ci/application/errors/error_general.php
PHP
mit
1,147
<div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;"> <h4>A PHP Error was encountered</h4> <p>Severity: <?php echo $severity; ?></p> <p>Message: <?php echo $message; ?></p> <p>Filename: <?php echo $filepath; ?></p> <p>Line Number: <?php echo $line; ?></p> </div>
069h-course-management
trunk/ci/application/errors/error_php.php
PHP
mit
288
<!DOCTYPE html> <html lang="en"> <head> <title>Database Error</title> <style type="text/css"> ::selection{ background-color: #E13300; color: white; } ::moz-selection{ background-color: #E13300; color: white; } ::webkit-selection{ background-color: #E13300; color: white; } body { background-color: #fff; margin: 40px...
069h-course-management
trunk/ci/application/errors/error_db.php
PHP
mit
1,156
<!DOCTYPE html> <html lang="en"> <head> <title>404 Page Not Found</title> <style type="text/css"> ::selection{ background-color: #E13300; color: white; } ::moz-selection{ background-color: #E13300; color: white; } ::webkit-selection{ background-color: #E13300; color: white; } body { background-color: #fff; margin: ...
069h-course-management
trunk/ci/application/errors/error_404.php
PHP
mit
1,160
<html> <head> <title>403 Forbidden</title> </head> <body> <p>Directory access is forbidden.</p> </body> </html>
069h-course-management
trunk/ci/application/index.html
HTML
mit
114
<html> <head> <title>403 Forbidden</title> </head> <body> <p>Directory access is forbidden.</p> </body> </html>
069h-course-management
trunk/ci/application/language/english/index.html
HTML
mit
114
<html> <head> <title>403 Forbidden</title> </head> <body> <p>Directory access is forbidden.</p> </body> </html>
069h-course-management
trunk/ci/application/helpers/index.html
HTML
mit
114
<html> <head> <title>403 Forbidden</title> </head> <body> <p>Directory access is forbidden.</p> </body> </html>
069h-course-management
trunk/ci/application/hooks/index.html
HTML
mit
114
<html> <head> <title>403 Forbidden</title> </head> <body> <p>Directory access is forbidden.</p> </body> </html>
069h-course-management
trunk/ci/application/models/index.html
HTML
mit
114
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Exams_m extends CI_Model { function __construct() { // Call the Model constructor parent::__construct(); } function get_exams() { $query = $this->db->get('exam'); ...
069h-course-management
trunk/ci/application/models/Exams_m.php
PHP
mit
774
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Users_m extends CI_Model { function __construct() { // Call the Model constructor parent::__construct(); } function get_users() { $this->db->select('*, user_type.name as ...
069h-course-management
trunk/ci/application/models/users_m.php
PHP
mit
1,796
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Questions_m extends CI_Model{ function __construct(){ parent::__construct(); } function get_questions(){ $query = $this->db->get('questions'); return $query->result_array(); } function delete_ques...
069h-course-management
trunk/ci/application/models/questions_m.php
PHP
mit
480
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Courses_m extends CI_Model { function __construct() { // Call the Model constructor parent::__construct(); } function get_courses() { $query = $this->db->get('courses'); ...
069h-course-management
trunk/ci/application/models/courses_m.php
PHP
mit
965
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Usertype_m extends CI_Model { function __construct() { // Call the Model constructor parent::__construct(); } function get_usertype() { $query = $this->db->get('user_type'); ...
069h-course-management
trunk/ci/application/models/usertype_m.php
PHP
mit
364
<html> <head> <title>403 Forbidden</title> </head> <body> <p>Directory access is forbidden.</p> </body> </html>
069h-course-management
trunk/ci/application/logs/index.html
HTML
mit
114
<html> <head> <title>403 Forbidden</title> </head> <body> <p>Directory access is forbidden.</p> </body> </html>
069h-course-management
trunk/ci/application/libraries/index.html
HTML
mit
114
<html> <head> <title>403 Forbidden</title> </head> <body> <p>Directory access is forbidden.</p> </body> </html>
069h-course-management
trunk/ci/application/core/index.html
HTML
mit
114
<html> <head> <title>403 Forbidden</title> </head> <body> <p>Directory access is forbidden.</p> </body> </html>
069h-course-management
trunk/ci/application/controllers/index.html
HTML
mit
114
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Welcome extends CI_Controller { /** * Index Page for this controller. * * Maps to the following URL * http://example.com/index.php/welcome * - or - * http://example.com/index.php/welcome/index * - or - * Since this...
069h-course-management
trunk/ci/application/controllers/welcome.php
PHP
mit
831
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Exams extends CI_Controller { function __construct() { // Call the Model constructor parent::__construct(); $this->load->helper('url'); $this->load->model('Exams_m'); $this->lo...
069h-course-management
trunk/ci/application/controllers/admin/exams.php
PHP
mit
3,785
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Courses extends CI_Controller { function __construct() { // Call the Model constructor parent::__construct(); $this->load->helper('url'); $this->load->model('Courses_m'); ...
069h-course-management
trunk/ci/application/controllers/admin/courses.php
PHP
mit
2,191
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Usertype extends CI_Controller { function __construct() { // Call the Model constructor parent::__construct(); $this->load->helper('url'); $this->load->model('Users_m'); ...
069h-course-management
trunk/ci/application/controllers/admin/usertype.php
PHP
mit
573
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Questions extends CI_Controller { function __construct() { // Call the Model constructor parent::__construct(); $this->load->helper('url'); $this->load->model('Questions_m'); ...
069h-course-management
trunk/ci/application/controllers/admin/questions.php
PHP
mit
1,067
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Login extends CI_Controller { /** * Index Page for this controller. * * Maps to the following URL * http://example.com/index.php/welcome * - or - * http://example.com/index.php/welcome/index * - or - * Since this c...
069h-course-management
trunk/ci/application/controllers/admin/login.php
PHP
mit
855
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Home extends CI_Controller { /** * Index Page for this controller. * * Maps to the following URL * http://example.com/index.php/welcome * - or - * http://example.com/index.php/welcome/index * - or - * Since this co...
069h-course-management
trunk/ci/application/controllers/admin/home.php
PHP
mit
1,097
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); class Users extends CI_Controller { function __construct() { // Call the Model constructor parent::__construct(); $this->load->helper('url'); $this->load->model('Users_m'); // $this->load->l...
069h-course-management
trunk/ci/application/controllers/admin/users.php
PHP
mit
6,292
<?php class Upload extends CI_Controller { function __construct() { parent::__construct(); $this->load->helper(array('form', 'url')); } function index() { $this->load->view('upload_form', array('error' => ' ' )); } function do_upload() { $config['upload_path'] = './uploads/'; $co...
069h-course-management
trunk/ci/application/controllers/upload.php
PHP
mit
806
<?php /* *--------------------------------------------------------------- * APPLICATION ENVIRONMENT *--------------------------------------------------------------- * * You can load different configurations depending on your * current environment. Setting the environment also influences * things like logging an...
069h-course-management
trunk/ci/index.php
PHP
mit
6,357
<html> <head> <title>403 Forbidden</title> </head> <body> <p>Directory access is forbidden.</p> </body> </html>
069h-course-management
trunk/ci/system/index.html
HTML
mit
114
<html> <head> <title>403 Forbidden</title> </head> <body> <p>Directory access is forbidden.</p> </body> </html>
069h-course-management
trunk/ci/system/language/index.html
HTML
mit
114
<?php $lang['date_year'] = "Year"; $lang['date_years'] = "Years"; $lang['date_month'] = "Month"; $lang['date_months'] = "Months"; $lang['date_week'] = "Week"; $lang['date_weeks'] = "Weeks"; $lang['date_day'] = "Day"; $lang['date_days'] = "Days"; $lang['date_hour'] = "Hour"; $lang['date_hours'] = "Hours"; $lang['date_m...
069h-course-management
trunk/ci/system/language/english/date_lang.php
PHP
mit
3,177
<?php $lang['terabyte_abbr'] = "TB"; $lang['gigabyte_abbr'] = "GB"; $lang['megabyte_abbr'] = "MB"; $lang['kilobyte_abbr'] = "KB"; $lang['bytes'] = "Bytes"; /* End of file number_lang.php */ /* Location: ./system/language/english/number_lang.php */
069h-course-management
trunk/ci/system/language/english/number_lang.php
PHP
mit
249
<html> <head> <title>403 Forbidden</title> </head> <body> <p>Directory access is forbidden.</p> </body> </html>
069h-course-management
trunk/ci/system/language/english/index.html
HTML
mit
114
<?php $lang['email_must_be_array'] = "The email validation method must be passed an array."; $lang['email_invalid_address'] = "Invalid email address: %s"; $lang['email_attachment_missing'] = "Unable to locate the following email attachment: %s"; $lang['email_attachment_unreadable'] = "Unable to open this attachment: %...
069h-course-management
trunk/ci/system/language/english/email_lang.php
PHP
mit
1,707
<?php $lang['required'] = "The %s field is required."; $lang['isset'] = "The %s field must have a value."; $lang['valid_email'] = "The %s field must contain a valid email address."; $lang['valid_emails'] = "The %s field must contain all valid email addresses."; $lang['valid_url'] = "The %s field must contain ...
069h-course-management
trunk/ci/system/language/english/form_validation_lang.php
PHP
mit
1,819
<?php $lang['imglib_source_image_required'] = "You must specify a source image in your preferences."; $lang['imglib_gd_required'] = "The GD image library is required for this feature."; $lang['imglib_gd_required_for_props'] = "Your server must support the GD image library in order to determine the image properties."; ...
069h-course-management
trunk/ci/system/language/english/imglib_lang.php
PHP
mit
2,011
<?php $lang['cal_su'] = "Su"; $lang['cal_mo'] = "Mo"; $lang['cal_tu'] = "Tu"; $lang['cal_we'] = "We"; $lang['cal_th'] = "Th"; $lang['cal_fr'] = "Fr"; $lang['cal_sa'] = "Sa"; $lang['cal_sun'] = "Sun"; $lang['cal_mon'] = "Mon"; $lang['cal_tue'] = "Tue"; $lang['cal_wed'] = "Wed"; $lang['cal_thu'] = "Th...
069h-course-management
trunk/ci/system/language/english/calendar_lang.php
PHP
mit
1,437
<?php $lang['ftp_no_connection'] = "Unable to locate a valid connection ID. Please make sure you are connected before peforming any file routines."; $lang['ftp_unable_to_connect'] = "Unable to connect to your FTP server using the supplied hostname."; $lang['ftp_unable_to_login'] = "Unable to login to your FTP serv...
069h-course-management
trunk/ci/system/language/english/ftp_lang.php
PHP
mit
1,285
<?php $lang['migration_none_found'] = "No migrations were found."; $lang['migration_not_found'] = "This migration could not be found."; $lang['migration_multiple_version'] = "This are multiple migrations with the same version number: %d."; $lang['migration_class_doesnt_exist'] = "The migration class \"%s\" could ...
069h-course-management
trunk/ci/system/language/english/migration_lang.php
PHP
mit
715
<?php $lang['ut_test_name'] = 'Test Name'; $lang['ut_test_datatype'] = 'Test Datatype'; $lang['ut_res_datatype'] = 'Expected Datatype'; $lang['ut_result'] = 'Result'; $lang['ut_undefined'] = 'Undefined Test Name'; $lang['ut_file'] = 'File Name'; $lang['ut_line'] = 'Line Number'; $lang['ut_passed'] = 'Passed'...
069h-course-management
trunk/ci/system/language/english/unit_test_lang.php
PHP
mit
808
<?php $lang['profiler_database'] = 'DATABASE'; $lang['profiler_controller_info'] = 'CLASS/METHOD'; $lang['profiler_benchmarks'] = 'BENCHMARKS'; $lang['profiler_queries'] = 'QUERIES'; $lang['profiler_get_data'] = 'GET DATA'; $lang['profiler_post_data'] = 'POST DATA'; $lang['profiler_uri_string'] = 'URI STRING'; $la...
069h-course-management
trunk/ci/system/language/english/profiler_lang.php
PHP
mit
1,117
<?php $lang['db_invalid_connection_str'] = 'Unable to determine the database settings based on the connection string you submitted.'; $lang['db_unable_to_connect'] = 'Unable to connect to your database server using the provided settings.'; $lang['db_unable_to_select'] = 'Unable to select the specified database: %s'; $...
069h-course-management
trunk/ci/system/language/english/db_lang.php
PHP
mit
2,273
<?php $lang['upload_userfile_not_set'] = "Unable to find a post variable called userfile."; $lang['upload_file_exceeds_limit'] = "The uploaded file exceeds the maximum allowed size in your PHP configuration file."; $lang['upload_file_exceeds_form_limit'] = "The uploaded file exceeds the maximum size allowed by the sub...
069h-course-management
trunk/ci/system/language/english/upload_lang.php
PHP
mit
1,619
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); /** * CodeIgniter * * An open source application development framework for PHP 5.1.6 or newer * * @package CodeIgniter * @author ExpressionEngine Dev Team * @copyright Copyright (c) 2008 - 2011, EllisLab, Inc. * @license http://codei...
069h-course-management
trunk/ci/system/helpers/number_helper.php
PHP
mit
1,859