Files
ROC/modules/wikitext/wikitext_format.e
Jocelyn Fiat 2d698f604b Extracted page support from cms_node_module, and add a proper CMS_PAGE_MODULE.
- now, the CMS_PAGE_MODULE has to be declared in the related CMS_SETUP via CMS_EXECUTION.
   (See demo for example)

Improved the export facilities.
  Implemented blog and page export.
Added import facilities.
  Implemented blog and page import.

Improved node revision web interface (allow to edit a past revision, in order to restore it as latest revisionm i.e current).
Removed specific tag from blog module, and reuse the taxonomy module for that purpose.

Added WIKITEXT module that provide a WIKITEXT_FILTER, so now we can have wikitext content.
   - for now, no support for wiki links such as [[Foobar]].
2017-01-20 16:05:40 +01:00

33 lines
458 B
Plaintext

note
description: "Summary description for {WIKITEXT_FORMAT}."
date: "$Date$"
revision: "$Revision$"
class
WIKITEXT_FORMAT
inherit
CONTENT_FORMAT
redefine
default_create
end
feature {NONE} -- Initialization
default_create
do
Precursor
create filters.make (1)
filters.force (create {WIKITEXT_FILTER})
end
feature -- Access
name: STRING = "wikitext"
title: STRING_8 = "Wikitext"
filters: ARRAYED_LIST [CONTENT_FILTER]
end