0

1 improving mobile web application development with html5

Agile Web Application Development with Yii 1.1 and PHP5

Agile Web Application Development with Yii 1.1 and PHP5

Kỹ thuật lập trình

... filter [ iii ] 93 93 94 95 95 96 98 98 10 1 10 1 10 2 10 3 10 4 10 5 10 5 10 6 10 7 10 7 11 1 11 2 11 2 11 3 Preface Yii is a high-performance, component-based application development framework written in PHP ... project context Implementing a filter [ iii ] 93 93 94 95 95 96 98 98 10 1 10 1 10 2 10 3 10 4 10 5 10 5 10 6 10 7 10 7 11 1 11 2 11 2 11 3 Table of Contents Adding a filter Specifying the filtered actions ... the rest of the CRUD Listing the issues Altering the ProjectController 11 3 11 4 11 5 11 7 11 7 11 8 11 9 12 2 12 4 12 7 12 8 12 9 12 9 Making some final tweaks Getting the status and type text to display...
  • 368
  • 574
  • 20
Agile Web Application Development with Yii 1.1 and PHP5 phần 1 pdf

Agile Web Application Development with Yii 1.1 and PHP5 phần 1 pdf

Kỹ thuật lập trình

... filter [ iii ] 93 93 94 95 95 96 98 98 10 1 10 1 10 2 10 3 10 4 10 5 10 5 10 6 10 7 10 7 11 1 11 2 11 2 11 3 Preface Yii is a high-performance, component-based application development framework written in PHP ... project context Implementing a filter [ iii ] 93 93 94 95 95 96 98 98 10 1 10 1 10 2 10 3 10 4 10 5 10 5 10 6 10 7 10 7 11 1 11 2 11 2 11 3 Table of Contents Adding a filter Specifying the filtered actions ... the rest of the CRUD Listing the issues Altering the ProjectController 11 3 11 4 11 5 11 7 11 7 11 8 11 9 12 2 12 4 12 7 12 8 12 9 12 9 Making some final tweaks Getting the status and type text to display...
  • 37
  • 387
  • 0
Agile Web Application Development with Yii 1.1 and PHP5 phần 2 docx

Agile Web Application Development with Yii 1.1 and PHP5 phần 2 docx

Kỹ thuật lập trình

... way [ 41 ] The TrackStar Application Unit tests Unit tests are tests that focus on the smallest units within a software application In an object-oriented application, (such as a Yii web application) ... YiiRoot/framework/yiic webapp trackstar Create a Web application under '/Webroot/trackstar'? [Yes|No] Yes This provides us with our skeleton folder structure and our out of the box working application You ... an application component To take a quick step back When we created the initial application, we specified the application type to be a web application Doing so actually specified that the application...
  • 36
  • 617
  • 0
Agile Web Application Development with Yii 1.1 and PHP5 phần 3 potx

Agile Web Application Development with Yii 1.1 and PHP5 phần 3 potx

Kỹ thuật lập trình

... Project description: Test project number one create_time: 2 010 - 01- 01 00:00:00 create_user_id: update_time: 2 010 - 01- 01 00:00:00 update_user_id: 1 row in set (0.00 sec) [ 70 ] Chapter You may have noticed ... 00:00:00', [ 69 ] Iteration 2: Project CRUD 'create_user_id' => 1, 'update_time' => '2 010 - 01- 01 00:00:00', 'update_user_id' => 1, ) ); $this->assertTrue($newProject->save(false)); } This code ... features of our application We know that the project is one of the most fundamental components in our application A user cannot anything useful with the TrackStar application without first either...
  • 36
  • 552
  • 0
Agile Web Application Development with Yii 1.1 and PHP5 phần 4 docx

Agile Web Application Development with Yii 1.1 and PHP5 phần 4 docx

Kỹ thuật lập trình

