Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F1032948
in-portal
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, Jun 19, 12:53 PM
Size
1 KB
Mime Type
text/x-diff
Expires
Sat, Jun 21, 12:53 PM (51 m, 34 s)
Engine
blob
Format
Raw Data
Handle
667455
Attached To
rINP In-Portal
in-portal
View Options
Index: branches/unlabeled/unlabeled-1.23.2/index.php
===================================================================
--- branches/unlabeled/unlabeled-1.23.2/index.php (nonexistent)
+++ branches/unlabeled/unlabeled-1.23.2/index.php (revision 6648)
@@ -0,0 +1,26 @@
+<?php
+
+$start = getmicrotime();
+
+define('FULL_PATH', realpath(dirname(__FILE__)));
+
+if (!file_exists(FULL_PATH.'/core/kernel/application.php')) {
+ die('Please re-checkout _inportal_kernel4 cvs module into the root directory ('.FULL_PATH.') and remove kernel/kernel4 folder');
+}
+include_once(FULL_PATH.'/core/kernel/startup.php');
+
+$application =& kApplication::Instance();
+$application->Init();
+$application->Run();
+$application->Done();
+
+$end = getmicrotime();
+
+//print_pre(get_included_files());
+
+function getmicrotime()
+{
+ list($usec, $sec) = explode(" ", microtime());
+ return ((float)$usec + (float)$sec);
+}
+?>
\ No newline at end of file
Property changes on: branches/unlabeled/unlabeled-1.23.2/index.php
___________________________________________________________________
Added: cvs2svn:cvs-rev
## -0,0 +1 ##
+1.23
\ No newline at end of property
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Event Timeline
Log In to Comment