Журнал изменений

Журнал изменений

Фильтр и поиск

Всего: 1045 Доступных коммитов | Отфильтровано: 1045 Коммиты | Страница: 50 / 105
13.04.2026
Chore: remove legacy standalone plugins/codemirror
Автор: Eduard Laas | Дата: 23:18 13.04.2026

The standalone CodeMirror bundle is superseded by the CodeMirror editor driver inside plugins/editors/codemirror/, which is loaded on demand by the Editor class. The old top-level directory was no longer referenced by any active code path after the editor system migration.

Core changes:

  1. Legacy CodeMirror bundle (plugins/codemirror/):
  2. Remove 5.x standalone distribution (lib, addon, mode, theme, keymap)

    • Active CodeMirror 6.x driver lives in plugins/editors/codemirror/
    • No remaining references from core, admin, or module code

Benefits:

  • Eliminates dead asset tree from the repository
  • Prevents confusion between the legacy standalone and the active driver

Technical notes:

  • plugins/editors/codemirror/ and its manifest.json are unaffected
Refactor: editor system integration — replace legacy editor dispatch
Автор: Eduard Laas | Дата: 23:17 13.04.2026

Replaces the hardcoded redaktor/editor integer flag system with the pluggable Editor class. Legacy functions textarea_code(), redaktor(), datetime(), getUserSearch() are removed; textarea() and getAjaxTextarea() now delegate to Editor::getContent(). encode_php() (syntax=2) now renders highlight.js blocks instead of SyntaxHighlighter. Config key 'redaktor' removed; editor config now lives under 'editor.user/admin/code'.

Core changes:

  1. Runtime bootstrap (core/system.php):
  2. Move Editor bootstrap before security.php to ensure availability
  3. Add getEditorKey(), checkHtmlEditor(), getEditorMode() helpers
  4. Rewrite textarea() to call Editor::getContent() via driver dispatch
  5. Remove textarea_code(), redaktor(), getUserSearch(), datetime()
  6. encode_php() syntax=2: emit highlight.js markup, map language aliases
  7. ad_save(), categorySelectOption(), editorFilePreview(): use $tpl frags
  8. Admin runtime (core/admin.php, core/classes/editor.php):
  9. Minor adjustments to editor key resolution and admin context
  10. Admin modules (admin/modules/*.php):
  11. editor.php: migrate to Editor::getCode() and Editor::getSelect()
  12. config.php: remove 'redaktor', update css_f default to highlightjs
  13. admins.php, newsletter.php: clean up editor field rendering
  14. Frontend modules (modules/*/admin/index.php, account, forum, rss):
  15. Migrate textarea_code() calls to Editor::getCode()
  16. Remove redaktor() dropdown calls; use Editor::getSelect()
  17. faq, files, help, jokes, links, media, money, news, order, pages, shop, voting
  18. Config (config/global.php, config/local.php):
  19. Remove 'redaktor' key from global config
  20. Update css_f from syntaxhighlighter path to highlightjs/slaed-theme.css
  21. Update base_fingerprint after asset changes

Benefits:

  • Editor selection is now data-driven via manifest.json, not integer flags
  • Removes ~150 lines of hardcoded editor branching from system.php
  • Single dispatch point; adding a new editor requires only a driver file

Technical notes:

  • Old admin[3] integer flags (0-4) are fully retired
  • checkHtmlEditor() replaces the (editor==1) trust check for HTML input
  • All admin modules continue to function identically from user perspective
Feature: add highlight.js 11.x as syntax highlighter for code blocks
Автор: Eduard Laas | Дата: 23:17 13.04.2026

Replaces the Flash-era SyntaxHighlighter 2.x with highlight.js 11.11.1 and highlightjs-line-numbers.js 2.9.0. The new stack works without Flash, auto-detects language when not specified, and ships a custom CSS theme that matches the original SyntaxHighlighter Default visual palette.