... /YiiRoot/framework/base/CComponent.php :13 1 /YiiRoot/yii-read-only/framework/db/ar/CActiveRecord.php :10 7 /Webroot/tasctrak/protected/tests/unit/IssueTest.php:6 FAILURES! Tests: 1, Assertions: 0, Errors: Okay, ... 'user_id') VALUES (1, 1), (1, 2); After running the preceding SQL, we have two valid members assigned to Project #1 One of the wonderful features of relational Active Record within Yii, is the ... return array( 'user1ToProject1'=>array( 'project_id' => 1, 'user_id' => 1, 'create_time' => '', 'create_user_id' => '', 'update_time' => '', 'update_user_id' => '', ), 'user2ToProject1'=>array( 'project_id'...
  • 36
  • 476
  • 0
Agile Web Application Development with Yii 1.1 and PHP5 phần 5 docx

Agile Web Application Development with Yii 1.1 and PHP5 phần 5 docx

Kỹ thuật lập trình

... 'issueBug'=>array( 'name' => 'Test Bug 1' , 'description' => 'This is test bug for project 1' , 'project_id' => 1, 'type_id' => 0, 'status_id' => 1, 'owner_id' => 1, 'requester_id' => 2, 'create_time' ... login() method on the user application component is called As mentioned, by default the web application is configured to use the Yii Framework class, CWebuser as the user application component Its ... authentication 'allowAutoLogin'=>true, ), [ 16 0 ] Chapter As it is configured as an application component, with the key 'user', we can access it at any place throughout our application using Yii::app()->user...
  • 36
  • 333
  • 0
Agile Web Application Development with Yii 1.1 and PHP5 phần 6 potx

Agile Web Application Development with Yii 1.1 and PHP5 phần 6 potx

Kỹ thuật lập trình

... the interactive web application shell is configured to use our test database: % YiiRoot/framework/yiic shell protected/config/test.php Yii Interactive Tool v1 .1 (based on Yii v1 .1. 2) Please type ... script for the application Then, within the context of the specific application, it provides tools to automatically generate new controllers, views and data models [ 18 2 ] Chapter Console applications ... application and execute the shell command (Remember YiiRoot stands for where you have installed the Yii Framework): % YiiRoot/framework/yiic shell Yii Interactive Tool v1 .1 (based on Yii v1 .1. 2)...
  • 36
  • 459
  • 0
Agile Web Application Development with Yii 1.1 and PHP5 phần 7 ppt

Agile Web Application Development with Yii 1.1 and PHP5 phần 7 ppt

Kỹ thuật lập trình

... our Trackstar application with functionality that has come to be expected of most user-based web applications today The ability for users to communicate with each other within the application is ... 'issue_id' => 1, 'create_time' => '', 'create_user_id' => 1, 'update_time' => '', 'update_user_id' => '', ), 'comment2'=>array( 'content' => 'Test comment on issue bug number 1' , 'issue_id' => 1, 'create_time' ... is a test feature issue associated with project # that is completed', 'project_id' => 3, 'type_id' => 1, 'status_id' => 2, 'owner_id' => 1, 'requester_id' => 1, 'create_time' => '', 'create_user_id'...
  • 36
  • 354
  • 0
Agile Web Application Development with Yii 1.1 and PHP5 phần 8 potx

Agile Web Application Development with Yii 1.1 and PHP5 phần 8 potx

Kỹ thuật lập trình

... entire PHP application development life-cycle experience They provide products and services to help with configuration and installation, development, deployment and with production application ... this framework within our Yii application, we need to move some of the files within our application' s folder structure Let's create a new folder under the /protected folder within our application ... background-color:transparent; font-size :12 px; font-weight:bold; text-decoration:none; padding:5px 8px; } #mainmenu ul li a:hover, #mainmenu ul li a.active { color: #d11e1e; [ 272 ] Chapter 11 background-color:#ccc;...
  • 36
  • 462
  • 0
Agile Web Application Development with Yii 1.1 and PHP5 phần 9 potx

