Skip to content

Pwic.wiki 1.0-rc8

Choose a tag to compare

@gitbra gitbra released this 14 Jun 21:35
· 67 commits to master since this release

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 :

  1. 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;
  1. Regenerate your cache :
python3 pwic_admin.py clear-cache
python3 pwic_admin.py regenerate-cache

You 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.