summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBharat Mediratta <bharat@menalto.com>2009-05-26 22:13:38 -0700
committerBharat Mediratta <bharat@menalto.com>2009-05-26 22:13:38 -0700
commit6d1f85463bb091da88c9c7a5dc135d17e1f6a0a0 (patch)
tree086ebab1b21af63415a197dc95fe8873e65ce29a
parent1666a86664959633c102f12eafef855fb8ffad06 (diff)
Update Kohana to r4357
-rw-r--r--kohana/controllers/template.php2
-rw-r--r--kohana/core/Benchmark.php2
-rw-r--r--kohana/core/Bootstrap.php2
-rw-r--r--kohana/core/Event.php2
-rw-r--r--kohana/core/Kohana.php2
-rw-r--r--kohana/core/utf8.php2
-rw-r--r--kohana/helpers/arr.php2
-rw-r--r--kohana/helpers/cookie.php2
-rw-r--r--kohana/helpers/date.php2
-rw-r--r--kohana/helpers/download.php2
-rw-r--r--kohana/helpers/email.php2
-rw-r--r--kohana/helpers/expires.php2
-rw-r--r--kohana/helpers/feed.php2
-rw-r--r--kohana/helpers/file.php2
-rw-r--r--kohana/helpers/form.php2
-rw-r--r--kohana/helpers/format.php2
-rw-r--r--kohana/helpers/html.php2
-rw-r--r--kohana/helpers/inflector.php2
-rw-r--r--kohana/helpers/num.php2
-rw-r--r--kohana/helpers/remote.php2
-rw-r--r--kohana/helpers/request.php2
-rw-r--r--kohana/helpers/security.php2
-rw-r--r--kohana/helpers/text.php2
-rw-r--r--kohana/helpers/upload.php2
-rw-r--r--kohana/helpers/url.php2
-rw-r--r--kohana/helpers/valid.php2
-rw-r--r--kohana/libraries/Cache.php2
-rw-r--r--kohana/libraries/Controller.php2
-rw-r--r--kohana/libraries/Database.php2
-rw-r--r--kohana/libraries/Database_Expression.php2
-rw-r--r--kohana/libraries/Encrypt.php2
-rw-r--r--kohana/libraries/Event_Observer.php2
-rw-r--r--kohana/libraries/Event_Subject.php2
-rw-r--r--kohana/libraries/Image.php2
-rw-r--r--kohana/libraries/Input.php2
-rw-r--r--kohana/libraries/Model.php2
-rw-r--r--kohana/libraries/ORM.php2
-rw-r--r--kohana/libraries/ORM_Iterator.php2
-rw-r--r--kohana/libraries/ORM_Tree.php2
-rw-r--r--kohana/libraries/Pagination.php2
-rw-r--r--kohana/libraries/Profiler.php2
-rw-r--r--kohana/libraries/Router.php2
-rw-r--r--kohana/libraries/Session.php2
-rw-r--r--kohana/libraries/URI.php2
-rw-r--r--kohana/libraries/Validation.php2
-rw-r--r--kohana/libraries/View.php2
-rw-r--r--kohana/libraries/drivers/Cache.php2
-rw-r--r--kohana/libraries/drivers/Cache/Apc.php2
-rw-r--r--kohana/libraries/drivers/Cache/Eaccelerator.php2
-rw-r--r--kohana/libraries/drivers/Cache/File.php2
-rw-r--r--kohana/libraries/drivers/Cache/Memcache.php2
-rw-r--r--kohana/libraries/drivers/Cache/Sqlite.php2
-rw-r--r--kohana/libraries/drivers/Cache/Xcache.php2
-rw-r--r--kohana/libraries/drivers/Captcha.php2
-rw-r--r--kohana/libraries/drivers/Captcha/Alpha.php2
-rw-r--r--kohana/libraries/drivers/Captcha/Basic.php2
-rw-r--r--kohana/libraries/drivers/Captcha/Black.php2
-rw-r--r--kohana/libraries/drivers/Captcha/Math.php2
-rw-r--r--kohana/libraries/drivers/Captcha/Riddle.php2
-rw-r--r--kohana/libraries/drivers/Captcha/Word.php2
-rw-r--r--kohana/libraries/drivers/Database.php2
-rw-r--r--kohana/libraries/drivers/Database/Mysql.php2
-rw-r--r--kohana/libraries/drivers/Database/Mysqli.php2
-rw-r--r--kohana/libraries/drivers/Database/Pgsql.php2
-rw-r--r--kohana/libraries/drivers/Image.php2
-rw-r--r--kohana/libraries/drivers/Image/GD.php2
-rw-r--r--kohana/libraries/drivers/Image/ImageMagick.php2
-rw-r--r--kohana/libraries/drivers/Session.php2
-rw-r--r--kohana/libraries/drivers/Session/Cache.php2
-rw-r--r--kohana/libraries/drivers/Session/Cookie.php2
-rw-r--r--kohana/libraries/drivers/Session/Database.php2
-rw-r--r--modules/unit_test/controllers/unit_test.php2
-rw-r--r--modules/unit_test/libraries/Unit_Test.php2
73 files changed, 73 insertions, 73 deletions
diff --git a/kohana/controllers/template.php b/kohana/controllers/template.php
index d5d685f7..34d1a226 100644
--- a/kohana/controllers/template.php
+++ b/kohana/controllers/template.php
@@ -7,7 +7,7 @@
* To use it, declare your controller to extend this class:
* `class Your_Controller extends Template_Controller`
*
- * $Id$
+ * $Id: template.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/core/Benchmark.php b/kohana/core/Benchmark.php
index 3bb6d04f..ce230f11 100644
--- a/kohana/core/Benchmark.php
+++ b/kohana/core/Benchmark.php
@@ -2,7 +2,7 @@
/**
* Simple benchmarking.
*
- * $Id$
+ * $Id: Benchmark.php 4149 2009-04-01 13:32:50Z Shadowhand $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/core/Bootstrap.php b/kohana/core/Bootstrap.php
index ad7564c8..edfb086d 100644
--- a/kohana/core/Bootstrap.php
+++ b/kohana/core/Bootstrap.php
@@ -2,7 +2,7 @@
/**
* Kohana process control file, loaded by the front controller.
*
- * $Id$
+ * $Id: Bootstrap.php 4135 2009-03-28 17:51:04Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/core/Event.php b/kohana/core/Event.php
index 456dca09..22a9f69d 100644
--- a/kohana/core/Event.php
+++ b/kohana/core/Event.php
@@ -4,7 +4,7 @@
* to be added to 'events'. Events can be run multiple times, and can also
* process event-specific data. By default, Kohana has several system events.
*
- * $Id$
+ * $Id: Event.php 3993 2009-02-17 18:42:50Z jheathco $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/core/Kohana.php b/kohana/core/Kohana.php
index 53baa87c..ac64b5b8 100644
--- a/kohana/core/Kohana.php
+++ b/kohana/core/Kohana.php
@@ -2,7 +2,7 @@
/**
* Provides Kohana-specific helper functions. This is where the magic happens!
*
- * $Id$
+ * $Id: Kohana.php 4352 2009-05-14 20:26:53Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/core/utf8.php b/kohana/core/utf8.php
index 56e4a03b..9f20f421 100644
--- a/kohana/core/utf8.php
+++ b/kohana/core/utf8.php
@@ -18,7 +18,7 @@
* string functions.
* @see http://php.net/mbstring
*
- * $Id$
+ * $Id: utf8.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/arr.php b/kohana/helpers/arr.php
index 9f0dc097..9570c4b5 100644
--- a/kohana/helpers/arr.php
+++ b/kohana/helpers/arr.php
@@ -2,7 +2,7 @@
/**
* Array helper class.
*
- * $Id$
+ * $Id: arr.php 4346 2009-05-11 17:08:15Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/cookie.php b/kohana/helpers/cookie.php
index c7e1ac13..901b6d86 100644
--- a/kohana/helpers/cookie.php
+++ b/kohana/helpers/cookie.php
@@ -2,7 +2,7 @@
/**
* Cookie helper class.
*
- * $Id$
+ * $Id: cookie.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/date.php b/kohana/helpers/date.php
index 1a5bbacb..7d5a9ab6 100644
--- a/kohana/helpers/date.php
+++ b/kohana/helpers/date.php
@@ -2,7 +2,7 @@
/**
* Date helper class.
*
- * $Id$
+ * $Id: date.php 4316 2009-05-04 01:03:54Z kiall $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/download.php b/kohana/helpers/download.php
index 038ee790..49fed42c 100644
--- a/kohana/helpers/download.php
+++ b/kohana/helpers/download.php
@@ -2,7 +2,7 @@
/**
* Download helper class.
*
- * $Id$
+ * $Id: download.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/email.php b/kohana/helpers/email.php
index 38eb47c7..fb222d0c 100644
--- a/kohana/helpers/email.php
+++ b/kohana/helpers/email.php
@@ -2,7 +2,7 @@
/**
* Email helper class.
*
- * $Id$
+ * $Id: email.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/expires.php b/kohana/helpers/expires.php
index 8d8ef0f8..c43cc0cc 100644
--- a/kohana/helpers/expires.php
+++ b/kohana/helpers/expires.php
@@ -2,7 +2,7 @@
/**
* Controls headers that effect client caching of pages
*
- * $Id$
+ * $Id: expires.php 4272 2009-04-25 21:47:26Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/feed.php b/kohana/helpers/feed.php
index a84ec512..74bb2f6b 100644
--- a/kohana/helpers/feed.php
+++ b/kohana/helpers/feed.php
@@ -2,7 +2,7 @@
/**
* Feed helper class.
*
- * $Id$
+ * $Id: feed.php 4152 2009-04-03 23:26:23Z ixmatus $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/file.php b/kohana/helpers/file.php
index ebb2d97a..b1b71740 100644
--- a/kohana/helpers/file.php
+++ b/kohana/helpers/file.php
@@ -2,7 +2,7 @@
/**
* File helper class.
*
- * $Id$
+ * $Id: file.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/form.php b/kohana/helpers/form.php
index 70b98167..ce8767c5 100644
--- a/kohana/helpers/form.php
+++ b/kohana/helpers/form.php
@@ -2,7 +2,7 @@
/**
* Form helper class.
*
- * $Id$
+ * $Id: form.php 4291 2009-04-29 22:51:58Z kiall $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/format.php b/kohana/helpers/format.php
index b8ab4adc..fb8a0294 100644
--- a/kohana/helpers/format.php
+++ b/kohana/helpers/format.php
@@ -2,7 +2,7 @@
/**
* Format helper class.
*
- * $Id$
+ * $Id: format.php 4070 2009-03-11 20:37:38Z Geert $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/html.php b/kohana/helpers/html.php
index 375baf38..f40c86dc 100644
--- a/kohana/helpers/html.php
+++ b/kohana/helpers/html.php
@@ -2,7 +2,7 @@
/**
* HTML helper class.
*
- * $Id$
+ * $Id: html.php 4141 2009-03-29 03:30:06Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/inflector.php b/kohana/helpers/inflector.php
index 94e62d36..1e4fee23 100644
--- a/kohana/helpers/inflector.php
+++ b/kohana/helpers/inflector.php
@@ -2,7 +2,7 @@
/**
* Inflector helper class.
*
- * $Id$
+ * $Id: inflector.php 4072 2009-03-13 17:20:38Z jheathco $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/num.php b/kohana/helpers/num.php
index b57ec3a8..3eb5d5ac 100644
--- a/kohana/helpers/num.php
+++ b/kohana/helpers/num.php
@@ -2,7 +2,7 @@
/**
* Number helper class.
*
- * $Id$
+ * $Id: num.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/remote.php b/kohana/helpers/remote.php
index d5faf4eb..f9e0267f 100644
--- a/kohana/helpers/remote.php
+++ b/kohana/helpers/remote.php
@@ -2,7 +2,7 @@
/**
* Remote url/file helper.
*
- * $Id$
+ * $Id: remote.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/request.php b/kohana/helpers/request.php
index 091a9d68..4203d0e5 100644
--- a/kohana/helpers/request.php
+++ b/kohana/helpers/request.php
@@ -2,7 +2,7 @@
/**
* Request helper class.
*
- * $Id$
+ * $Id: request.php 4355 2009-05-15 17:18:28Z kiall $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/security.php b/kohana/helpers/security.php
index 1adf82ac..cd48d2e0 100644
--- a/kohana/helpers/security.php
+++ b/kohana/helpers/security.php
@@ -2,7 +2,7 @@
/**
* Security helper class.
*
- * $Id$
+ * $Id: security.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/text.php b/kohana/helpers/text.php
index 8f68b709..d0e573ec 100644
--- a/kohana/helpers/text.php
+++ b/kohana/helpers/text.php
@@ -2,7 +2,7 @@
/**
* Text helper class.
*
- * $Id$
+ * $Id: text.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/upload.php b/kohana/helpers/upload.php
index 1bff9230..422e9e8d 100644
--- a/kohana/helpers/upload.php
+++ b/kohana/helpers/upload.php
@@ -3,7 +3,7 @@
* Upload helper class for working with the global $_FILES
* array and Validation library.
*
- * $Id$
+ * $Id: upload.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/url.php b/kohana/helpers/url.php
index 46055299..f3d0ec8b 100644
--- a/kohana/helpers/url.php
+++ b/kohana/helpers/url.php
@@ -2,7 +2,7 @@
/**
* URL helper class.
*
- * $Id$
+ * $Id: url.php 4029 2009-03-03 12:39:32Z Shadowhand $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/helpers/valid.php b/kohana/helpers/valid.php
index 25f90f68..610076f3 100644
--- a/kohana/helpers/valid.php
+++ b/kohana/helpers/valid.php
@@ -2,7 +2,7 @@
/**
* Validation helper class.
*
- * $Id$
+ * $Id: valid.php 4187 2009-04-08 04:01:23Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/Cache.php b/kohana/libraries/Cache.php
index 3dcf0312..8a02a905 100644
--- a/kohana/libraries/Cache.php
+++ b/kohana/libraries/Cache.php
@@ -4,7 +4,7 @@
* resources. Caches are identified by a unique string. Tagging of caches is
* also supported, and caches can be found and deleted by id or tag.
*
- * $Id$
+ * $Id: Cache.php 4321 2009-05-04 01:39:44Z kiall $
*
* @package Cache
* @author Kohana Team
diff --git a/kohana/libraries/Controller.php b/kohana/libraries/Controller.php
index 317f5f0c..d111f25e 100644
--- a/kohana/libraries/Controller.php
+++ b/kohana/libraries/Controller.php
@@ -3,7 +3,7 @@
* Kohana Controller class. The controller class must be extended to work
* properly, so this class is defined as abstract.
*
- * $Id$
+ * $Id: Controller.php 3979 2009-02-13 16:46:12Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/Database.php b/kohana/libraries/Database.php
index 59e47621..6267f63a 100644
--- a/kohana/libraries/Database.php
+++ b/kohana/libraries/Database.php
@@ -2,7 +2,7 @@
/**
* Provides database access in a platform agnostic way, using simple query building blocks.
*
- * $Id$
+ * $Id: Database.php 4342 2009-05-08 16:56:01Z jheathco $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/Database_Expression.php b/kohana/libraries/Database_Expression.php
index 3a8427ca..940a6363 100644
--- a/kohana/libraries/Database_Expression.php
+++ b/kohana/libraries/Database_Expression.php
@@ -2,7 +2,7 @@
/**
* Database expression class to allow for explicit joins and where expressions.
*
- * $Id$
+ * $Id: Database_Expression.php 4037 2009-03-04 23:35:53Z jheathco $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/Encrypt.php b/kohana/libraries/Encrypt.php
index 31e72438..3d564f99 100644
--- a/kohana/libraries/Encrypt.php
+++ b/kohana/libraries/Encrypt.php
@@ -4,7 +4,7 @@
* using the MCrypt extension.
* @see http://php.net/mcrypt
*
- * $Id$
+ * $Id: Encrypt.php 4072 2009-03-13 17:20:38Z jheathco $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/Event_Observer.php b/kohana/libraries/Event_Observer.php
index a720d1aa..086c8a23 100644
--- a/kohana/libraries/Event_Observer.php
+++ b/kohana/libraries/Event_Observer.php
@@ -2,7 +2,7 @@
/**
* Kohana event observer. Uses the SPL observer pattern.
*
- * $Id$
+ * $Id: Event_Observer.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/Event_Subject.php b/kohana/libraries/Event_Subject.php
index 02d55946..d1ccc544 100644
--- a/kohana/libraries/Event_Subject.php
+++ b/kohana/libraries/Event_Subject.php
@@ -2,7 +2,7 @@
/**
* Kohana event subject. Uses the SPL observer pattern.
*
- * $Id$
+ * $Id: Event_Subject.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/Image.php b/kohana/libraries/Image.php
index d740272d..08c2957c 100644
--- a/kohana/libraries/Image.php
+++ b/kohana/libraries/Image.php
@@ -3,7 +3,7 @@
* Manipulate images using standard methods such as resize, crop, rotate, etc.
* This class must be re-initialized for every image you wish to manipulate.
*
- * $Id$
+ * $Id: Image.php 4072 2009-03-13 17:20:38Z jheathco $
*
* @package Image
* @author Kohana Team
diff --git a/kohana/libraries/Input.php b/kohana/libraries/Input.php
index 4549bf4a..0e23c800 100644
--- a/kohana/libraries/Input.php
+++ b/kohana/libraries/Input.php
@@ -2,7 +2,7 @@
/**
* Input library.
*
- * $Id$
+ * $Id: Input.php 4346 2009-05-11 17:08:15Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/Model.php b/kohana/libraries/Model.php
index 9c78507b..0c9fd8d6 100644
--- a/kohana/libraries/Model.php
+++ b/kohana/libraries/Model.php
@@ -2,7 +2,7 @@
/**
* Model base class.
*
- * $Id$
+ * $Id: Model.php 4007 2009-02-20 01:54:00Z jheathco $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/ORM.php b/kohana/libraries/ORM.php
index ae214649..c1048604 100644
--- a/kohana/libraries/ORM.php
+++ b/kohana/libraries/ORM.php
@@ -8,7 +8,7 @@
* [ref-orm]: http://wikipedia.org/wiki/Object-relational_mapping
* [ref-act]: http://wikipedia.org/wiki/Active_record
*
- * $Id$
+ * $Id: ORM.php 4354 2009-05-15 16:51:37Z kiall $
*
* @package ORM
* @author Kohana Team
diff --git a/kohana/libraries/ORM_Iterator.php b/kohana/libraries/ORM_Iterator.php
index 9e5f05f6..41aa8065 100644
--- a/kohana/libraries/ORM_Iterator.php
+++ b/kohana/libraries/ORM_Iterator.php
@@ -2,7 +2,7 @@
/**
* Object Relational Mapping (ORM) result iterator.
*
-* $Id$
+* $Id: ORM_Iterator.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package ORM
* @author Kohana Team
diff --git a/kohana/libraries/ORM_Tree.php b/kohana/libraries/ORM_Tree.php
index def5fd59..cdb09fd0 100644
--- a/kohana/libraries/ORM_Tree.php
+++ b/kohana/libraries/ORM_Tree.php
@@ -3,7 +3,7 @@
* Object Relational Mapping (ORM) "tree" extension. Allows ORM objects to act
* as trees, with parents and children.
*
- * $Id$
+ * $Id: ORM_Tree.php 3923 2009-01-22 15:37:04Z samsoir $
*
* @package ORM
* @author Kohana Team
diff --git a/kohana/libraries/Pagination.php b/kohana/libraries/Pagination.php
index 96c6618d..a8f7bb19 100644
--- a/kohana/libraries/Pagination.php
+++ b/kohana/libraries/Pagination.php
@@ -2,7 +2,7 @@
/**
* Pagination library.
*
- * $Id$
+ * $Id: Pagination.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/Profiler.php b/kohana/libraries/Profiler.php
index 3c2a460d..47d82ace 100644
--- a/kohana/libraries/Profiler.php
+++ b/kohana/libraries/Profiler.php
@@ -8,7 +8,7 @@
* POST Data - The name and values of any POST data submitted to the current page.
* Cookie Data - All cookies sent for the current request.
*
- * $Id$
+ * $Id: Profiler.php 4090 2009-03-19 01:27:45Z bharat $
*
* @package Profiler
* @author Kohana Team
diff --git a/kohana/libraries/Router.php b/kohana/libraries/Router.php
index a47a9993..6dc9b10c 100644
--- a/kohana/libraries/Router.php
+++ b/kohana/libraries/Router.php
@@ -2,7 +2,7 @@
/**
* Router
*
- * $Id$
+ * $Id: Router.php 4350 2009-05-14 18:58:18Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/Session.php b/kohana/libraries/Session.php
index 900e5405..e03f5dff 100644
--- a/kohana/libraries/Session.php
+++ b/kohana/libraries/Session.php
@@ -2,7 +2,7 @@
/**
* Session library.
*
- * $Id$
+ * $Id: Session.php 4073 2009-03-13 17:53:58Z Shadowhand $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/URI.php b/kohana/libraries/URI.php
index f012e78a..d9ccdcf7 100644
--- a/kohana/libraries/URI.php
+++ b/kohana/libraries/URI.php
@@ -2,7 +2,7 @@
/**
* URI library.
*
- * $Id$
+ * $Id: URI.php 4072 2009-03-13 17:20:38Z jheathco $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/Validation.php b/kohana/libraries/Validation.php
index e2c8ff17..5a48bfc5 100644
--- a/kohana/libraries/Validation.php
+++ b/kohana/libraries/Validation.php
@@ -2,7 +2,7 @@
/**
* Validation library.
*
- * $Id$
+ * $Id: Validation.php 4120 2009-03-25 19:22:31Z jheathco $
*
* @package Validation
* @author Kohana Team
diff --git a/kohana/libraries/View.php b/kohana/libraries/View.php
index 87b15fc3..2b8471c6 100644
--- a/kohana/libraries/View.php
+++ b/kohana/libraries/View.php
@@ -3,7 +3,7 @@
* Loads and displays Kohana view files. Can also handle output of some binary
* files, such as image, Javascript, and CSS files.
*
- * $Id$
+ * $Id: View.php 4072 2009-03-13 17:20:38Z jheathco $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Cache.php b/kohana/libraries/drivers/Cache.php
index 6f24ccac..7c5e3c31 100644
--- a/kohana/libraries/drivers/Cache.php
+++ b/kohana/libraries/drivers/Cache.php
@@ -2,7 +2,7 @@
/**
* Cache driver interface.
*
- * $Id$
+ * $Id: Cache.php 4046 2009-03-05 19:23:29Z Shadowhand $
*
* @package Cache
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Cache/Apc.php b/kohana/libraries/drivers/Cache/Apc.php
index 29431ed4..f7be048f 100644
--- a/kohana/libraries/drivers/Cache/Apc.php
+++ b/kohana/libraries/drivers/Cache/Apc.php
@@ -2,7 +2,7 @@
/**
* APC-based Cache driver.
*
- * $Id$
+ * $Id: Apc.php 4046 2009-03-05 19:23:29Z Shadowhand $
*
* @package Cache
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Cache/Eaccelerator.php b/kohana/libraries/drivers/Cache/Eaccelerator.php
index 0710d483..a45616d5 100644
--- a/kohana/libraries/drivers/Cache/Eaccelerator.php
+++ b/kohana/libraries/drivers/Cache/Eaccelerator.php
@@ -2,7 +2,7 @@
/**
* Eaccelerator-based Cache driver.
*
- * $Id$
+ * $Id: Eaccelerator.php 4046 2009-03-05 19:23:29Z Shadowhand $
*
* @package Cache
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Cache/File.php b/kohana/libraries/drivers/Cache/File.php
index db27f02d..cc9d48d3 100644
--- a/kohana/libraries/drivers/Cache/File.php
+++ b/kohana/libraries/drivers/Cache/File.php
@@ -2,7 +2,7 @@
/**
* File-based Cache driver.
*
- * $Id$
+ * $Id: File.php 4046 2009-03-05 19:23:29Z Shadowhand $
*
* @package Cache
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Cache/Memcache.php b/kohana/libraries/drivers/Cache/Memcache.php
index acd4c850..d801de9c 100644
--- a/kohana/libraries/drivers/Cache/Memcache.php
+++ b/kohana/libraries/drivers/Cache/Memcache.php
@@ -2,7 +2,7 @@
/**
* Memcache-based Cache driver.
*
- * $Id$
+ * $Id: Memcache.php 4102 2009-03-19 12:55:54Z Shadowhand $
*
* @package Cache
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Cache/Sqlite.php b/kohana/libraries/drivers/Cache/Sqlite.php
index a86efaba..9458d851 100644
--- a/kohana/libraries/drivers/Cache/Sqlite.php
+++ b/kohana/libraries/drivers/Cache/Sqlite.php
@@ -2,7 +2,7 @@
/**
* SQLite-based Cache driver.
*
- * $Id$
+ * $Id: Sqlite.php 4046 2009-03-05 19:23:29Z Shadowhand $
*
* @package Cache
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Cache/Xcache.php b/kohana/libraries/drivers/Cache/Xcache.php
index 8d31993a..6254bbb6 100644
--- a/kohana/libraries/drivers/Cache/Xcache.php
+++ b/kohana/libraries/drivers/Cache/Xcache.php
@@ -2,7 +2,7 @@
/**
* Xcache Cache driver.
*
- * $Id$
+ * $Id: Xcache.php 4046 2009-03-05 19:23:29Z Shadowhand $
*
* @package Cache
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Captcha.php b/kohana/libraries/drivers/Captcha.php
index 8c7291b2..a4343e19 100644
--- a/kohana/libraries/drivers/Captcha.php
+++ b/kohana/libraries/drivers/Captcha.php
@@ -2,7 +2,7 @@
/**
* Captcha driver class.
*
- * $Id$
+ * $Id: Captcha.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Captcha
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Captcha/Alpha.php b/kohana/libraries/drivers/Captcha/Alpha.php
index 6c8eaf87..b3a9c9d7 100644
--- a/kohana/libraries/drivers/Captcha/Alpha.php
+++ b/kohana/libraries/drivers/Captcha/Alpha.php
@@ -2,7 +2,7 @@
/**
* Captcha driver for "alpha" style.
*
- * $Id$
+ * $Id: Alpha.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Captcha
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Captcha/Basic.php b/kohana/libraries/drivers/Captcha/Basic.php
index 01e8fc9a..d212e72c 100644
--- a/kohana/libraries/drivers/Captcha/Basic.php
+++ b/kohana/libraries/drivers/Captcha/Basic.php
@@ -2,7 +2,7 @@
/**
* Captcha driver for "basic" style.
*
- * $Id$
+ * $Id: Basic.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Captcha
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Captcha/Black.php b/kohana/libraries/drivers/Captcha/Black.php
index 1ea9146a..6a2e2226 100644
--- a/kohana/libraries/drivers/Captcha/Black.php
+++ b/kohana/libraries/drivers/Captcha/Black.php
@@ -2,7 +2,7 @@
/**
* Captcha driver for "black" style.
*
- * $Id$
+ * $Id: Black.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Captcha
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Captcha/Math.php b/kohana/libraries/drivers/Captcha/Math.php
index 76dda8e9..4ac20248 100644
--- a/kohana/libraries/drivers/Captcha/Math.php
+++ b/kohana/libraries/drivers/Captcha/Math.php
@@ -2,7 +2,7 @@
/**
* Captcha driver for "math" style.
*
- * $Id$
+ * $Id: Math.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Captcha
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Captcha/Riddle.php b/kohana/libraries/drivers/Captcha/Riddle.php
index a19b906c..765eeaad 100644
--- a/kohana/libraries/drivers/Captcha/Riddle.php
+++ b/kohana/libraries/drivers/Captcha/Riddle.php
@@ -2,7 +2,7 @@
/**
* Captcha driver for "riddle" style.
*
- * $Id$
+ * $Id: Riddle.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Captcha
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Captcha/Word.php b/kohana/libraries/drivers/Captcha/Word.php
index af6e0872..856bd9b4 100644
--- a/kohana/libraries/drivers/Captcha/Word.php
+++ b/kohana/libraries/drivers/Captcha/Word.php
@@ -2,7 +2,7 @@
/**
* Captcha driver for "word" style.
*
- * $Id$
+ * $Id: Word.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Captcha
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Database.php b/kohana/libraries/drivers/Database.php
index f5adf924..807469f6 100644
--- a/kohana/libraries/drivers/Database.php
+++ b/kohana/libraries/drivers/Database.php
@@ -2,7 +2,7 @@
/**
* Database API driver
*
- * $Id$
+ * $Id: Database.php 4343 2009-05-08 17:04:48Z jheathco $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Database/Mysql.php b/kohana/libraries/drivers/Database/Mysql.php
index 978de459..d5222f50 100644
--- a/kohana/libraries/drivers/Database/Mysql.php
+++ b/kohana/libraries/drivers/Database/Mysql.php
@@ -2,7 +2,7 @@
/**
* MySQL Database Driver
*
- * $Id$
+ * $Id: Mysql.php 4344 2009-05-11 16:41:39Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Database/Mysqli.php b/kohana/libraries/drivers/Database/Mysqli.php
index f15e4283..0dd9f05c 100644
--- a/kohana/libraries/drivers/Database/Mysqli.php
+++ b/kohana/libraries/drivers/Database/Mysqli.php
@@ -2,7 +2,7 @@
/**
* MySQLi Database Driver
*
- * $Id$
+ * $Id: Mysqli.php 4344 2009-05-11 16:41:39Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Database/Pgsql.php b/kohana/libraries/drivers/Database/Pgsql.php
index c8a7d819..c53c8439 100644
--- a/kohana/libraries/drivers/Database/Pgsql.php
+++ b/kohana/libraries/drivers/Database/Pgsql.php
@@ -2,7 +2,7 @@
/**
* PostgreSQL 8.1+ Database Driver
*
- * $Id$
+ * $Id: Pgsql.php 4344 2009-05-11 16:41:39Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Image.php b/kohana/libraries/drivers/Image.php
index 33f0f940..f89ba953 100644
--- a/kohana/libraries/drivers/Image.php
+++ b/kohana/libraries/drivers/Image.php
@@ -2,7 +2,7 @@
/**
* Image API driver.
*
- * $Id$
+ * $Id: Image.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Image
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Image/GD.php b/kohana/libraries/drivers/Image/GD.php
index 24657c56..be2af4e2 100644
--- a/kohana/libraries/drivers/Image/GD.php
+++ b/kohana/libraries/drivers/Image/GD.php
@@ -2,7 +2,7 @@
/**
* GD Image Driver.
*
- * $Id$
+ * $Id: GD.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Image
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Image/ImageMagick.php b/kohana/libraries/drivers/Image/ImageMagick.php
index 497dd8c4..4b381fd6 100644
--- a/kohana/libraries/drivers/Image/ImageMagick.php
+++ b/kohana/libraries/drivers/Image/ImageMagick.php
@@ -2,7 +2,7 @@
/**
* ImageMagick Image Driver.
*
- * $Id$
+ * $Id: ImageMagick.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Image
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Session.php b/kohana/libraries/drivers/Session.php
index 8dbfbc48..fb58c8d3 100644
--- a/kohana/libraries/drivers/Session.php
+++ b/kohana/libraries/drivers/Session.php
@@ -2,7 +2,7 @@
/**
* Session driver interface
*
- * $Id$
+ * $Id: Session.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Session/Cache.php b/kohana/libraries/drivers/Session/Cache.php
index 4ad0bf18..7221c9f2 100644
--- a/kohana/libraries/drivers/Session/Cache.php
+++ b/kohana/libraries/drivers/Session/Cache.php
@@ -10,7 +10,7 @@
* Lifetime does not need to be set as it is
* overridden by the session expiration setting.
*
- * $Id$
+ * $Id: Cache.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Session/Cookie.php b/kohana/libraries/drivers/Session/Cookie.php
index 12a6d630..7b791064 100644
--- a/kohana/libraries/drivers/Session/Cookie.php
+++ b/kohana/libraries/drivers/Session/Cookie.php
@@ -2,7 +2,7 @@
/**
* Session cookie driver.
*
- * $Id$
+ * $Id: Cookie.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/kohana/libraries/drivers/Session/Database.php b/kohana/libraries/drivers/Session/Database.php
index 5f1a0426..b4144ffb 100644
--- a/kohana/libraries/drivers/Session/Database.php
+++ b/kohana/libraries/drivers/Session/Database.php
@@ -2,7 +2,7 @@
/**
* Session database driver.
*
- * $Id$
+ * $Id: Database.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Core
* @author Kohana Team
diff --git a/modules/unit_test/controllers/unit_test.php b/modules/unit_test/controllers/unit_test.php
index 1c73e619..bce8cb6a 100644
--- a/modules/unit_test/controllers/unit_test.php
+++ b/modules/unit_test/controllers/unit_test.php
@@ -2,7 +2,7 @@
/**
* Unit_Test controller.
*
- * $Id$
+ * $Id: unit_test.php 3769 2008-12-15 00:48:56Z zombor $
*
* @package Unit_Test
* @author Kohana Team
diff --git a/modules/unit_test/libraries/Unit_Test.php b/modules/unit_test/libraries/Unit_Test.php
index debf53ab..7e3d2a4b 100644
--- a/modules/unit_test/libraries/Unit_Test.php
+++ b/modules/unit_test/libraries/Unit_Test.php
@@ -2,7 +2,7 @@
/**
* Unit_Test library.
*
- * $Id$
+ * $Id: Unit_Test.php 4158 2009-04-07 20:40:44Z zombor $
*
* @package Unit_Test
* @author Kohana Team