Agile Web Application Development with Yii 1.1 and PHP5 phần 9 potx

Kỹ thuật lập trình

... idea of a theme within Web applications and how they are specifically implementing within a Yii application We saw that themes allow you to easily put a new face on an existing Web application and ... stand-alone applications, they must reside within an application Modules are useful in helping architect your application in a modular fashion Large applications can often be segmented into discrete application ... serves a similar role to the module as the application class does to the entire application So CWebModule is to our module what CWebApplication is to our application Using a module Just as the successful...
  • 36
  • 479
  • 0
Agile Web Application Development with Yii 1.1 and PHP5 phần 10 pot

Agile Web Application Development with Yii 1.1 and PHP5 phần 10 pot

Kỹ thuật lập trình

... CActiveRecord_new";b:0;s:26:"CActiveRecord_attributes";a:6:{s:2 :"id";s :1: "1" ;s:7:"message";s:22:"This is a test message";s :11 :"create_time";s :19 :"2 010 -07-08 21: 42:00";s :14 :"create_user_id";s :1: "1" ;s :11 :"update_time";s :19 :"2 010 07-08 21: 42:00";s :14 :"update_user_id";s :1: "1" ;}s:23: "18 CActiveRecord18_rela ... 2 61 A accessControl filter 11 4 about 17 3 implementing 17 4, 17 5 access rules about 17 6 actions 17 6 controllers 17 6 expression 17 6 ips 17 6 roles 17 6 users 17 6 verbs 17 6 accessRules() method 17 5, ... 12 4 -12 7 user fixture, adding 12 4 -12 7 owner and requester fields, fixing about 11 2 filter, adding 11 3 filtered actions, specifying 11 4 [ 343 ] filter, implementing 11 3 filter logic, adding 11 5, 11 6...
  • 43
  • 495
  • 0
Tài liệu Web Application Development with Yii and PHP doc

Tài liệu Web Application Development with Yii and PHP doc

Kỹ thuật lập trình

... Introducing CPortlet Summary 17 3 17 4 17 7 17 8 17 9 18 1 18 3 18 4 18 6 18 7 18 7 18 8 19 1 19 2 19 3 19 4 19 8 19 8 19 9 200 203 206 209 [ iv ] Table of Contents Chapter 9: Adding an RSS Web Feed Feature planning ... User CRUD Updating our common audit history columns [ iii ] 10 8 10 9 11 3 11 6 11 8 12 2 12 5 12 5 12 6 12 8 Table of Contents Component behavior 12 8 Adding a password confirmation field Hash the password ... 79 80 81 81 84 85 85 85 86 87 88 89 93 95 95 96 96 97 98 10 0 10 1 10 2 10 5 10 6 The rest of the CRUD Listing the issues 10 7 10 8 Final tweaks Getting the status and type text to display 11 2 11 2 Changing...
  • 332
  • 3,794
  • 0
Tài liệu Windows 8 Application Development with HTML5 docx

Tài liệu Windows 8 Application Development with HTML5 docx

Kỹ thuật lập trình

... Number: 2 012 950492 ISBN 978 -1- 118 -17 335-0 (pbk); ISBN 978 -1- 118 -23995-7 (ebk); ISBN 978 -1- 118 -26466-9 (ebk); ISBN 978 -1- 118 -22704-6 (ebk) Manufactured in the United States of America 10 www.it-ebooks.info ... video 10 9 Chapter 6: Laying Out the App 11 1 Building a Windows Layout 11 2 Using typography 11 2 Making space 11 5 Keeping ergonomics ... status 10 0 Indeterminate progress status 10 1 Ratings 10 3 Sliders 10 5 Playing Media Files with HTML5 10 7 Listening to audio 10 7 Watching...
  • 387
  • 3,346
  • 0
wiley windows 8 application development with html5 for dummies (2013)

wiley windows 8 application development with html5 for dummies (2013)

Tin học văn phòng

