示例#1
0
 /**
  * Configure this runner with a web.ini
  *
  * @param   util.Properties conf
  * @throws  lang.IllegalStateException if the web is misconfigured
  */
 public function configure(Properties $conf)
 {
     $conf = new xp·scriptlet·WebConfiguration($conf);
     foreach ($conf->mappedApplications($this->profile) as $url => $application) {
         $this->mapApplication($url, $application);
     }
 }
示例#2
0
 /**
  * Entry point method. Gets passed the following arguments from "xpws -i":
  * <ol>
  *   <li>The web root - defaults to $CWD</li>
  *   <li>The configuration directory - defaults to "etc"</li>
  *   <li>The server profile - default to "dev"</li>
  *   <li>The server address - default to "localhost:8080"</li>
  * </ol>
  *
  * @param   string[] args
  */
 public static function main(array $args)
 {
     $webroot = isset($args[0]) ? realpath($args[0]) : getcwd();
     $configd = isset($args[1]) ? $args[1] : 'etc';
     $profile = isset($args[2]) ? $args[2] : 'dev';
     $address = isset($args[3]) ? $args[3] : 'localhost:8080';
     Console::writeLine('xpws-', $profile, ' @ ', $address, ', ', $webroot, ' {');
     // Dump configured applications
     $conf = new xp·scriptlet·WebConfiguration(new Properties($configd . DIRECTORY_SEPARATOR . 'web.ini'));
     foreach ($conf->mappedApplications($profile) as $url => $app) {
         Console::writeLine('  Route<', $url, '*> => ', xp::stringOf($app, '  '));
     }
     Console::writeLine('}');
 }