Skip to content

Commit fa9ce6a

Browse files
committed
Release of version 0.6.9
1 parent 18ffe1f commit fa9ce6a

File tree

178 files changed

+68144
-4244
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

178 files changed

+68144
-4244
lines changed

CHANGELOG

+39-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,44 @@
1-
DEMO ----------------------------------------------------
2-
- Bug:
3-
- Enh:
4-
- Chg: Updating JQuery UI to 1.8.17
5-
- New:
6-
---------------------------------------------------------
1+
2+
Version 0.6.9 - 16 May, 2015
3+
----------------------------
4+
- New: added new vendor dBug component
5+
- New: added new vendor CI_Security class
6+
- New: added new vendor TCPDF component
7+
- New: added new field type "fileUpload" for CDataForm widget
8+
- New: added new component CUri for parsing of URIs
9+
- New: added possibility to include one view from another view with $this->renderView() syntax
10+
- Enh: placement of component views moved from directory protected/components/views/ to directory protected/views/components/
11+
- Enh: added possibility to extend framework core classes
12+
- Enh: added possibility to create helpers on application and module levels
13+
- Enh: added possibility to override default Controller/Action from modules config files
14+
- Enh: PHPMailer vendor updated to v5.2.9
15+
- Enh: CDebug::display() renamed into CDebug::dump()
16+
- Enh: added possibility to write log into console: CDebug::console() or CDebug::c()
17+
- Enh: added new methods to CHttpRequest core class: isAjaxRequest(), isPutRequest(), isDeleteRequest() and getBrowser()
18+
- Enh: minor changes in CDbHttpSession and CHttpSession core classes
19+
- Enh: minor changes in CFile, CFormValidator, CValidator, CFormView helpers
20+
- Enh: in CDebug panel added possibility to close debug panel with double click on active tab
21+
- Enh: minor changes in syntax of models
22+
- Enh: in class A added aliases to components - request, session, cookie etc.
23+
- Enh: in components class CHttpRequest added aliases post() and get() to getPost/SetPost, getQuery/SetQuery
24+
- Enh: added new method distinct() for CActiveRecords
25+
- Enh: added possibility to define callback controller method for CDataForm
26+
- Enh: added translation into Polish
27+
- Bug: missing description of error on empty or wrong definition of _tableTranslation on models
28+
- Bug: fixed warning - non-static method CTime::dateParseFromFormat()
29+
- Bug: fixed UTF-8 issue in debug mode
30+
- Bug: fixed wrong redirection on empty action in CRouter core class
31+
- Bug: fixed wrong URL routing when 2 or more parameters were defined
32+
- Bug: missing table prefixes in CDbHttpSession component class
33+
- Bug: error in reading session data in CDbHttpSession component class
34+
- Bug: syntax error on definition of init() and model() methods in CComponent and CActiveRecords classes
35+
- Bug: unexpected debug error message of missing locale for current language
36+
- Bug: fixed security issue in uploading files in CFormValidation helper
37+
738

839
Version 0.5.9 - 29 Dec, 2014
940
----------------------------
10-
- New: added new helper CArray
41+
- New: added new helper class CArray
1142
- Enh: added translation into Hebrew
1243
- Enh: in CActiveRecords added new method updateByPk
1344
- Enh: in CActiveRecords findByPk() returns object instead of array
@@ -32,7 +63,7 @@ Version 0.5.9 - 29 Dec, 2014
3263
- Bug: fixed in CMailer class phpMail() for sending HTML messages
3364
- Bug: fixed in CFormView when drawing disabled or hidden fields
3465
- Bug: fixed issue when error 404 is not shown for module CMS
35-
- Bug: fixed accessa permissions issue in CFile::copyDirectory()
66+
- Bug: fixed access permissions issue in CFile::copyDirectory()
3667

3768

3869
Version 0.4.4 - 29 Apr, 2014
@@ -221,5 +252,3 @@ Version 0.0.1 - July 12, 2012 (Initial release)
221252
- New: created main entry to the application /public/index.php
222253

223254

224-
225-

README

+1-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You will see the following files and directories:
2222

2323
REQUIREMENTS
2424
------------
25-
The minimum requirement by ApPHP is that your Web server supports PHP 5.1.0 or
25+
The minimum requirement by ApPHP is that your Web server supports PHP 5.2.3 or
2626
above. ApPHP has been tested with Apache HTTP server on Windows and Linux
2727
operating systems.
2828

@@ -35,5 +35,4 @@ The ApPHP Developer Team
3535
------------
3636
http://www.apphp.com/php-framework/
3737
http://www.apphpframework.com
38-
https://code.google.com/p/apphp-framework/
3938
https://github.com/apphp/php-mvc-framework

UPDATE

