diff options
author | Jean-Luc Gyger <jean-luc.gyger@vysual.ch> | 2016-02-11 10:01:12 +0100 |
---|---|---|
committer | Jean-Luc Gyger <jean-luc.gyger@vysual.ch> | 2016-02-11 10:01:12 +0100 |
commit | d70861a8f9368773f2f0291454e9420174e6c14a (patch) | |
tree | e44a32e401211422fb05da355c9eef4d5934d9e9 /demos/blog/protected/Common | |
parent | d32f65815eb6feb4bcb8a0c85572f722d7826342 (diff) | |
parent | 275f16b90a92c62935cb691d11e0bd124acf64e4 (diff) |
Merge branch 'master' of https://github.com/majuca/prado
Diffstat (limited to 'demos/blog/protected/Common')
-rwxr-xr-x | demos/blog/protected/Common/BlogDataModule.php | 12 | ||||
-rwxr-xr-x | demos/blog/protected/Common/BlogErrorHandler.php | 12 | ||||
-rwxr-xr-x | demos/blog/protected/Common/BlogException.php | 12 | ||||
-rwxr-xr-x | demos/blog/protected/Common/BlogPage.php | 12 | ||||
-rwxr-xr-x | demos/blog/protected/Common/BlogUser.php | 12 | ||||
-rwxr-xr-x | demos/blog/protected/Common/BlogUserManager.php | 12 | ||||
-rwxr-xr-x | demos/blog/protected/Common/XListMenu.php | 12 | ||||
-rwxr-xr-x | demos/blog/protected/Common/schema.sql | 4 |
8 files changed, 44 insertions, 44 deletions
diff --git a/demos/blog/protected/Common/BlogDataModule.php b/demos/blog/protected/Common/BlogDataModule.php index 384ee83d..39db9280 100755 --- a/demos/blog/protected/Common/BlogDataModule.php +++ b/demos/blog/protected/Common/BlogDataModule.php @@ -3,18 +3,18 @@ * BlogDataModule class file * * @author Qiang Xue <qiang.xue@gmail.com> - * @link http://www.pradosoft.com/ - * @copyright Copyright © 2006 PradoSoft - * @license http://www.pradosoft.com/license/ + * @link https://github.com/pradosoft/prado + * @copyright Copyright © 2006-2015 The PRADO Group + * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT */ /** * BlogDataModule class * * @author Qiang Xue <qiang.xue@gmail.com> - * @link http://www.pradosoft.com/ - * @copyright Copyright © 2006 PradoSoft - * @license http://www.pradosoft.com/license/ + * @link https://github.com/pradosoft/prado + * @copyright Copyright © 2006-2015 The PRADO Group + * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT */ class BlogDataModule extends TModule { diff --git a/demos/blog/protected/Common/BlogErrorHandler.php b/demos/blog/protected/Common/BlogErrorHandler.php index 5446a5ee..df2d44bd 100755 --- a/demos/blog/protected/Common/BlogErrorHandler.php +++ b/demos/blog/protected/Common/BlogErrorHandler.php @@ -3,9 +3,9 @@ * BlogErrorHandler class file * * @author Qiang Xue <qiang.xue@gmail.com> - * @link http://www.pradosoft.com/ - * @copyright Copyright © 2006 PradoSoft - * @license http://www.pradosoft.com/license/ + * @link https://github.com/pradosoft/prado + * @copyright Copyright © 2006-2015 The PRADO Group + * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT */ Prado::using('System.Exceptions.TErrorHandler'); @@ -15,9 +15,9 @@ Prado::using('Application.Common.BlogException'); * BlogErrorHandler class * * @author Qiang Xue <qiang.xue@gmail.com> - * @link http://www.pradosoft.com/ - * @copyright Copyright © 2006 PradoSoft - * @license http://www.pradosoft.com/license/ + * @link https://github.com/pradosoft/prado + * @copyright Copyright © 2006-2015 The PRADO Group + * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT */ class BlogErrorHandler extends TErrorHandler { diff --git a/demos/blog/protected/Common/BlogException.php b/demos/blog/protected/Common/BlogException.php index e857cc3d..0a28d0b1 100755 --- a/demos/blog/protected/Common/BlogException.php +++ b/demos/blog/protected/Common/BlogException.php @@ -3,18 +3,18 @@ * BlogException class file * * @author Qiang Xue <qiang.xue@gmail.com> - * @link http://www.pradosoft.com/ - * @copyright Copyright © 2006 PradoSoft - * @license http://www.pradosoft.com/license/ + * @link https://github.com/pradosoft/prado + * @copyright Copyright © 2006-2015 The PRADO Group + * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT */ /** * BlogException class * * @author Qiang Xue <qiang.xue@gmail.com> - * @link http://www.pradosoft.com/ - * @copyright Copyright © 2006 PradoSoft - * @license http://www.pradosoft.com/license/ + * @link https://github.com/pradosoft/prado + * @copyright Copyright © 2006-2015 The PRADO Group + * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT */ class BlogException extends THttpException { diff --git a/demos/blog/protected/Common/BlogPage.php b/demos/blog/protected/Common/BlogPage.php index 2c394e46..ebcb49bb 100755 --- a/demos/blog/protected/Common/BlogPage.php +++ b/demos/blog/protected/Common/BlogPage.php @@ -3,18 +3,18 @@ * BlogPage class file * * @author Qiang Xue <qiang.xue@gmail.com> - * @link http://www.pradosoft.com/ - * @copyright Copyright © 2006 PradoSoft - * @license http://www.pradosoft.com/license/ + * @link https://github.com/pradosoft/prado + * @copyright Copyright © 2006-2015 The PRADO Group + * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT */ /** * BlogPage class * * @author Qiang Xue <qiang.xue@gmail.com> - * @link http://www.pradosoft.com/ - * @copyright Copyright © 2006 PradoSoft - * @license http://www.pradosoft.com/license/ + * @link https://github.com/pradosoft/prado + * @copyright Copyright © 2006-2015 The PRADO Group + * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT */ class BlogPage extends TPage { diff --git a/demos/blog/protected/Common/BlogUser.php b/demos/blog/protected/Common/BlogUser.php index 3ce8af1b..20bf551f 100755 --- a/demos/blog/protected/Common/BlogUser.php +++ b/demos/blog/protected/Common/BlogUser.php @@ -3,9 +3,9 @@ * BlogUser class file * * @author Qiang Xue <qiang.xue@gmail.com> - * @link http://www.pradosoft.com/ - * @copyright Copyright © 2006 PradoSoft - * @license http://www.pradosoft.com/license/ + * @link https://github.com/pradosoft/prado + * @copyright Copyright © 2006-2015 The PRADO Group + * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT */ Prado::using('System.Security.TUser'); @@ -14,9 +14,9 @@ Prado::using('System.Security.TUser'); * BlogUser class * * @author Qiang Xue <qiang.xue@gmail.com> - * @link http://www.pradosoft.com/ - * @copyright Copyright © 2006 PradoSoft - * @license http://www.pradosoft.com/license/ + * @link https://github.com/pradosoft/prado + * @copyright Copyright © 2006-2015 The PRADO Group + * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT */ class BlogUser extends TUser { diff --git a/demos/blog/protected/Common/BlogUserManager.php b/demos/blog/protected/Common/BlogUserManager.php index c9419d73..c089c315 100755 --- a/demos/blog/protected/Common/BlogUserManager.php +++ b/demos/blog/protected/Common/BlogUserManager.php @@ -3,9 +3,9 @@ * BlogUserManager class file * * @author Qiang Xue <qiang.xue@gmail.com> - * @link http://www.pradosoft.com/ - * @copyright Copyright © 2006 PradoSoft - * @license http://www.pradosoft.com/license/ + * @link https://github.com/pradosoft/prado + * @copyright Copyright © 2006-2015 The PRADO Group + * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT */ Prado::using('System.Security.IUserManager'); @@ -15,9 +15,9 @@ Prado::using('Application.Common.BlogUser'); * BlogUserManager class * * @author Qiang Xue <qiang.xue@gmail.com> - * @link http://www.pradosoft.com/ - * @copyright Copyright © 2006 PradoSoft - * @license http://www.pradosoft.com/license/ + * @link https://github.com/pradosoft/prado + * @copyright Copyright © 2006-2015 The PRADO Group + * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT */ class BlogUserManager extends TModule implements IUserManager { diff --git a/demos/blog/protected/Common/XListMenu.php b/demos/blog/protected/Common/XListMenu.php index 5289167f..1d425c60 100755 --- a/demos/blog/protected/Common/XListMenu.php +++ b/demos/blog/protected/Common/XListMenu.php @@ -3,9 +3,9 @@ * XListMenu and XListMenuItem class file * * @author Qiang Xue <qiang.xue@gmail.com> - * @link http://www.pradosoft.com/ - * @copyright Copyright © 2006 PradoSoft - * @license http://www.pradosoft.com/license/ + * @link https://github.com/pradosoft/prado + * @copyright Copyright © 2006-2015 The PRADO Group + * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT */ Prado::using('System.Web.UI.WebControls.TListControl'); @@ -34,9 +34,9 @@ Prado::using('System.Web.UI.WebControls.TListControl'); * </code> * * @author Qiang Xue <qiang.xue@gmail.com> - * @link http://www.pradosoft.com/ - * @copyright Copyright © 2006 PradoSoft - * @license http://www.pradosoft.com/license/ + * @link https://github.com/pradosoft/prado + * @copyright Copyright © 2006-2015 The PRADO Group + * @license https://github.com/pradosoft/prado/blob/master/COPYRIGHT */ class XListMenu extends TListControl { diff --git a/demos/blog/protected/Common/schema.sql b/demos/blog/protected/Common/schema.sql index 9c111f0c..e96ca409 100755 --- a/demos/blog/protected/Common/schema.sql +++ b/demos/blog/protected/Common/schema.sql @@ -58,10 +58,10 @@ CREATE TABLE tblPost2Category ( );
INSERT INTO tblUsers (id,name,full_name,role,status,passwd,email,reg_time,website)
- VALUES (1,'admin','Prado User',1,0,'4d688da592969d0a56b5accec3ce8554','admin@example.com',1148819681,'http://www.pradosoft.com');
+ VALUES (1,'admin','Prado User',1,0,'4d688da592969d0a56b5accec3ce8554','admin@example.com',1438819691,'https://github.com/pradosoft/prado');
INSERT INTO tblPosts (id,author_id,create_time,title,content,status)
- VALUES (1,1,1148819691,'Welcome to Prado Weblog','Congratulations! You have successfully installed Prado Blog -- a PRADO-driven weblog system. A default administrator account has been created. Please login with <b>admin/prado</b> and update your password as soon as possible.',0);
+ VALUES (1,1,1438819691,'Welcome to Prado Weblog','Congratulations! You have successfully installed Prado Blog -- a PRADO-driven weblog system. A default administrator account has been created. Please login with <b>admin/prado</b> and update your password as soon as possible.',0);
INSERT INTO tblCategories (name,description,post_count)
VALUES ('Miscellaneous','This category holds posts on any topic.',1);
|