ultimix
index.php
Go to the documentation of this file.
1 <?php
2 
3  /*
4  * This source code is a part of the Ultimix Project.
5  * It is distributed under BSD licence. All other third side source code (like tinyMCE) is distributed under
6  * it's own licence wich could be found from the corresponding files or sources.
7  * This source code is provided "as is" without any warranties or garanties.
8  *
9  * Have a nice day!
10  *
11  * @url http://ultimix.sorceforge.net
12  *
13  * @author Alexey "gdever" Dodonov
14  */
15 
16  try
17  {
18  require_once( './include/php/startup.php' );
19 
20  //TODO: permit search don't work (+unit-test)
21  //TODO: group search don't work (+unit-test)
22  //TODO: postprocess *.html files as they were generated by page_composer, this make
23  //possible using of a framework withow php-programming skills just data-driven development
24  //TODO: add smart responder subscription form
25 
26  index_main();
27  }
28  catch( Exception $e )
29  {
30  handle_script_error( true , $e );
31  }
32 
33 ?>