+9-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,14 @@ General update intructions
1414
- Check if everything is OK, if not - revert from backup and post issues to ApPHP issue tracker.
1515

1616

17+
Updating from v0.5.9
18+
---------------------
19+
- view files from protected/components/views/ must be moved to protected/views/components/
20+
21+
Updating from v0.4.4
22+
---------------------
23+
- general update instructions
24+
1725
Updating from v0.3.4
1826
---------------------
1927
- replace in all controllers $this->view with $this->_view
@@ -33,4 +41,4 @@ Updating from v0.1.0 - v0.1.2
3341

3442
Updating from v0.0.1 - v0.0.3
3543
---------------------
36-
- general update intructions
44+
- general update instructions

demos/hello-world/protected/config/index.html

-1
This file was deleted.

demos/index.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<header>
2929
<nav>
3030
<ul class="menu">
31-
<li><a href="../docs/index.php">Documentation</a></li>
31+
<li><a href="../docs/index.php">Framework Guide</a></li>
3232
<li><a href="../utils/requirements/index.php">Requirements</a></li>
3333
<li><a href="../utils/tests/index.php">Tests</a></li>
3434
<li><a href="../utils/generators/index.php">Code Generators</a></li>
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Empty folder
1+
This folder is not directly accessible.

demos/login-system/protected/modules/setup/controllers/SetupController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,8 @@ public function indexAction()
7272

7373
$this->_view->notifyMessage = '';
7474

75-
if(version_compare(phpversion(), '5.1.0', '<')){
76-
$this->_view->notifyMessage = CWidget::create('CMessage', array('error', 'This program requires at least <b>PHP version 5.1.0</b> installed. You cannot proceed the installation.'));
75+
if(version_compare(phpversion(), '5.2.3', '<')){
76+
$this->_view->notifyMessage = CWidget::create('CMessage', array('error', 'This program requires at least <b>PHP version 5.2.3</b> installed. You cannot proceed the installation.'));
7777
}else if(!is_writable(APPHP_PATH.'/protected/config/')){
7878
$this->_view->notifyMessage = CWidget::create('CMessage', array('error', 'The directory <b>'.APPHP_PATH.'/protected/config/</b> is not writable! You must grant "write" permissions (access rights 0755 or 777, depending on your system settings) to this directory before you start the installation!'));
7979
}else{
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Empty folder
1+
This folder is not directly accessible.

demos/simple-blog/protected/models/Authors.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ public function __construct()
2525
/**
2626
* Returns the static model of the specified AR class
2727
*/
28-
public static function model($className = __CLASS__)
28+
public static function model()
2929
{
30-
return parent::model($className);
30+
return parent::model(__CLASS__);
3131
}
3232

3333
}

demos/simple-blog/protected/models/Categories.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ public function __construct()
2525
/**
2626
* Returns the static model of the specified AR class
2727
*/
28-
public static function model($className = __CLASS__)
28+
public static function model()
2929
{
30-
return parent::model($className);
30+
return parent::model(__CLASS__);
3131
}
3232

3333
}

demos/simple-blog/protected/models/Posts.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ public function __construct()
2525
/**
2626
* Returns the static model of the specified AR class
2727
*/
28-
public static function model($className = __CLASS__)
28+
public static function model()
2929
{
30-
return parent::model($className);
30+
return parent::model(__CLASS__);
3131
}
3232

3333
/**

demos/simple-blog/protected/models/Settings.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@ public function __construct()
2525
/**
2626
* Returns the static model of the specified AR class
2727
*/
28-
public static function model($className = __CLASS__)
28+
public static function model()
2929
{
30-
return parent::model($className);
30+
return parent::model(__CLASS__);
3131
}
3232

3333
}

demos/simple-blog/protected/modules/setup/controllers/SetupController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ public function indexAction()
5555

5656
$this->_view->notifyMessage = '';
5757

58-
if(version_compare(phpversion(), '5.1.0', '<')){
59-
$this->_view->notifyMessage = CWidget::create('CMessage', array('error', 'This program requires at least <b>PHP version 5.1.0</b> installed. You cannot proceed the installation.'));
58+
if(version_compare(phpversion(), '5.2.3', '<')){
59+
$this->_view->notifyMessage = CWidget::create('CMessage', array('error', 'This program requires at least <b>PHP version 5.2.3</b> installed. You cannot proceed the installation.'));
6060
}else if(!is_writable(APPHP_PATH.'/protected/config/')){
6161
$this->_view->notifyMessage = CWidget::create('CMessage', array('error', 'The directory <b>'.APPHP_PATH.'/protected/config/</b> is not writable! You must grant "write" permissions (access rights 0755 or 777, depending on your system settings) to this directory before you start the installation!'));
6262
}else{

0 commit comments

Comments
 (0)