... Number: 2 012 950492 ISBN 978 -1- 118 -17 335-0 (pbk); ISBN 978 -1- 118 -23995-7 (ebk); ISBN 978 -1- 118 -26466-9 (ebk); ISBN 978 -1- 118 -22704-6 (ebk) Manufactured in the United States of America 10 About ... Windows Application Development with HTML5 ® FOR DUMmIES ‰ Windows Application Development with HTML5 ® FOR DUMmIES ‰ by Bill Sempf Windows® Application Development with HTML5 For Dummies® ... video 10 9 Chapter 6: Laying Out the App 11 1 Building a Windows Layout 11 2 Using typography 11 2 Making space 11 5 Keeping ergonomics...
  • 387
  • 1,755
  • 0
Web Application Development with PHP 4.0 pdf

Web Application Development with PHP 4.0 pdf

Kỹ thuật lập trình

... Implementation 11 9 Summary 11 9 II Web Applications 12 1 Web Application Concepts 12 3 HTTP and Sessions 12 3 Security Considerations 14 0 Why Usability Matters 15 8 Summary 16 6 References 16 6 Basic Web Application ... Carling, et al, 1- 556205-934-3 00 99 71 FM 6 /16 /00 7:24 AM Page iii Web Application Development with PHP 4.0 Tobias Ratschiller Till Gerken 2 01 West 10 3rd Street, Indianapolis, Indiana 46290 With contributions ... Software Paul Clements, 1- 57870 -14 7-3 Python Essential Reference David Beazley, 0-7357-09 01- 7 KDE Application Development Uwe Thiem, 1- 57870-2 01- 1 Developing Linux Applications with GTK+ and GDK Eric...
  • 416
  • 448
  • 1
core web application development with asp .net 2.0

core web application development with asp .net 2.0

Đại cương

... Controls 11 5 CheckBox Control 12 3 RadioButton Control 12 6 List-Style Controls 12 7 Image Control 13 8 ImageMap Control 14 1 HyperLink Control 14 5 HiddenField Control 14 7 Table Control 14 9 Calendar ... Calendar Control 15 8 Summary 17 7 Exercises 17 7 Key Concepts 17 7 References 17 8 10 4 10 7 Chapter THE ADDITIONAL STANDARD WEB SERVER CONTROLS 17 9 Overview of the Additional Standard Web Server Controls ... System .Web; System .Web. Security; System .Web. UI; System .Web. UI.WebControls; System .Web. UI.WebControls.WebParts; System .Web. UI.HtmlControls; public partial class HelloWorldCodeBehind : System .Web. UI.Page...
  • 1,080
  • 990
  • 0
Web application development with yii 2 and PHP

Web application development with yii 2 and PHP

Kỹ thuật lập trình

... manually 10 4 Placing JavaScript in different positions in the asset bundles 10 5 Making a custom asset bundle for our application 10 6 Themes 10 7 Making a custom snowy theme 10 8 Widgets 11 1 Summary 11 1 ... asset bundle with files from an arbitrary folder Asset publishing An asset bundle with files from a web- accessible folder [ ii ] www.it-ebooks.info 79 81 84 84 87 89 90 95 10 0 10 0 10 1 10 3 Table ... www.it-ebooks.info 15 16 16 16 18 19 19 20 22 26 26 27 34 34 34 36 37 38 Table of Contents Making the data and application layers 39 Defining the customer model at the data layer 40 Setting up the database 41...
  • 406
  • 3,118
  • 0
Dreamweaver CS5.5 Mobile and Web Development with HTML5, CSS3, and jQuery doc

Dreamweaver CS5.5 Mobile and Web Development with HTML5, CSS3, and jQuery doc

Kỹ thuật lập trình