Core changes:

  1. Plugin assets (plugins/highlightjs/):
  2. Add highlight.min.js 11.11.1 (auto-detect, 185 languages bundled)
  3. Add highlight-line-numbers.min.js 2.9.0 (line number table renderer)
  4. Add slaed-theme.css — custom theme matching SyntaxHighlighter Default

    • White/f8f8f8 alternating rows, gray line numbers, green left border
    • Correct selectors: td.hljs-ln-numbers, .hljs-ln-n::before, data-line-number

Benefits:

  • No Flash dependency; works in all modern browsers
  • Language auto-detection when brush name is unrecognized
  • tab-size: 4 applied via CSS for consistent tab rendering
  • Single JS bundle replaces per-language shBrush*.js loading

Technical notes:

  • encode_php() updated: syntax=2 now emits <pre><code class="language-X">
  • Language name mapping: jscript→javascript, vb→vbnet, plain→plaintext
  • Scripts injected lazily on first [code] block per page (sname=hljs guard)
Chore: remove legacy plugins/ckeditor and plugins/syntaxhighlighter
Автор: Eduard Laas | Дата: 23:16 13.04.2026

Both directories are superseded by the new pluggable editor system and highlight.js integration respectively. Keeping them would create dead asset weight and mislead future contributors about the active stack.

Core changes:

  1. Legacy editor plugin (plugins/ckeditor/):
  2. Remove standalone CKEditor 4.x bundle from the repository root

    • The CKEditor 4 driver is now bundled inside plugins/editors/ckeditor/
    • The old top-level directory was not loaded by any active code path
  3. Legacy syntax highlighter (plugins/syntaxhighlighter/):
  4. Remove SyntaxHighlighter 2.1.382 (2010) from the repository

    • Replaced by highlight.js 11.x in encode_php() and the CSS pipeline
    • No active references remain after the syntax=2 branch was migrated

Benefits:

  • Eliminates ~1100 unused files from the repository tree
  • Removes Flash-dependent clipboard code (clipboard.swf)
  • Reduces confusion about which syntax highlighter is active

Technical notes:

  • No backward-compatibility shims required; encode_php() no longer references either plugin
  • plugins/editors/ckeditor/ (the active CKEditor 5 driver) is unaffected
Chore: remove hardcoded codemirror CSS from layouts, update fingerprint
Автор: Eduard Laas | Дата: 15:17 13.04.2026

Remove the two static <link> tags for the old CodeMirror 2 distribution from all admin layout templates. Asset injection is now handled by Editor::getAssets() which injects driver CSS/JS only when the relevant editor is active on the page. Update base_fingerprint to reflect the current codebase state.

