Book Image

RESS Essentials

Book Image

RESS Essentials

Overview of this book

RESS is a new methodology in the world of web design and development. It attempts to solve the problems that accompany the RWD (responsive web design) approach to web design. RESS is still in its infancy, but it is growing at an exponential rate. RESS Essentials shows you how to make server-side applications smarter and more aware of a visitor's environment limitations (device, screen size, and browser). This allows you to create faster and more reliable websites. Through this book, you will build a solid base of knowledge on RESS-related technologies, while the step-by-step tutorials will help you to create your own RESS system. This book is an introduction to RESS alchemy and gives you an incentive to build your own RESS lab. It will give you a broad overview of the multiple techniques used to code responsive websites in responsible ways. Beginning with an overview of RWD, you will learn the steps involved in setting up RWD for client-side development. You will then learn how to scale images using client- and server-side technology. By the end of this book, you will have learned about the implementation of RESS application patterns, browser feature detection, and various RESS architectures. RESS Essentials will also teach you how to use jQuery with some RWD design patterns and how to employ REST API for RWD pages.
Table of Contents (15 chapters)
RESS Essentials
Credits
About the Authors
About the Reviewers
www.PacktPub.com
Preface
Index

Gateway file and path setup


The following code will be used in the gateway PHP file (ress_gateway/index.php), which can be placed anywhere provided we can put the .htaccess file to redirect requests and at the same time define a proper base path in the JavaScript of the application:

include "../app/bootstrap.php";
require_once(APPLICATION_DIR."rest_slim/app.php");
$app = Rest_Slim::getInstance();
$app->setRoutes();
$app->run();

To easily connect all the dots, we define the following methods:

public function getGatewayUrl()
{
  return $this->getRootUrl().$this->config['GATEWAY'].'/photos';
}

The output of the preceding function is consumed inside the JavaScript code as follows:

var rootURL = "<?php echo $this->getGatewayUrl(); ?>";

But we certainly can't call PHP from a .js file. We use the templates placed in the app\rest_slim\assets\ directory—ajax.php in this case. Then this file is loaded using the following code:

public function getJsApp()
{
  $ajaxAppPath = $this->config...