Skip to content

Commit 30f2f5a

Browse files
committed
1 parent eb20099 commit 30f2f5a

File tree

318 files changed

+3162
-13957
lines changed

Some content is hidden

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

318 files changed

+3162
-13957
lines changed

CHANGELOG

+30-9
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,37 @@
1-
DEMO ----------------------------------------------------
2-
- Bug:
3-
- Enh:
4-
- Chg: Updating JQuery UI to 1.8.17
5-
- New:
6-
---------------------------------------------------------
1+
2+
Version 0.4.4 - 29 Apr, 2014
3+
----------------------------
4+
- New: added new helper CCurrency and CCurrencySelector, that provides a set of helper methods for common currency operations
5+
- New: added new helper CNumber
6+
- New: added new widget CCaptcha
7+
- New: added new helper CImage, that provides a set of helper methods for common image system operations
8+
- New: added new helper CCache and support to db caching operations
9+
- New: added new core component CDbHttpSession for custom session data storage
10+
- Enh: minor changes in CPagination helper class
11+
- Enh: minor changes in CTime, CDataForm, CString, CGridView, CValidator and CFormValidator helper classes
12+
- Enh: minor changes in CDatabase core class
13+
- Enh: minor changes in CHtml, CPagination helper classes
14+
- Enh: minor changes in CDebug core class
15+
- Enh: in CActiveRecords added possibility to define multiple relations from the same key
16+
- Enh: improved language and currency handler procedures
17+
- Enh: added additional options to CHtml::listOptions method
18+
- Enh: changes in CMessageSource to accept translation from setup module
19+
- Enh: changes in Apphp class - added router property
20+
- Enh: minor changes in CRouter core class
21+
- Enh: minor changes in CMailer helper class
22+
- Enh: changes in syntax for some model methods
23+
- Bug: fixed case-sensitivity problem of view file names
24+
- Bug: fixed "base" tag problem in Internet Explorer
25+
- Bug: fixed in CValidator::isDate()
26+
- Bug: double call of beforeDelete() in ActiveRecord class
27+
- Bug: fixed issue with using some reserved names for CView
728

829

930
Version 0.3.4 - 17 Sep, 2013
1031
----------------------------
1132
- New: added new widget "tabs" in helper CWidget
1233
- New: added new widget "gridView" in helper CWidget
13-
- New: added new component CHttpCookie for coockie management operations
34+
- New: added new component CHttpCookie for cookie management operations
1435
- New: added new component CLocalTime for work with timezones and locale
1536
- New: added new helper CFile, that provides a set of helper methods for common file system operations
1637
- New: added i18n internationalization and translation
@@ -65,13 +86,13 @@ Version 0.1.2 - Feb 14, 2013
6586
- New: added new application component ClientScript
6687
- New: added possibility to define direct URL rewrite rules via config file
6788
- New: added new helper Auth, that responsible to handle authentication things
68-
- New: added new core class Database, that responsible to handle database connections, queries etc.
89+
- New: added new core class Database, that responsible to handle database connections, queries, etc.
6990
- New: added new widget "message" in helper Widget
7091
- New: added new helper Hash
7192
- New: added new widget "form" in helper Widget
7293
- New: added new online setup wizard for applications
7394
- Enh: added new vendor phpMailer, that allows sending emails using php mail() function or smtp
74-
- Enh: added possibility to send HTML messages in Mailer helper class
95+
- Enh: added possibility to send HTML messages in CMailer helper class
7596
- Enh: new features and changes in some tests
7697
- Enh: improved redirect() method of Controller class
7798
- Enh: added possibility to HttpRequest::getQuery() recognize parameters in following way: param1/val2/...

README

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,27 +13,27 @@ You will see the following files and directories:
1313
framework/ framework source files
1414
utils/ some utillities
1515
requirements/ requirements checker
16-
tests/ tests
16+
tests/ tests
17+
generators/ code generators
1718
CHANGELOG describing changes in every ApPHP release
1819
LICENSE license of ApPHP Framework
1920
README this file
2021
UPDATE updating instructions
2122

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

29-
3029
WHAT's NEXT
31-
-----------
30+
------------
3231
Please visit the project website for tutorials, class reference and join
3332
discussions with other ApPHP users.
3433

35-
3634
The ApPHP Developer Team
35+
------------
3736
http://www.apphp.com/php-framework/
3837
http://www.apphpframework.com
39-
https://code.google.com/p/apphp-framework/
38+
https://code.google.com/p/apphp-framework/
39+
https://github.com/apphp/php-mvc-framework

UPDATE

+6-1
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,16 @@ 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.3.4
18+
---------------------
19+
- replace in all controllers $this->view with $this->_view
20+
- replace in all models $this->db with $this->_db
21+
1722
Updating from v0.2.4
1823
---------------------
1924
- setting default time zone removed from A class and placed into CLocalTime component. Ex.: A::app()->getLocalTime()->setTimeZone('UTC');
2025
- changed syntax for all widgets. Ex.: from CWidget::gridView(...) to CWidget::create('CGridView', ...)
21-
- rename all framework files that used by the code with prefix "C", ex: Model -> CModel, Controller -> CController etc
26+
- rename all framework files that used by the code with prefix "C", ex: Model -> CModel, Controller -> CController, etc.
2227
- in widgets: CFormView, CFormValidation and CGridView attribute 'label'=>'' renamed into 'title'=>''
2328

2429
Updating from v0.1.0 - v0.1.2

demos/dummy.zip

-2.51 KB
Binary file not shown.

demos/hello-world/.htaccess

-15
This file was deleted.

demos/hello-world/index.php

-24
This file was deleted.

demos/hello-world/protected/.htaccess

-1
This file was deleted.

demos/hello-world/protected/config/main.php

-11
This file was deleted.

demos/hello-world/protected/controllers/ErrorController.php

-10
This file was deleted.

demos/hello-world/protected/controllers/IndexController.php

-17
This file was deleted.

demos/hello-world/protected/views/index/index.php

-1
This file was deleted.

demos/index.php

-139
This file was deleted.

demos/login-system/.htaccess

-19
This file was deleted.
-1.95 KB
Binary file not shown.

demos/login-system/index.php

-25
This file was deleted.

demos/login-system/protected/.htaccess

-1
This file was deleted.

0 commit comments

Comments
 (0)