Changeset - 1f3a13e39424
[Not reviewed]
Merge default
1 6 0
Nathan Brink (binki) - 15 years ago 2010-10-01 22:09:01
ohnobinki@ohnopublishing.net
merge
7 files changed with 0 insertions and 13 deletions:
0 comments (0 inline, 0 general)
class.class.php
Show inline comments
 
@@ -3,13 +3,12 @@
 
//**************************************************
 
// class.class.php	Author: Nathan Gelderloos
 
//
 
// Represents a class.
 
//**************************************************
 

	
 
include_once 'errors.php';
 
include_once 'class.section.php';
 

	
 
class Classes
 
{
 
  private $name;		// String
 
  private $sections;	// Array of sections
class.schedule.php
Show inline comments
 
@@ -5,13 +5,12 @@
 
//
 
// Represents a schedule of a week. Stores the
 
// classes that are part of that week and calculates
 
// all the possible permutations.
 
//**************************************************
 

	
 
include_once 'errors.php';
 
include_once 'class.class.php';
 
include_once 'class.section.php';
 
include_once 'inc/class.page.php';
 

	
 
class Schedule
 
{
class.section.php
Show inline comments
 
<?php
 

	
 
include_once 'errors.php';
 

	
 
//--------------------------------------------------
 
// class.section.php  Author:Nathan Gelderloos
 
//
 
// Represents a section of a class.
 
//--------------------------------------------------
 
   
errors.php
Show inline comments
 
deleted file
input.php
Show inline comments
 
<?php 
 

	
 
include_once 'errors.php';
 
include_once 'class.schedule.php';
 
include_once 'class.class.php';
 
include_once 'class.section.php';
 
include_once 'inc/class.page.php';
 

	
 
$scripts = array('jQuery', 'jQueryUI', 'jValidate','schedInput');
process.php
Show inline comments
 
<?php
 

	
 
session_start();
 

	
 
include_once 'errors.php';
 
include_once 'class.schedule.php';
 
include_once 'class.class.php';
 
include_once 'class.section.php';
 

	
 
function sortInputs($post){
 
//	return array_filter($post['postData']); // Remove any null or unset items. Disabled as it kills day stuff, @FIXME and add day unset setting here (==0).
schedulecreator.php
Show inline comments
 
<?php
 

	
 
include_once 'errors.php';
 
include_once 'class.schedule.php';
 
include_once 'class.class.php';
 
include_once 'class.section.php';
 

	
 
//**************************************************
 
// ScheduleCreator.java	Author: Nathan Gelderloos
0 comments (0 inline, 0 general)