{5} Assigned, Active Tickets by Owner (Full Description) (2 matches)

List tickets assigned, group by ticket owner. This report demonstrates the use of full-row display.

mikey (2 matches)

Ticket Summary Component Milestone Type Created
Description
#235 Web Application Configuration Websites 1.3.0 enhancement 01/15/10

There should be a new way to configure web applications which will allow to get rid of interceptor configuration files and hardcoded .htaccess rewrite rules to allow greater flexibility which interceptor is called on which request, and which processor is called on which request. The configuration should look like this:

<?php
public function buildServer()
{
    $this->usingRequest($requestClassName);
    $this->usingSession($sessionClassName);

    $this->preIntercept('foo::ExamplePreInterceptor'); // intercepts all requests
    $this->preIntercept('bar::OtherPreInterceptor', '/xml/*'); // intercepts all requests to /xml/

    $this->process('xml::XmlProcessor', '/xml/*); // processes all requests to /xml/
    $this->process('jsonrpc::JsonRpcProcessor', '/jsonrpc/*'); // processes all requests to /jsonrpc/

    $this->postIntercept('trail::LogTrailPostInterceptor');
}
?>

#239 Web Application Runner core 1.3.0 enhancement 03/02/10

There should be web application runner similar to stubcli and its support by the ioc package.


Note: See TracReports for help on using and creating reports.