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
<?php if(isset($_POST['submit'])) { include "connection.php"; //get user input from GET / POST method /* echo "<pre>"; print_r($_POST); var_export($_POST); echo "</pre>"; */ $data= $_POST; $submit = $data['submit']; $action = $_GET['action']; $id = $_GET['examid']; $course_id_for_url = $_GET['course_id']; //echo $c...
069h-course-management
trunk/project/design/back/actions/exam_add.php
PHP
mit
2,585
<?php include "connection.php"; //get user input from GET / POST method /* echo "<pre>"; print_r($_POST); var_export($_POST); echo "</pre>"; */ $data= $_POST; $action = $_GET['action']; $submit = $data['submit']; $username = $data['username']; $password = $data['password']; $email = $data['email']; $user_type = $dat...
069h-course-management
trunk/project/design/back/actions/users - Copy.php
PHP
mit
1,826
<?php if(isset($_POST['submit'])) { include "connection.php"; //get user input from GET / POST method /* echo "<pre>"; print_r($_POST); var_export($_POST); echo "</pre>"; */ $data= $_POST; $action = $_GET['action']; $submit = $data['submit']; $username = $data['username']; $password = $data['password']; $email = ...
069h-course-management
trunk/project/design/back/actions/users.php
PHP
mit
4,711
<?php if(isset($_POST['submit'])) { include "connection.php"; //get user input from GET / POST method $action = $_GET['action']; $data= $_POST; $submit = $data['submit']; /*$coursename = $data['coursename']; $description = $data['description'];*/ //server side validation of input data if(trim($_POST['coursename'])...
069h-course-management
trunk/project/design/back/actions/courses_add.php
PHP
mit
1,160
<?php $con = mysql_connect('localhost', 'root', ''); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("onlineexam", $con); ?>
069h-course-management
trunk/project/design/back/actions/connection.php
PHP
mit
174
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="asse...
069h-course-management
trunk/project/design/back/question_add.php
PHP
mit
4,443
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boo...
069h-course-management
trunk/project/design/back/course.php
PHP
mit
4,060
<?php session_start(); $email = addslashes($_POST['email']); $password = addslashes($_POST['password']; //$email = $_POST['email']; //$password = $_POST['password']; if ($email !="" && $password != "") { $password = md5($password); include "actions/connection.php"; $sql = "select * from `users` where `email` ...
069h-course-management
trunk/project/design/back/index.php
PHP
mit
4,424
<?php include "actions/users.php"; ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!...
069h-course-management
trunk/project/design/back/users_edit.php
PHP
mit
8,143
<?php include "actions/exam_add.php"; ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> ...
069h-course-management
trunk/project/design/back/exam_add.php
PHP
mit
6,555
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boo...
069h-course-management
trunk/project/design/back/question.php
PHP
mit
5,027
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boo...
069h-course-management
trunk/project/design/back/exams.php
PHP
mit
4,889
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="asse...
069h-course-management
trunk/project/design/back/questype_add.php
PHP
mit
3,180
<?php include "actions/courses_add.php"; ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content="...
069h-course-management
trunk/project/design/back/course_add.php
PHP
mit
4,018
<?php include "actions/courses_add.php"; $id = $_GET['id']; if (!$id) header("location: course.php"); if ( $id != "" && ! $_POST['submit'] ){ include "actions/connection.php"; $sql = "select * from courses where `id`= $id"; $result = mysql_query($sql); ...
069h-course-management
trunk/project/design/back/course_edit.php
PHP
mit
4,484
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boo...
069h-course-management
trunk/project/design/back/users_add_js_validation.php
PHP
mit
7,019
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="asse...
069h-course-management
trunk/project/design/back/exam_edit.php
PHP
mit
6,304
<!-- Le javascript ================================================== --> <!-- Placed at the end of the document so the pages load faster --> <script src="assets/js/jquery.js"></script> <script src="assets/js/bootstrap-transition.js"></script> <script src="assets/js/bootstrap-alert.js"></...
069h-course-management
trunk/project/design/back/includes/footer.php
Hack
mit
927
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boo...
069h-course-management
trunk/project/design/back/usertype.php
Hack
mit
4,393
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boo...
069h-course-management
trunk/project/design/back/questions.php
PHP
mit
4,884
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boo...
069h-course-management
trunk/project/design/back/bkp/exam.php
Hack
mit
5,569
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boo...
069h-course-management
trunk/project/design/back/bkp/question_type.php
Hack
mit
5,331
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boo...
069h-course-management
trunk/project/design/back/bkp/users_add.php
Hack
mit
5,884
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boo...
069h-course-management
trunk/project/design/back/bkp/course.php
Hack
mit
4,456
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boo...
069h-course-management
trunk/project/design/back/bkp/index.php
Hack
mit
6,813
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="asse...
069h-course-management
trunk/project/design/back/bkp/exam_add.php
Hack
mit
5,104
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boo...
069h-course-management
trunk/project/design/back/bkp/question.php
Hack
mit
5,288
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="asse...
069h-course-management
trunk/project/design/back/bkp/course_add.php
Hack
mit
4,258
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boo...
069h-course-management
trunk/project/design/back/bkp/usertype.php
Hack
mit
5,424
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boo...
069h-course-management
trunk/project/design/back/bkp/users.php
Hack
mit
5,407
<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 clas...
069h-course-management
trunk/project/design/back/nav.php
PHP
mit
1,468
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="asse...
069h-course-management
trunk/project/design/back/question_edit.php
PHP
mit
5,055
<?php session_start(); if (!$_SESSION['login']) header("location: index.php"); ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> ...
069h-course-management
trunk/project/design/back/users.php
PHP
mit
5,003
// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT // IT'S ALL JUST JUNK FOR OUR DOCS! // ++++++++++++++++++++++++++++++++++++++++++ !function ($) { $(function(){ var $window = $(window) // Disable certain links in docs $('section [href^=#]').click(function (e) { e.preventDefault() }) // sid...
069h-course-management
trunk/project/design/back/assets/js/application.js
JavaScript
mit
3,954
/* Holder - 1.6 - client side image placeholders (c) 2012 Ivan Malopinsky / http://imsky.co Provided under the Apache 2.0 License: http://www.apache.org/licenses/LICENSE-2.0 Commercial use requires attribution. */ var Holder = Holder || {}; (function (app, win) { var preempted = false, fallback = false, canvas = d...
069h-course-management
trunk/project/design/back/assets/js/holder/holder.js
JavaScript
mit
10,517
/* jqBootstrapValidation * A plugin for automating validation on Twitter Bootstrap formatted forms. * * v1.3.6 * * License: MIT <http://opensource.org/licenses/mit-license.php> - see LICENSE file * * http://ReactiveRaven.github.com/jqBootstrapValidation/ */ (function( $ ){ var createdElements = []; var def...
069h-course-management
trunk/project/design/back/assets/js/jqBootstrapValidation.js
JavaScript
mit
36,180
.com { color: #93a1a1; } .lit { color: #195f91; } .pun, .opn, .clo { color: #93a1a1; } .fun { color: #dc322f; } .str, .atv { color: #D14; } .kwd, .prettyprint .tag { color: #1e347b; } .typ, .atn, .dec, .var { color: teal; } .pln { color: #48484c; } .prettyprint { padding: 8px; background-color: #f7f7f9; border: ...
069h-course-management
trunk/project/design/back/assets/js/google-code-prettify/prettify.css
CSS
mit
817
/* Add additional stylesheets below -------------------------------------------------- */ /* Bootstrap's documentation styles Special styles for presenting Bootstrap's documentation and examples */ /* Body and structure -------------------------------------------------- */ body { position: relative; padding...
069h-course-management
trunk/project/design/back/assets/css/docs.css
CSS
mit
22,431
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Examination System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boo...
069h-course-management
trunk/project/design/back/_index.php
PHP
mit
6,865
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Online Exam System</title> <!-- Le styles --> <link href="assets/css/bootstrap.css" rel="stylesheet"> <link href="assets/css/bootstrap-responsive.css" rel="stylesheet"> <link href="assets/css/docs.css" rel="stylesheet"> ...
069h-course-management
trunk/project/design/back_end/add_exam.php
PHP
mit
450
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Base · Bootstrap</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/bootstrap.cs...
069h-course-management
trunk/project/design/back_end/answers.php
PHP
mit
93,411
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Online Exam System</title> <!-- Le styles --> <link href="assets/css/bootstrap.css" rel="stylesheet"> <link href="assets/css/bootstrap-responsive.css" rel="stylesheet"> <link href="assets/css/docs.css" rel="stylesheet"> ...
069h-course-management
trunk/project/design/back_end/add_questiontype.php
Hack
mit
421
<!-- Subhead ================================================== --> <header class="jumbotron subhead" id="overview"> <div class="container"> <h1>{{_i}}Scaffolding{{/i}}</h1> <p class="lead">{{_i}}Bootstrap is built on responsive 12-column grids, layouts, and components.{{/i}}</p> </div> </header> <div cl...
069h-course-management
trunk/project/design/back_end/templates/pages/scaffolding.mustache
Mustache
mit
21,739
<!-- Masthead ================================================== --> <header class="jumbotron subhead" id="overview"> <div class="container"> <h1>{{_i}}Customize and download{{/i}}</h1> <p class="lead">{{_i}}<a href="https://github.com/twitter/bootstrap/zipball/master">Download Bootstrap</a> or customize vari...
069h-course-management
trunk/project/design/back_end/templates/pages/customize.mustache
Mustache
mit
23,053
<!-- Subhead ================================================== --> <header class="jumbotron subhead" id="overview"> <div class="container"> <h1>{{_i}}Components{{/i}}</h1> <p class="lead">{{_i}}Dozens of reusable components built to provide navigation, alerts, popovers, and more.{{/i}}</p> </div> </header>...
069h-course-management
trunk/project/design/back_end/templates/pages/components.mustache
Mustache
mit
108,943
<div class="jumbotron masthead"> <div class="container"> <h1>{{_i}}Bootstrap{{/i}}</h1> <p>{{_i}}Sleek, intuitive, and powerful front-end framework for faster and easier web development.{{/i}}</p> <p> <a href="assets/bootstrap.zip" class="btn btn-primary btn-large" {{#production}}onclick="_gaq.push(...
069h-course-management
trunk/project/design/back_end/templates/pages/index.mustache
Mustache
mit
5,269
<!-- Subhead ================================================== --> <header class="jumbotron subhead" id="overview"> <div class="container"> <h1>{{_i}}Getting started{{/i}}</h1> <p class="lead">{{_i}}Overview of the project, its contents, and how to get started with a simple template.{{/i}}</p> </div> </hea...
069h-course-management
trunk/project/design/back_end/templates/pages/getting-started.mustache
Mustache
mit
13,051
<!-- Subhead ================================================== --> <header class="jumbotron subhead" id="overview"> <div class="container"> <h1>{{_i}}Extending Bootstrap{{/i}}</h1> <p class="lead">{{_i}}Extend Bootstrap to take advantage of included styles and components, as well as LESS variables and mixins...
069h-course-management
trunk/project/design/back_end/templates/pages/extend.mustache
Mustache
mit
8,806
<!-- Subhead ================================================== --> <header class="jumbotron subhead" id="overview"> <div class="container"> <h1>{{_i}}Base CSS{{/i}}</h1> <p class="lead">{{_i}}Fundamental HTML elements styled and enhanced with extensible classes.{{/i}}</p> </div> </header> <div class="c...
069h-course-management
trunk/project/design/back_end/templates/pages/base-css.mustache
Mustache
mit
93,692
<!-- Subhead ================================================== --> <header class="jumbotron subhead"> <div class="container"> <h1>{{_i}}JavaScript{{/i}}</h1> <p class="lead">{{_i}}Bring Bootstrap's components to life&mdash;now with 13 custom jQuery plugins.{{/i}} </div> </header> <div class="container">...
069h-course-management
trunk/project/design/back_end/templates/pages/javascript.mustache
Mustache
mit
90,042
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>{{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="assets/css/bootstrap.css" rel=...
069h-course-management
trunk/project/design/back_end/templates/layout.mustache
Mustache
mit
6,557
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Online Exam System</title> <!-- Le styles --> <link href="assets/css/bootstrap.css" rel="stylesheet"> <link href="assets/css/bootstrap-responsive.css" rel="stylesheet"> <link href="assets/css/docs.css" rel="stylesheet"> ...
069h-course-management
trunk/project/design/back_end/usertypes.php
PHP
mit
915
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Online Exam System</title> <!-- Le styles --> <link href="assets/css/bootstrap.css" rel="stylesheet"> <link href="assets/css/bootstrap-responsive.css" rel="stylesheet"> <link href="assets/css/docs.css" rel="stylesheet"> ...
069h-course-management
trunk/project/design/back_end/exam.php
Hack
mit
421
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Online Exam System</title> <!-- Le styles --> <link href="assets/css/bootstrap.css" rel="stylesheet"> <link href="assets/css/bootstrap-responsive.css" rel="stylesheet"> <link href="assets/css/docs.css" rel="stylesheet"> ...
069h-course-management
trunk/project/design/back_end/questiontype.php
Hack
mit
421
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Courses</title> <!-- Le styles --> <link href="assets/css/bootstrap.css" rel="stylesheet"> <link href="assets/css/bootstrap-responsive.css" rel="stylesheet"> <link href="assets/css/docs.css" rel="stylesheet"> ...
069h-course-management
trunk/project/design/back_end/add_questions.php
PHP
mit
2,928
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>ADD User</title> <!-- Le styles --> <link href="assets/css/bootstrap.css" rel="stylesheet"> <link href="assets/css/bootstrap-responsive.css" rel="stylesheet"> <link href="assets/css/docs.css" rel="stylesheet"> ...
069h-course-management
trunk/project/design/back_end/add_user.php
PHP
mit
3,684
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Exam System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/...
069h-course-management
trunk/project/design/back_end/index.php
PHP
mit
5,102
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Online Exam System</title> <!-- Le styles --> <link href="assets/css/bootstrap.css" rel="stylesheet"> <link href="assets/css/bootstrap-responsive.css" rel="stylesheet"> <link href="assets/css/docs.css" rel="stylesheet"> ...
069h-course-management
trunk/project/design/back_end/exams.php
Hack
mit
421
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Online Exam System</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/...
069h-course-management
trunk/project/design/back_end/courses.php
PHP
mit
4,254
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Online Exam System</title> <!-- Le styles --> <link href="assets/css/bootstrap.css" rel="stylesheet"> <link href="assets/css/bootstrap-responsive.css" rel="stylesheet"> <link href="assets/css/docs.css" rel="stylesheet"> ...
069h-course-management
trunk/project/design/back_end/questions.php
PHP
mit
962
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Courses</title> <!-- Le styles --> <link href="assets/css/bootstrap.css" rel="stylesheet"> <link href="assets/css/bootstrap-responsive.css" rel="stylesheet"> <link href="assets/css/docs.css" rel="stylesheet"> ...
069h-course-management
trunk/project/design/back_end/add_courses.php
PHP
mit
2,727
<div class="navbar navbar-inverse navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <div id="menu"> <ul> <a class="brand" href="./index.html">Education</a> <div class="nav-collapse collap...
069h-course-management
trunk/project/design/back_end/nav.php
Hack
mit
1,224
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Online Exam System</title> <!-- Le styles --> <link href="assets/css/bootstrap.css" rel="stylesheet"> <link href="assets/css/bootstrap-responsive.css" rel="stylesheet"> <link href="assets/css/docs.css" rel="stylesheet"> ...
069h-course-management
trunk/project/design/back_end/add_usertypes.php
PHP
mit
962
// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT // IT'S ALL JUST JUNK FOR OUR DOCS! // ++++++++++++++++++++++++++++++++++++++++++ !function ($) { $(function(){ var $window = $(window) // Disable certain links in docs $('section [href^=#]').click(function (e) { e.preventDefault() }) // sid...
069h-course-management
trunk/project/design/back_end/assets/js/application.js
JavaScript
mit
3,954
/* Holder - 1.6 - client side image placeholders (c) 2012 Ivan Malopinsky / http://imsky.co Provided under the Apache 2.0 License: http://www.apache.org/licenses/LICENSE-2.0 Commercial use requires attribution. */ var Holder = Holder || {}; (function (app, win) { var preempted = false, fallback = false, canvas = d...
069h-course-management
trunk/project/design/back_end/assets/js/holder/holder.js
JavaScript
mit
10,517
.com { color: #93a1a1; } .lit { color: #195f91; } .pun, .opn, .clo { color: #93a1a1; } .fun { color: #dc322f; } .str, .atv { color: #D14; } .kwd, .prettyprint .tag { color: #1e347b; } .typ, .atn, .dec, .var { color: teal; } .pln { color: #48484c; } .prettyprint { padding: 8px; background-color: #f7f7f9; border: ...
069h-course-management
trunk/project/design/back_end/assets/js/google-code-prettify/prettify.css
CSS
mit
817
/** * jQuery lightBox plugin * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/) * and adapted to me for use like a plugin from jQuery. * @name jquery-lightbox-0.5.css * @author Leandro Vieira Pinho - http://leandrovieira.com * @vers...
069h-course-management
trunk/project/design/back_end/assets/css/jquery.lightbox-0.5.css
CSS
mit
2,366
/* Add additional stylesheets below -------------------------------------------------- */ /* Bootstrap's documentation styles Special styles for presenting Bootstrap's documentation and examples */ /* Body and structure -------------------------------------------------- */ body { position: relative; padding...
069h-course-management
trunk/project/design/back_end/assets/css/docs.css
CSS
mit
22,431
<?php echo "hello world"; ?>
069h-course-management
trunk/sajana.php
PHP
mit
31
<?php echo "hello"; ?>
069h-course-management
trunk/kamal.php
PHP
mit
24
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Bootstrap, from Twitter</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="asse...
069h-course-management
trunk/sajana/function.php
PHP
mit
5,725
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Bootstrap, from Twitter</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boot...
069h-course-management
trunk/sajana/base.php
PHP
mit
4,548
<?php /* include "dbconnect.php"; echo "<pre>"; print_r($_POST); echo "</pre>";*/ ?> <table border="2"> <thead> <tr> <th>Campus</th> <th>University</th> <th>Subject</th> </tr> </thead> <tbody> <?php $count=0; $con = mysql_connect('localhost', 'root', ''); if (!$con) { die('Could not co...
069h-course-management
trunk/sajana/campus_process.php
PHP
mit
1,070
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Bootstrap, from Twitter</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boot...
069h-course-management
trunk/sajana/form (2).php
PHP
mit
4,548
<!DOCTYPE html> <html> <body> <form action = "campus_process.php" method = "POST"> <table> <tr> <td> <strong>Campus Name</strong><br/> <strong>Campus Zone</strong><br/> <strong>Campus District</strong><br/> <strong>Campus City</strong><br/> <strong>Campus Tole</strong><br/> <strong>Campus Latitude</...
069h-course-management
trunk/sajana/form_campus.php
PHP
mit
2,042
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Bootstrap, from Twitter</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boot...
069h-course-management
trunk/sajana/assoc.php
PHP
mit
5,721
<?php $i=1; $j=1; $sum=0; $mul = 1; $evensum = 0; $sum100 = 0; while($i<=10){ $sum = $sum + $i; $mul = $mul * $i; $i++; } echo "sum=".$sum . " mul =" .$mul; while($j<=100){ if($j % 2 == 0){ echo $j; if($j!=100) echo ","; $evensum = $evensum + $j; } $j++; } echo "<br>". $evensum; for($k=1...
069h-course-management
trunk/sajana/loop.php
PHP
mit
607
<?php } ?>
069h-course-management
trunk/sajana/dbconnect.php
PHP
mit
31
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Bootstrap, from Twitter</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="asse...
069h-course-management
trunk/sajana/even_odd.php
PHP
mit
3,616
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Bootstrap, from Twitter</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boot...
069h-course-management
trunk/sajana/form.php
PHP
mit
5,485
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>Bootstrap, from Twitter</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="description" content=""> <meta name="author" content=""> <!-- Le styles --> <link href="assets/css/boot...
069h-course-management
trunk/sajana/univ.php
PHP
mit
5,142
<?php /* include "dbconnect.php"; echo "<pre>"; print_r($_POST); echo "</pre>";*/ ?> <table border="2"> <thead> <tr> <th>Campus</th> <th>University</th> <th>Subject</th> </tr> </thead> <tbody> <?php $count=0; $con = mysql_connect('localhost', 'root', ''); if (!$con) { die('Could not co...
069h-course-management
trunk/sajana/u_process.php
PHP
mit
4,498
// NOTICE!! DO NOT USE ANY OF THIS JAVASCRIPT // IT'S ALL JUST JUNK FOR OUR DOCS! // ++++++++++++++++++++++++++++++++++++++++++ !function ($) { $(function(){ var $window = $(window) // Disable certain links in docs $('section [href^=#]').click(function (e) { e.preventDefault() }) // sid...
069h-course-management
trunk/sajana/assets/js/application.js
JavaScript
mit
3,954
/* Holder - 1.6 - client side image placeholders (c) 2012 Ivan Malopinsky / http://imsky.co Provided under the Apache 2.0 License: http://www.apache.org/licenses/LICENSE-2.0 Commercial use requires attribution. */ var Holder = Holder || {}; (function (app, win) { var preempted = false, fallback = false, canvas = d...
069h-course-management
trunk/sajana/assets/js/holder/holder.js
JavaScript
mit
10,517
.com { color: #93a1a1; } .lit { color: #195f91; } .pun, .opn, .clo { color: #93a1a1; } .fun { color: #dc322f; } .str, .atv { color: #D14; } .kwd, .prettyprint .tag { color: #1e347b; } .typ, .atn, .dec, .var { color: teal; } .pln { color: #48484c; } .prettyprint { padding: 8px; background-color: #f7f7f9; border: ...
069h-course-management
trunk/sajana/assets/js/google-code-prettify/prettify.css
CSS
mit
817
/* Add additional stylesheets below -------------------------------------------------- */ /* Bootstrap's documentation styles Special styles for presenting Bootstrap's documentation and examples */ /* Body and structure -------------------------------------------------- */ body { position: relative; padding...
069h-course-management
trunk/sajana/assets/css/docs.css
CSS
mit
22,431
<html> <?php echo "hello world!!!"; ?> </html>
069h-course-management
trunk/eraz.php
PHP
mit
64
body { font-family:"Helvetica Nueue", Helvetica, Arial; background:url('bgrep.gif'); } a { color: #002B54; cursor: pointer; font-family: Helvetica,Arial,sans-serif; font-size: 14px; font-weight: bold; margin-bottom: 20px; } .clear { clear: both; display: block; } body { background-...
111p
demo.css
CSS
asf20
1,238
/* * JQuery Facebook Traffic Driver * Version: 1.0 * * Author: Nick Rivers * * * Changelog: * Version: 1.0 * */ #facebooktrafficdrivermask { position: absolute; top: 0; left: 0; width: 100%; z-index: 1100; background-color:#000; } #facebooktrafficdriver { background: url(i...
111p
facebooktrafficdriver.css
CSS
asf20
1,886
package com.hlidskialf.android.hardware; import android.content.Context; import android.hardware.Sensor; import android.hardware.SensorEvent; import android.hardware.SensorEventListener; import android.hardware.SensorManager; public class ShakeListener implements SensorEventListener { private static final int FORCE...
061304011116lyj-1
src/com/hlidskialf/android/hardware/ShakeListener.java
Java
asf20
2,826
/*** Copyright (c) 2008-2009 CommonsWare, LLC Portions (c) 2009 Google, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by ap...
061304011116lyj-1
src/com/commonsware/cwac/sacklist/SackOfViewsAdapter.java
Java
asf20
4,593
/*** Copyright (c) 2008-2009 CommonsWare, LLC Portions (c) 2009 Google, Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by ap...
061304011116lyj-1
src/com/commonsware/cwac/merge/MergeAdapter.java
Java
asf20
8,420
package com.ch_linghu.fanfoudroid; import java.text.MessageFormat; import android.app.AlertDialog; import android.app.AlertDialog.Builder; import android.app.Dialog; import android.app.ProgressDialog; import android.content.ContentValues; import android.content.DialogInterface; import android.content.Intent; import a...
061304011116lyj-1
src/com/ch_linghu/fanfoudroid/ProfileActivity.java
Java
asf20
24,896
package com.ch_linghu.fanfoudroid; import java.util.ArrayList; import java.util.HashSet; import java.util.List; import android.app.SearchManager; import android.content.Intent; import android.os.Bundle; import android.text.TextUtils; import android.util.Log; import android.view.Menu; import android.widget...
061304011116lyj-1
src/com/ch_linghu/fanfoudroid/SearchResultActivity.java
Java
asf20
7,831
package com.ch_linghu.fanfoudroid.service; public interface IService { void startService(); void stopService(); }
061304011116lyj-1
src/com/ch_linghu/fanfoudroid/service/IService.java
Java
asf20
123
/* * Copyright (C) 2009 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agree...
061304011116lyj-1
src/com/ch_linghu/fanfoudroid/service/BootReceiver.java
Java
asf20
1,245
/* * Copyright (C) 2009 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law...
061304011116lyj-1
src/com/ch_linghu/fanfoudroid/service/TwitterService.java
Java
asf20
19,229
package com.ch_linghu.fanfoudroid.service; import java.text.DateFormat; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; import java.util.GregorianCalendar; import java.util.List; import android.app.AlarmManager; import android.app.PendingIntent; import android.app....
061304011116lyj-1
src/com/ch_linghu/fanfoudroid/service/WidgetService.java
Java
asf20
4,485
package com.ch_linghu.fanfoudroid.service; import java.util.List; import android.content.Context; import android.location.Criteria; import android.location.Location; import android.location.LocationListener; import android.location.LocationManager; import android.os.Bundle; import android.util.Log; /** * Location S...
061304011116lyj-1
src/com/ch_linghu/fanfoudroid/service/LocationService.java
Java
asf20
3,675
package com.ch_linghu.fanfoudroid; import com.ch_linghu.fanfoudroid.app.Preferences; import android.app.Activity; import android.content.ComponentName; import android.content.pm.ActivityInfo; import android.content.pm.PackageInfo; import android.content.pm.PackageManager.NameNotFoundException; import android.os.Bundl...
061304011116lyj-1
src/com/ch_linghu/fanfoudroid/AboutActivity.java
Java
asf20
1,534