Pwic.wiki 1.0-rc8
Pwic.wiki is a flexible and compact wiki server to support the documentation of your projects. It is based on Python, SQLite and Markdown.
This new big release brings to you the following features :
- Default support for HTML
- Import ODT files to Markdown
- Shortcuts for the editor
- Auto-table from the clipboard
- List of emojis
- Spoilers
- Sortable tables
- Copyable code blocks
- Annotations for the export to ODT
- Cache regeneration
- New options
- New enhancements points
- Stronger code base
Unless you start from this new release :
- You must convert your existing database with the command
python3 pwic_admin.py execute-sql:
DROP TRIGGER audit_archiver;
DROP TRIGGER audit_no_update;
ALTER TABLE audit.audit RENAME COLUMN revision TO reference;
ALTER TABLE audit.audit_arch RENAME COLUMN revision TO reference;
CREATE TRIGGER audit.audit_no_update BEFORE UPDATE ON audit.audit BEGIN SELECT RAISE (ABORT, 'The table AUDIT should not be modified'); END;
CREATE TRIGGER audit.audit_archiver BEFORE DELETE ON audit BEGIN INSERT INTO audit_arch SELECT * FROM audit WHERE id = OLD.id; END;- Regenerate your cache :
python3 pwic_admin.py clear-cache
python3 pwic_admin.py regenerate-cacheYou can test the new release online at https://pwic.wiki !
Use our bug tracker if you have any question, idea, or issue.
The YouTube channel includes few videos already, and will grow over the time.