some work on integrating ckeditor4

added ezc blocks: ckeditor_old_browsers_support, ckeditor, ckeditor_small
defined in ckeditor.html



git-svn-id: svn://ttmath.org/publicrep/winix/trunk@1109 e52654a7-88a9-db11-a3e9-0013d4bc506e
This commit is contained in:
2018-05-10 17:21:39 +00:00
parent dcc6d35cba
commit aa58faf145
8 changed files with 226 additions and 67 deletions

View File

@@ -5,7 +5,7 @@
*/
/*
* Copyright (c) 2008-2016, Tomasz Sowa
* Copyright (c) 2008-2018, Tomasz Sowa
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -432,6 +432,11 @@ void item_meta(Info & i)
}
void item_meta_noescape(Info & i)
{
space_value(i, cur->request->last_item->meta, false);
}
void item_meta_tab(Info & i)
@@ -859,6 +864,11 @@ void item_tab_meta(Info & i)
space_value(i, cur->request->item_tab[item_index].meta);
}
void item_tab_meta_noescape(Info & i)
{
if( item_index < cur->request->item_tab.size() )
space_value(i, cur->request->item_tab[item_index].meta, false);
}
void item_tab_meta_tab(Info & i)
{