15
15
this file in the same location as loader.php.
16
16
17
17
Note: If the phploader directory does not live in the webserver's root
18
- folder then modify the PATH_TO_LOADER variable in combo.php accordingly
18
+ folder then modify the PATH_TO_LIB variable accordingly
19
19
20
20
2. Download and extract each version of YUI you intend to support into
21
21
the phploader/lib directory.
26
26
etc...
27
27
*/
28
28
29
+ require "./combo_functions.inc.php " ;
30
+
29
31
//Web accessible path to the YUI PHP loader lib directory (Override as needed)
30
- define ("PATH_TO_LOADER " , server () . "/phploader/lib/ " );
32
+ define ("PATH_TO_LIB " , server () . "/phploader/lib/ " );
31
33
32
34
//APC Configuration
33
35
define ("APC_AVAIL " , function_exists ('apc_fetch ' ) ? true : false );
34
36
define ("APC_TTL " , 0 );
35
37
36
- //server(): Computes the base URL of the current page (protocol, server, path)
37
- //credit: http://code.google.com/p/simple-php-framework/ (modified version of full_url), license: MIT
38
- function server ()
39
- {
40
- $ s = getenv ('HTTPS ' ) ? '' : (getenv ('HTTPS ' ) == 'on ' ) ? 's ' : '' ;
41
- $ protocol = substr (strtolower (getenv ('SERVER_PROTOCOL ' )), 0 , strpos (strtolower (getenv ('SERVER_PROTOCOL ' )), '/ ' )) . $ s ;
42
- $ port = (getenv ('SERVER_PORT ' ) == '80 ' ) ? '' : (": " .getenv ('SERVER_PORT ' ));
43
- return $ protocol . ":// " . getenv ('HTTP_HOST ' ) . $ port ;
44
- }
45
-
46
38
$ queryString = getenv ('QUERY_STRING ' ) ? urldecode (getenv ('QUERY_STRING ' )) : '' ;
47
39
if (isset ($ queryString ) && !empty ($ queryString )) {
48
40
$ yuiFiles = explode ("& " , $ queryString );
49
41
$ contentType = strpos ($ yuiFiles [0 ], ".js " ) ? 'application/x-javascript ' : ' text/css ' ;
50
42
51
43
$ cache = false ;
52
44
if (APC_AVAIL === true ) {
53
- $ cache = apc_fetch ('combo: ' .$ queryString );
45
+ // $cache = apc_fetch('combo:'.$queryString);
54
46
}
55
47
56
48
if ($ cache ) {
@@ -68,8 +60,15 @@ function server()
68
60
69
61
include ("./loader.php " );
70
62
$ loader = new YAHOO_util_Loader ($ yuiVersion );
71
- $ base = PATH_TO_LOADER . $ yuiVersion . "/build/ " ;
72
- $ loader ->base = $ base ;
63
+ $ base = PATH_TO_LIB . $ yuiVersion . "/build/ " ;
64
+ $ baseWithoutBuild = PATH_TO_LIB . $ yuiVersion . "/ " ;
65
+ $ loader ->base = $ base ;
66
+
67
+ //Verify this version of the library exists locally
68
+ $ localPathToBuild = "../lib/ " . $ yuiVersion . "/build/ " ;
69
+ if (file_exists ($ localPathToBuild ) === false || is_readable ($ localPathToBuild ) === false ) {
70
+ die ('<!-- Unable to locate the YUI build directory! --> ' );
71
+ }
73
72
74
73
//Detect and load the required components now
75
74
$ yuiComponents = array ();
@@ -97,11 +96,30 @@ function server()
97
96
}
98
97
echo $ rawScript ;
99
98
} else {
100
- $ rawCSS = $ loader ->css_raw ();
101
- //Handle image path corrections
102
- $ rawCSS = preg_replace ('/((url\()(\w+)(.*);)/ ' , '${2} ' . $ base . '${3}${4} ' , $ rawCSS ); // subdirs
103
- $ rawCSS = preg_replace ('/(\.\.\/)+/ ' , $ base , $ rawCSS ); // relative pathes
104
- $ rawCSS = str_replace ("url(/ " , "url( $ base " , $ rawCSS ); // url(/whatever)
99
+ $ rawCSS = '' ;
100
+ $ cssResourceList = $ loader ->css_data ();
101
+ foreach ($ cssResourceList ["css " ] as $ cssResource =>$ val ) {
102
+ foreach ($ cssResourceList ["css " ][$ cssResource ] as $ key =>$ value ) {
103
+ $ crtResourceBase = substr ($ key , 0 , strrpos ($ key , "/ " ) + 1 );
104
+ $ crtResourceContent = $ loader ->getRemoteContent ($ key );
105
+
106
+ //Handle image path corrections (order is important)
107
+ $ crtResourceContent = preg_replace ('/((url\()(\w+)(.*);)/ ' , '${2} ' . $ crtResourceBase . '${3}${4} ' , $ crtResourceContent ); // subdirs (e.g) url(foo/foo.png)
108
+ $ crtResourceContent = preg_replace ('/(url\([^\.\/]\))+/ ' , $ crtResourceBase , $ crtResourceContent ); // just filename (e.g.) url(picker_mask.png)
109
+ $ crtResourceContent = str_replace ("url(/ " , "url( $ crtResourceBase " , $ crtResourceContent ); // slash filename (e.g.) url(/whatever)
110
+ $ crtResourceContent = preg_replace ('/(\.\.\/)+/ ' , $ crtResourceBase , $ crtResourceContent ); // relative pathes (e.g.) url(../../foo.png)
111
+ $ crtResourceContent = preg_replace_callback (
112
+ '/AlphaImageLoader\(src=[ \'"](.*?)[ \'"]/ ' ,
113
+ 'alphaImageLoaderPathCorrection ' ,
114
+ $ crtResourceContent
115
+ ); // AlphaImageLoader relative pathes (e.g.) AlphaImageLoader(src='../../foo.png')
116
+
117
+ $ rawCSS .= $ crtResourceContent ;
118
+ }
119
+ }
120
+
121
+ //Cleanup build path dups caused by relative pathes that already included the build directory
122
+ $ rawCSS = str_replace ("/build/build/ " , "/build/ " , $ rawCSS );
105
123
106
124
if (APC_AVAIL === true ) {
107
125
apc_store ('combo: ' .$ queryString , $ rawCSS , APC_TTL );
0 commit comments