]> git.r.bdr.sh - rbdr/mobius/commitdiff
Re-enable additional file types after fixing trailing whitespace
authorJeff Halter <redacted>
Tue, 31 May 2022 18:49:28 +0000 (11:49 -0700)
committerJeff Halter <redacted>
Tue, 31 May 2022 18:49:28 +0000 (11:49 -0700)
hotline/file_types.go

index 269c1a3f1c2fc4e2546fc2ea9fb80f7090f396e8..0a2fa932c3070b04d6f1c25abdc3800caf6e8721 100644 (file)
@@ -19,10 +19,10 @@ var fileTypes = map[string]fileType{
                TypeCode:    "PDF ",
                CreatorCode: "CARO",
        },
-       // "gif": {
-       //      TypeCode:    "GIFf",
-       //      CreatorCode: "ogle",
-       // },
+       "gif": {
+               TypeCode:    "GIFf",
+               CreatorCode: "ogle",
+       },
        "txt": {
                TypeCode:    "TEXT",
                CreatorCode: "ttxt",
@@ -32,27 +32,27 @@ var fileTypes = map[string]fileType{
                CreatorCode: "SITx",
        },
        "tgz": {
-               TypeCode:    "Gzip ",
+               TypeCode:    "Gzip",
+               CreatorCode: "SITx",
+       },
+       "hqx": {
+               TypeCode:    "TEXT",
                CreatorCode: "SITx",
        },
-       // "hqx": {
-       //      TypeCode:    "TEXT ",
-       //      CreatorCode: "SITx",
-       // },
-       // "jpg": {
-       //      TypeCode:    "JPEG ",
-       //      CreatorCode: "ogle",
-       // },
-       // "img": {
-       //      TypeCode:    "rohd ",
-       //      CreatorCode: "ddsk",
-       // },
-       // "sea": {
-       //      TypeCode:    "APPL ",
-       //      CreatorCode: "aust",
-       // },
-       // "mov": {
-       //      TypeCode:    "MooV ",
-       //      CreatorCode: "TVOD",
-       // },
+       "jpg": {
+               TypeCode:    "JPEG",
+               CreatorCode: "ogle",
+       },
+       "img": {
+               TypeCode:    "rohd",
+               CreatorCode: "ddsk",
+       },
+       "sea": {
+               TypeCode:    "APPL",
+               CreatorCode: "aust",
+       },
+       "mov": {
+               TypeCode:    "MooV",
+               CreatorCode: "TVOD",
+       },
 }