Subversion Repositories general

Compare Revisions

Ignore whitespace Rev 1328 → Rev 1329

/mozilla/movetofolder/trunk/src/install.rdf
8,6 → 8,7
<em:version>1.0</em:version>
<em:type>2</em:type>
 
<!-- thunderbird -->
<em:targetApplication>
<Description>
<em:id>{3550f703-e582-4d05-9a08-453d09bdfdc6}</em:id>
19,7 → 20,9
<em:name>MoveToFolder</em:name>
<em:description>Move selected messages to configured folder</em:description>
<em:creator>Anatoli Klassen</em:creator>
<em:homepageURL>http://www.26th.net/public/projects/movetofolder</em:homepageURL>
<em:homepageURL>http://www.26th.net/public/projects/mozilla/movetofolder/</em:homepageURL>
<em:optionsURL>chrome://movetofolder/content/options.xul</em:optionsURL>
<em:updateURL>http://www.26th.net/public/projects/mozilla/update.rdf</em:updateURL>
<em:updateKey>MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQD0n3FJvEygIzLWtleG7RQGsW33KlWt2CEKm4cNdyYtos2PXb68ZwMIGDduDeAdv0kg90Y2vnHpEgJwE4O6Ce6bfjxQWNbCWj6UgjRaosuzqKq4+BBwT65hMcIs72K1x3zQde6oNBsnYiEP18Cy7aY26+QA7M/vcOY5Rut66xYcjQIDAQAB</em:updateKey>
</Description>
</RDF>
/mozilla/movetofolder/trunk/bin/deploy.sh
2,14 → 2,16
 
T="$1"
D="$(dirname $0)/.."
P=mozilla/movetofolder
N=movetofolder.xpi
 
if [ -z "$T" ] ; then
echo "Need one parameter - the target dir" >> /dev/stderr
echo "Need one parameter - the target web dir" >> /dev/stderr
return 1
fi
 
rm -f "$T/selsearch.xpi"
(cd "$D/src"; find . -not -path '*/.svn*' | zip -@ "$T/selsearch.xpi")
rm -f "$T/$P/$N"
(cd "$D/src"; find . -not -path '*/.svn*' | zip -@ - ) > "$T/$P/$N"
 
cp "$D/update.rdf" "$T"
cp "$D/update.rdf" "$T/$P"