Collection of themes/skins for the Fossil SCM

⌈⌋ ⎇ branch:  Fossil Skins Extra


Check-in [f6b70114ca]

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:fix PMD extraction regex
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: f6b70114ca2cb92cbf9f5e9e428a6c678b6ac5ad
User & Date: mario 2021-04-05 18:44:43
Context
2021-04-06
11:52
Update comments on user.* table. check-in: ab76ada131 user: mario tags: trunk
2021-04-05
18:44
fix PMD extraction regex check-in: f6b70114ca user: mario tags: trunk
18:44
Embedded version of phpLiteAdmin for cgi extroot usage. check-in: 67fa6971f4 user: mario tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to extroot/index.

29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
    }
    return $ls;
}

#-- rough plugin meta data reading
function meta($fn) {
    $src = file_get_contents($fn, false, NULL, 0, 1024);
    preg_match_all("/^\s{0,2}[#*/]+\s{0,2}([\w\-]+):\s*(.+)\n/m", $src, $uu);
    return array_combine($uu[1], $uu[2]);
}

#-- run
page_md("## Extensions\n\n");
foreach (ls(__DIR__) as $fn) {
    $meta = meta($fn);







|







29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
    }
    return $ls;
}

#-- rough plugin meta data reading
function meta($fn) {
    $src = file_get_contents($fn, false, NULL, 0, 1024);
    preg_match_all("~^\s{0,2}[#*\/]+\s{0,2}([\w\-]+):\s*(.+)\n~m", $src, $uu);
    return array_combine($uu[1], $uu[2]);
}

#-- run
page_md("## Extensions\n\n");
foreach (ls(__DIR__) as $fn) {
    $meta = meta($fn);