Hey page speed developers and hackers,
I was wondering if page speed will continue to embed a max version in
it's install.rdf while Firefox has lowered up it's shipping interval
(to 6 weeks it seems like)? I recently wanted to use page speed with
Firefox Aurora (which is currently 7.0a2) and I found that just
changing the maxVersion to * allowed me to use it (as I had a guess
Firefox 7.* wouldn't really operate much different than 6.*).
Is the reason we're not just trusting future versions because of a
lack of QA/testing? Why not remove this maxVersion if it will be a
pain to update?
Just wondering,
Dan Beam
db...@google.com
P.S. The steps for hackers to allow this to work in 7.* (and above)
are given in 1 (split-up) line of bash (tried from OS X):
prevdir=$(pwd) && \
tmpdir=$(mktemp -d -t page-speed) && \
cd "$tmpdir" && \
curl -sO
https://dl-ssl.google.com/page-speed/current/page-speed.xpi
&& \
unzip -q page-speed.xpi -d page-speed && \
sed -ire 's/maxVersion>6\.\*/maxVersion>\*/' page-speed/install.rdf
&& \
cd page-speed && \
zip -qr "$prevdir/page-speed-aurora.xpi" . && \
cd "$prevdir" && \
rm -rf $tmpdir && \
echo "Drag and drop $prevdir/page-speed-aurora.xpi to Firefox to
install";
P.P.S. NOTE: You'll need Firebug installed before you install page
speed (which you can get at
getfirebug.com or specifically [for the
moment] at
http://getfirebug.com/releases/firebug/1.9/firebug-1.9.0a0.xpi).