1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-14 06:45:51 +01:00

Fix help on FF3, overly long URL chains in context filenames, etc.

This commit is contained in:
Kris Maglione
2011-01-13 18:26:27 -05:00
parent 3e85415890
commit f0dbc8f2f0
8 changed files with 23 additions and 30 deletions

View File

@@ -1,9 +1,7 @@
BEGIN {
chrome = "chrome"
if (suffix) {
if (suffix)
chrome = suffix
print "# Suffix: " suffix
}
}
{ content = $1 ~ /^(content|skin|locale|resource)$/ }
content && $NF ~ /^[a-z]/ { $NF = "/" name "/" $NF }
@@ -17,10 +15,6 @@ content {
{
sub("^\\.\\./common/", "", $NF)
print
if (content && suffix && $1 == "resource") {
$2 = $2 "-" suffix
print
}
}
# vim:se sts=4 sw=4 et ft=awk: