lithium3

Check-in [0106e2c1b7]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:lithium-dispatchers: make the new text replacement filter available
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 0106e2c1b717de4986e9285e0c06095153ec4e70
User & Date: nat 2017-05-29 21:39:36
Context
2017-05-30
20:50
lithium-access_log: add a column for the forward protocol check-in: de8fe7bf8c user: nat tags: trunk
2017-05-29
21:39
lithium-dispatchers: make the new text replacement filter available check-in: 0106e2c1b7 user: nat tags: trunk
2017-01-26
20:46
lithium-access_log: update the main table to refer to the string tables check-in: c4f1cd36e1 user: nat tags: trunk
Changes
Hide Diffs Unified Diffs Ignore Whitespace Patch

Changes to src/lithium-dispatchers.adb.

16
17
18
19
20
21
22

23
24
25
26
27
28
29

with Ada.Real_Time;
with Natools.Web.Backends.Filesystem;
with Natools.Web.Escapes.Filters;
with Natools.Web.Exchanges;
with Natools.Web.Filters.Pass_Through;
with Natools.Web.Filters.Text_Blocks;

with Natools.Web.Reload_Pages;
with Natools.Web.Simple_Pages.Markdown_Pages;
with Natools.Web.Simple_Pages.Markdown_Multipages;
with Natools.Web.Tag_Pages;

with Lithium.Access_Log;
with Lithium.Legacy_Filters;







>







16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

with Ada.Real_Time;
with Natools.Web.Backends.Filesystem;
with Natools.Web.Escapes.Filters;
with Natools.Web.Exchanges;
with Natools.Web.Filters.Pass_Through;
with Natools.Web.Filters.Text_Blocks;
with Natools.Web.Filters.Text_Replacement;
with Natools.Web.Reload_Pages;
with Natools.Web.Simple_Pages.Markdown_Pages;
with Natools.Web.Simple_Pages.Markdown_Multipages;
with Natools.Web.Tag_Pages;

with Lithium.Access_Log;
with Lithium.Legacy_Filters;
89
90
91
92
93
94
95


96
97
98
99
100
101
102
103
104
        ("extended-markdown", Lithium.Markdown.Filters.Create_Extended'Access);
      Holder.Register
        ("html-escape", Natools.Web.Escapes.Filters.Create'Access);
      Holder.Register
        ("legacy-comment", Lithium.Legacy_Filters.Create'Access);
      Holder.Register
        ("pass-through", Natools.Web.Filters.Pass_Through.Create'Access);


      Holder.Register
        ("text-block", Natools.Web.Filters.Text_Blocks.Create'Access);

      Holder.Load (File_Name);

      return Result;
   end Create;

end Lithium.Dispatchers;







>
>









90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
        ("extended-markdown", Lithium.Markdown.Filters.Create_Extended'Access);
      Holder.Register
        ("html-escape", Natools.Web.Escapes.Filters.Create'Access);
      Holder.Register
        ("legacy-comment", Lithium.Legacy_Filters.Create'Access);
      Holder.Register
        ("pass-through", Natools.Web.Filters.Pass_Through.Create'Access);
      Holder.Register
        ("replace-text", Natools.Web.Filters.Text_Replacement.Create'Access);
      Holder.Register
        ("text-block", Natools.Web.Filters.Text_Blocks.Create'Access);

      Holder.Load (File_Name);

      return Result;
   end Create;

end Lithium.Dispatchers;