mirror of
https://github.com/michaelrsweet/mxml.git
synced 2025-02-22 18:05:31 +00:00
Add format_text() function to convert from plain text to HTML. Drop FAQ page, the articles page will do it.
13 lines
162 B
Bash
Executable File
13 lines
162 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if test -f mxml.db; then
|
|
rm -f mxml.db.old
|
|
mv mxml.db mxml.db.old
|
|
fi
|
|
|
|
sqlite mxml.db <mxml.sql
|
|
|
|
chmod 775 .
|
|
chmod 664 mxml.db
|
|
chgrp apache . mxml.db
|