... 16 8 16 9 17 0 17 2 17 2 17 2 17 3 17 3 17 4 17 4 17 6 17 8 17 9 17 9 18 0 18 0 18 1 18 2 18 2 18 2 18 3 18 3 18 4 18 7 19 0 19 2 19 3 19 3 19 4 19 5 19 7 19 9 19 9 19 9 2 01 202 Table of Contents Adding new jQuery Mobile pages ... HTML5 Audio in Dreamweaver 12 3 12 4 12 5 12 8 13 0 13 1 13 3 13 6 13 6 13 7 13 8 13 9 14 0 14 0 14 1 14 2 14 3 14 4 14 5 14 5 14 5 14 6 14 6 14 7 14 8 14 8 15 4 15 5 Audio and compatibility 15 6 Laying the groundwork: HTML5 ... 74 75 76 77 77 79 83 85 86 87 87 87 88 90 91 92 92 93 93 94 97 10 1 10 3 10 4 10 5 10 6 10 7 10 9 11 0 11 0 11 1 11 3 11 5 11 5 11 7 11 9 12 2 Table of Contents Chapter 6: Applying CSS3 Effects and Transforms...
  • 284
  • 817
  • 0
Dreamweaver CS5.5 Mobile and Web Development with HTML5, CSS3, and jQuery pptx

Dreamweaver CS5.5 Mobile and Web Development with HTML5, CSS3, and jQuery pptx

Kỹ thuật lập trình

... 16 8 16 9 17 0 17 2 17 2 17 2 17 3 17 3 17 4 17 4 17 6 17 8 17 9 17 9 18 0 18 0 18 1 18 2 18 2 18 2 18 3 18 3 18 4 18 7 19 0 19 2 19 3 19 3 19 4 19 5 19 7 19 9 19 9 19 9 2 01 202 Table of Contents Adding new jQuery Mobile pages ... HTML5 Audio in Dreamweaver 12 3 12 4 12 5 12 8 13 0 13 1 13 3 13 6 13 6 13 7 13 8 13 9 14 0 14 0 14 1 14 2 14 3 14 4 14 5 14 5 14 5 14 6 14 6 14 7 14 8 14 8 15 4 15 5 Audio and compatibility 15 6 Laying the groundwork: HTML5 ... 74 75 76 77 77 79 83 85 86 87 87 87 88 90 91 92 92 93 93 94 97 10 1 10 3 10 4 10 5 10 6 10 7 10 9 11 0 11 0 11 1 11 3 11 5 11 5 11 7 11 9 12 2 Table of Contents Chapter 6: Applying CSS3 Effects and Transforms...
  • 284
  • 2,658
  • 0
Dreamweaver CS5.5 Mobile and Web Development with HTML5, CSS3, and jQuery ppt

Dreamweaver CS5.5 Mobile and Web Development with HTML5, CSS3, and jQuery ppt

Quản trị Web

... 16 8 16 9 17 0 17 2 17 2 17 2 17 3 17 3 17 4 17 4 17 6 17 8 17 9 17 9 18 0 18 0 18 1 18 2 18 2 18 2 18 3 18 3 18 4 18 7 19 0 19 2 19 3 19 3 19 4 19 5 19 7 19 9 19 9 19 9 2 01 202 Table of Contents Adding new jQuery Mobile pages ... HTML5 Audio in Dreamweaver 12 3 12 4 12 5 12 8 13 0 13 1 13 3 13 6 13 6 13 7 13 8 13 9 14 0 14 0 14 1 14 2 14 3 14 4 14 5 14 5 14 5 14 6 14 6 14 7 14 8 14 8 15 4 15 5 Audio and compatibility 15 6 Laying the groundwork: HTML5 ... 74 75 76 77 77 79 83 85 86 87 87 87 88 90 91 92 92 93 93 94 97 10 1 10 3 10 4 10 5 10 6 10 7 10 9 11 0 11 0 11 1 11 3 11 5 11 5 11 7 11 9 12 2 Table of Contents Chapter 6: Applying CSS3 Effects and Transforms...
  • 284
  • 1,139
  • 0

Xem thêm