Changeset 157989 in webkit
- Timestamp:
- Oct 24, 2013, 9:43:19 PM (12 years ago)
- Location:
- trunk/Websites/test-results
- Files:
-
- 1 added
- 1 deleted
- 2 edited
- 1 copied
- 7 moved
-
ChangeLog (modified) (1 diff)
-
config.json (copied) (copied from trunk/Websites/test-results/include/config.json )
-
public (added)
-
public/admin (moved) (moved from trunk/Websites/test-results/admin )
-
public/api (moved) (moved from trunk/Websites/test-results/api )
-
public/common.css (moved) (moved from trunk/Websites/test-results/common.css )
-
public/include (moved) (moved from trunk/Websites/test-results/include )
-
public/include/config.json (deleted)
-
public/include/db.php (modified) (1 diff)
-
public/index.html (moved) (moved from trunk/Websites/test-results/index.html )
-
public/js (moved) (moved from trunk/Websites/test-results/js )
-
public/main.css (moved) (moved from trunk/Websites/test-results/main.css )
Legend:
- Unmodified
- Added
- Removed
-
trunk/Websites/test-results/ChangeLog
r157988 r157989 1 2013-10-24 Ryosuke Niwa <rniwa@webkit.org> 2 3 Move everything except ChangeLog and config.json into public directory. 4 https://bugs.webkit.org/show_bug.cgi?id=123319 5 6 Rubber-stamped by Stephanie Lewis. 7 8 * admin: Removed. 9 * admin/admin.css: Removed. 10 * admin/builders.php: Removed. 11 * admin/index.php: Removed. 12 * admin/repositories.php: Removed. 13 * api: Removed. 14 * api/failing-tests.php: Removed. 15 * api/manifest.php: Removed. 16 * api/report.php: Removed. 17 * api/results.php: Removed. 18 * common.css: Removed. 19 * config.json: Copied from include/config.json. 20 * include: Removed. 21 * include/admin-footer.php: Removed. 22 * include/admin-header.php: Removed. 23 * include/config.json: Removed. 24 * include/db.php: Removed. 25 * include/init-database.sql: Removed. 26 * include/json-shared.php: Removed. 27 * include/test-results.php: Removed. 28 * index.html: Removed. 29 * js: Removed. 30 * js/autocompleter.js: Removed. 31 * js/build.js: Removed. 32 * js/dom.js: Removed. 33 * main.css: Removed. 34 * public: Added. 35 * public/admin: Copied from admin. 36 * public/api: Copied from api. 37 * public/common.css: Copied from common.css. 38 * public/include: Copied from include. 39 * public/include/config.json: Removed. 40 * public/include/db.php: 41 * public/index.html: Copied from index.html. 42 * public/js: Copied from js. 43 * public/main.css: Copied from main.css. 44 1 45 2013-10-24 Ryosuke Niwa <rniwa@webkit.org> 2 46 -
trunk/Websites/test-results/public/include/db.php
r157988 r157989 30 30 global $_config; 31 31 if (!$_config) 32 $_config = json_decode(file_get_contents(dirname(__FILE__) . '/ config.json'), true);32 $_config = json_decode(file_get_contents(dirname(__FILE__) . '/../../config.json'), true); 33 33 return $_config[$key]; 34 34 }
Note:
See TracChangeset
for help on using the changeset viewer.