Core changes:

  1. Admin layouts (templates/*/layouts/admin.html — 4 files):
  2. Remove: <link rel="stylesheet" href="plugins/codemirror/lib/codemirror.css">
  3. Remove: <link rel="stylesheet" href="plugins/codemirror/addon/hint/show-hint.css">

    • These referenced the old plugins/codemirror/ path (pre-plugin-system)
    • The new CodeMirror 6 assets live in plugins/editors/codemirror/assets/
  4. Config fingerprint (config/local.php):
  5. Update base_fingerprint to match the current file state after Editor class, plugins, and admin module changes

Benefits:

  • Layouts are no longer coupled to a specific editor implementation
  • Editor assets are injected on-demand; pages without code editors load faster

Technical notes:

  • The old plugins/codemirror/ directory is a separate cleanup task
  • Fingerprint change is cosmetic; no runtime effect
Refactor: admin modules — migrate to Editor::getCode() and Editor::getSelect()
Автор: Eduard Laas | Дата: 15:16 13.04.2026

Replace getTplCodeEditor() with Editor::getCode() and redaktor()/changeeditor() with Editor::getSelect() across all admin panel modules. Migrate the editor change flow in core/admin.php and admin/index.php to use string plugin keys instead of the legacy numeric redaktor flag.

Core changes:

  1. Admin entry and core (core/admin.php, admin/index.php):
  2. changeeditor(): store string plugin key instead of numeric editor value
  3. Read editor key from conf['editor']['admin'] instead of intval($admin[3])
  4. Validate key with isValidEditor() before saving to DB
  5. Config module (admin/modules/config.php):
  6. Replace single redaktor select with two rows: editor_user and editor_admin via Editor::getSelect() for each role

  7. Save handler reads editor_user/editor_admin and writes conf['editor'] block
  8. editor_code key preserved from existing conf
  9. Code editor call sites (7 files → Editor::getCode()):
  10. admin/modules/blocks.php: block code preview field; mode → lang: 'php'
  11. admin/modules/database.php: SQL query field; mode → lang: 'sql'
  12. admin/modules/editor.php: file editor; mode → lang inferred from extension
  13. admin/modules/security.php: HTTP monitor field; mode → lang: 'text'
  14. admin/modules/template.php: template file editor; mode → lang: 'html'
  15. admin/modules/uploads.php: network code field; mode → lang: 'html'
  16. modules/sitemap/admin/index.php: sitemap XML field; mode → lang: 'xml'
  17. Content editor call sites (account admin):
  18. modules/account/admin/index.php: account editor select via Editor::getSelect()

Benefits:

  • Editor::getCode() normalises lang keys (php, sql, html, css, xml, text) replacing the MIME-type mode strings used by old CodeMirror integration

  • Editor selection UI is driven by plugin manifests instead of hardcoded options

Technical notes:

  • getTplCodeEditor() and redaktor() are now unused; removal planned separately
  • 'height' parameter dropped — sizing is now handled per-driver via CSS
  • No behavioral changes for end users; rendered widget is identical
Feature: bootstrap Editor class and add editor config section
Автор: Eduard Laas | Дата: 15:16 13.04.2026

Wire the Editor class into the system bootstrap and introduce the conf['editor'] config block that maps roles (user, admin, code) to editor plugin keys.

Core changes:

  1. System bootstrap (core/system.php):
  2. Add require_once for core/classes/editor.php before Template and Parser

    • Editor is stateless (no instantiation); loaded once at request start
  3. Global config (config/global.php):
  4. Add conf['editor'] block with three role keys:

    • 'user' => 'plain' — default editor for front-end content forms
    • 'admin' => 'plain' — default editor for admin content forms
    • 'code' => 'codemirror' — default editor for code/syntax fields
  5. Replaces the old scalar 'redaktor' key (numeric 0/1 flag)

Benefits:

  • Role-based editor selection is now config-driven
  • Three independent keys allow different editors for code vs. content

Technical notes:

  • Existing 'redaktor' key is preserved for backward compatibility until all callers are migrated (handled in subsequent commit)

  • Plugin keys correspond to directory names under plugins/editors/
Feature: add Editor class and pluggable editor system
Автор: Eduard Laas | Дата: 15:16 13.04.2026

Introduce a plugin-based editor architecture that replaces the hardcoded getTplCodeEditor() / getTplBbEditor() / redaktor() helpers with a unified Editor class backed by interchangeable driver plugins. Each editor plugin lives in plugins/editors/<name>/ and implements ContentDriver or CodeDriver.

Core changes:

  1. Editor class (core/classes/editor.php):
  2. Editor::getContent(array $data): string — render a content (WYSIWYG) widget

    • Selects driver by role (admin/user) and optional editor/profile overrides
  3. Editor::getCode(array $data): string — render a code/syntax editor widget

    • Selects driver by conf['editor']['code'] key (default: codemirror)
  4. Editor::getSelect(string $name, string $value, string $type, string $role): string — render an <select> listing available editor choices for role

  5. Editor::getAssets(string $context): string — collect CSS/JS assets from active drivers for the current request context

  6. ContentDriver and CodeDriver interfaces define the driver contract
  7. Plugin manifests (manifest.json) declare name, roles, formats, and profiles
  8. Editor plugins (plugins/editors/):
  9. plain/ — plain textarea (no assets); supports content for both roles
  10. codemirror/ — CodeMirror 6 bundle for code editing (cm6.bundle.js + cm6.css)

    • driver.php implements CodeDriver
    • build/entry.js, build.mjs: esbuild pipeline source
  11. ckeditor/ — CKEditor 5 bundle for rich content editing (ckeditor.bundle.js)

    • driver.php implements ContentDriver (admin role, full/simple profiles)
    • build/entry.js, build.mjs: esbuild pipeline source
  12. tinymce/ — TinyMCE 7 self-hosted distribution (tinymce.min.js + plugins/)

    • driver.php implements ContentDriver (admin + user roles)
  13. toastui/ — Toast UI Editor (toastui-editor.all.min.js + css)

    • driver.php implements ContentDriver (user role, markdown profile)

Benefits:

  • Editor choice is configurable per role (user/admin/code) in conf['editor']
  • Adding a new editor requires only a plugin directory + manifest + driver.php
  • Asset injection is handled by Editor::getAssets() — no hardcoded <link> in layouts

Technical notes:

  • ContentDriver::getWidget() signature: (id, name, value, profile)
  • CodeDriver::getWidget() signature: (id, name, value, lang, profile)
  • Manifests use JSON; driver.php must define a class named <Name>Driver
  • TinyMCE is vendored in full (self-hosted); no CDN dependency
Test: add ParserFixturesTest, remove legacy filterMarkdown stubs
Автор: Eduard Laas | Дата: 14:17 13.04.2026

Add a dedicated test suite for the new Parser class and clean up the obsolete filterMarkdown / filterReplaceText function stubs from AdminPreviewBridgeFlowTest now that the real Parser class is available.

Core changes:

  1. New test suite (tests/Unit/ParserFixturesTest.php):
  2. Loads core/classes/parser.php directly via require_once
  3. Defines minimal stub functions (img_find, replace_break, is_user) required by Parser without the full CMS bootstrap

  4. Data-provider test cases covering safe and unsafe mode output, BB-code tags, Markdown blocks, and inline content

  5. Updated test (tests/Unit/AdminPreviewBridgeFlowTest.php):
  6. Remove filterMarkdown() and filterReplaceText() function stubs

    • No longer needed: Parser class is loaded directly in the test
  7. Remove __test_filter_markdown global from setUp()
  8. Remove associated fixture setup in previewPartialHandlesHtmlContentCorrectly()

Benefits:

  • Parser class is covered by fixture-based unit tests
  • AdminPreviewBridgeFlowTest is cleaner without surrogate function stubs

Technical notes:

  • ParserFixturesTest requires BASE_DIR to be defined; handled by bootstrap
  • Removing the stubs does not affect existing test assertions — the real Parser produces identical output for the affected test cases

Refactor: module public pages and blocks — migrate to Parser::filterContent()
Автор: Eduard Laas | Дата: 14:17 13.04.2026

Replace all remaining filterMarkdown() + filterReplaceText() call pairs with $prs->filterContent() across the front-end module controllers and block scripts. Add global $prs where required.

Core changes:

  1. Block scripts (blocks/):
  2. block-links.php: 2 description tooltip call sites → $prs->filterContent()
  3. block-auto_links.php: 1 description tooltip → $prs->filterContent()
  4. Module front-end controllers (modules/*/index.php):
  5. account: view() signature field, last() comment snippet (4 sites)
  6. auto_links: description rendering
  7. changelog: common.php entry body
  8. clients, contact: text field rendering
  9. content: body rendering
  10. faq: answer body
  11. files, media: description fields
  12. forum: post body and reply content (multiple sites)
  13. help: article body
  14. jokes: joke body
  15. links: description fields
  16. main: block content rendering
  17. money: invoice and confirmation text fields
  18. news: article body and intro
  19. order: order detail rendering
  20. pages: page body
  21. shop: product description, body and intro fields

Benefits:

  • Zero filterMarkdown/filterReplaceText calls remain anywhere in the codebase
  • All public-facing content rendering uses the unified Parser API

Technical notes:

  • All changes are mechanical replacements; no logic changes
  • $prs is already available as a global from system.php bootstrap

Всего: 1045 на 105 страницах по 10 на каждой странице

1 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 105
Хотите опробовать SLAED CMS в действии?
Идеи и предложения
Обратная связь
Подтверждение

Поделиться
QR-код