summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xnocompile/bin/decode_html_entities1
-rwxr-xr-xnocompile/bin/encode_html_entities3
-rwxr-xr-xnocompile/bin/fontbuild.sh2
-rwxr-xr-xnocompile/bin/mime-type12
-rw-r--r--src/bin/fontbuild.c21
-rw-r--r--src/bin/fontdump.c19
6 files changed, 52 insertions, 6 deletions
diff --git a/nocompile/bin/decode_html_entities b/nocompile/bin/decode_html_entities
index 08bd7c9..dea945a 100755
--- a/nocompile/bin/decode_html_entities
+++ b/nocompile/bin/decode_html_entities
@@ -1,4 +1,5 @@
#!/bin/sh
sed "s/\>/>/g" \
| sed "s/\&lt;/</g" \
+ | sed 's/\&quot;/"/g' \
| sed "s/\&amp;/\&/g"
diff --git a/nocompile/bin/encode_html_entities b/nocompile/bin/encode_html_entities
index 4cb1836..e2bcf30 100755
--- a/nocompile/bin/encode_html_entities
+++ b/nocompile/bin/encode_html_entities
@@ -1,4 +1,5 @@
#!/bin/sh
sed "s/&/\&amp;/g" \
| sed "s/</\&lt;/g" \
- | sed "s/>/\&gt;/g"
+ | sed "s/>/\&gt;/g" \
+ | sed 's/"/\&quot;/g'
diff --git a/nocompile/bin/fontbuild.sh b/nocompile/bin/fontbuild.sh
new file mode 100755
index 0000000..cd16ec8
--- /dev/null
+++ b/nocompile/bin/fontbuild.sh
@@ -0,0 +1,2 @@
+#!/bin/sh
+grep -v ^0 | tr -d '\n' | fontbuild
diff --git a/nocompile/bin/mime-type b/nocompile/bin/mime-type
index 2b1bad0..83dc116 100755
--- a/nocompile/bin/mime-type
+++ b/nocompile/bin/mime-type
@@ -1,13 +1,15 @@
#!/bin/sh
-TYPE="$(file -b --mime-type $1)"
-MAIN="$(echo "${TYPE}" | cut -d/ -f1)"
-SUB="$(echo "${TYPE}" | cut -d/ -f2)"
+EXT="$(printf "%s" "$1" | rev | cut -d. -f1 | rev)"
+TYPE="$(file -b --mime-type "$1")"
+MAIN="$(printf "%s" "${TYPE}" | cut -d/ -f1)"
+SUB="$(printf "%s" "${TYPE}" | cut -d/ -f2)"
if [ "_${MAIN}" = "_inode" ];then
- printf "text/plain\r\n"
-# printf "this is a directory or symlink! wtf?!?" #ssssshhhhh
TYPE="text/plain"
fi
if [ "_${MAIN}" = "_text" -a "_${SUB}" != "_html" ];then
TYPE="text/plain"
fi
+if [ "_${EXT}" = "_css" ];then
+ TYPE="text/css"
+fi
printf "%s\r\n" "$TYPE"
diff --git a/src/bin/fontbuild.c b/src/bin/fontbuild.c
new file mode 100644
index 0000000..b4a212a
--- /dev/null
+++ b/src/bin/fontbuild.c
@@ -0,0 +1,21 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int main(int argc,char *argv[]) {
+ int i,j,k;
+ int height=8;
+ int width=8;
+ char line;
+ char *map=malloc(width);
+ for(i=0;i<256;i++) {
+ for(j=0;j<height;j++) {
+ read(0,map,width);
+ line=0;
+ for(k=0;k<8;k++) {
+ line|=((map[7-k]=='#')<<k);
+ }
+ printf("%c",line);
+ }
+ }
+ return 0;
+}
diff --git a/src/bin/fontdump.c b/src/bin/fontdump.c
new file mode 100644
index 0000000..eb481d0
--- /dev/null
+++ b/src/bin/fontdump.c
@@ -0,0 +1,19 @@
+#include <stdio.h>
+#include <stdlib.h>
+
+int main(int argc,char *argv[]) {
+ int i,j,k;
+ int height=argc>1?atoi(argv[1]):8;
+ char *map=malloc(height);
+ for(i=0;i<256;i++) {
+ printf("0x%02x (%3d) '%c'\n",i,i,isprint(i)?i:'?');
+ read(0,map,height);
+ for(j=0;j<height;j++) {
+ for(k=7;k>=0;k--) {
+ printf("%c",(map[j]>>k&1)?'#':' ');
+ }
+ printf("\n");
+ }
+ }
+ return 0;
+}