Browse Source

going thru trunk and cleaning up the file headers so API docs can be created properly

git-svn-id: https://svn.cakephp.org/repo/trunk/cake@307 3807eeeb-6ff5-0310-8944-8be069107fe0
phpnut 21 years ago
parent
commit
e1f48bf379
3 changed files with 51 additions and 2 deletions
  1. 1 1
      index.php
  2. 42 1
      public/css.php
  3. 8 0
      public/index.php

+ 1 - 1
index.php

@@ -1,4 +1,4 @@
-<?PHP
+<?php
 //////////////////////////////////////////////////////////////////////////
 // + $Id$
 // +------------------------------------------------------------------+ //

+ 42 - 1
public/css.php

@@ -1,10 +1,44 @@
-<?PHP
+<?php
+//////////////////////////////////////////////////////////////////////////
+// + $Id$
+// +------------------------------------------------------------------+ //
+// +------------------------------------------------------------------+ //
+// + Licensed                                                         + //
+// +                                                                  + //
+// +                                                                  + //
+//////////////////////////////////////////////////////////////////////////
 
+/**
+ * Purpose:
+ * 
+ * @filesource 
+ * @author Cake Authors/Developers
+ * @copyright Copyright (c) 2005, Cake Authors/Developers
+ * @link https://developers.nextco.com/cake/wiki/Authors Authors/Developers
+ * @package cake
+ * @subpackage cake.public
+ * @since Cake v 0.2.9
+ * @version $Revision$
+ * @modifiedby $LastChangedBy$
+ * @lastmodified $Date$
+ * @license http://www.opensource.org/licenses/mit-license.php The MIT License
+ */
+
+/**
+ * Enter description here...
+ */
 require(ROOT.'config'.DS.'paths.php');
 require(LIBS.'basics.php');
 require(LIBS.'file.php');
 require(LIBS.'legacy.php');
 
+/**
+ * Enter description here...
+ *
+ * @param unknown_type $path
+ * @param unknown_type $name
+ * @return unknown
+ */
 function make_clean_css ($path, $name)
 {
 	require_once(VENDORS.'csspp'.DS.'csspp.php');
@@ -19,6 +53,13 @@ function make_clean_css ($path, $name)
 	return $output;
 }
 
+/**
+	 * Enter description here...
+	 *
+	 * @param unknown_type $path
+	 * @param unknown_type $content
+	 * @return unknown
+	 */
 function write_css_cache ($path, $content)
 {
 	if (!is_dir(dirname($path)))

+ 8 - 0
public/index.php

@@ -39,11 +39,19 @@ session_start();
  */
 if (!defined('DS'))
 {
+/**
+ * Enter description here...
+ *
+ */
 	define('DS', DIRECTORY_SEPARATOR);
 }
 
 if (!defined('ROOT'))
 {
+/**
+ * Enter description here...
+ *
+ */
 	define('ROOT', dirname(dirname(__FILE__)).DS);
 }