Webkit on Leopard is old and not updated anymore. The Leopard Webkit project provides current builds of Webkit compatible with PPC Leopard and even started implementing some of the updated javascriptcore. To use this framework there is a droplet in the installer but doesn't work for some apps and doesn't work for Fluid apps specifically. I found a way to use the framework that has worked for every app I've tried.
In terminal to make any apps use Webkit Nightly (in this example I use a Fluid SSB app called Application.app)
where Application.app is the name of the app for which you want to use Webkit Nightly.
This will list the Unix executable for the application
where FluidInstance is the executable you found with ls
In vim Press s Type or paste in the following:
Where "FluidInstance" is the executable from the second step above
Press Escape, then :w, then :q
Credit goes to http://brettterpstra.com/2011/03/28/make-cssedit-use-the-latest-webkit-nightly-every-time/ for the basic outline I adapted from how to do this for CSSEdit.
In terminal to make any apps use Webkit Nightly (in this example I use a Fluid SSB app called Application.app)
Code:
$ cd Applications/Application.app/Contents/MacOS
Code:
$ ls
Code:
$ mv FluidInstance _FluidInstance
Code:
$ vim FluidInstance
Code:
#!/bin/bash
env DYLD_FRAMEWORK_PATH=/Applications/WebKit.app/Contents/Frameworks/10.5/ WEBKIT_UNSET_DYLD_FRAMEWORK_PATH=YES /Applications/Application.app/Contents/MacOS/_FluidInstance
Press Escape, then :w, then :q
Code:
$ chmod a+x FluidInstance
Credit goes to http://brettterpstra.com/2011/03/28/make-cssedit-use-the-latest-webkit-nightly-every-time/ for the basic outline I adapted from how to do this for CSSEdit.
Last edited: