summaryrefslogtreecommitdiff
path: root/help/BlogComments.md
diff options
context:
space:
mode:
authorMichael Peter Christen <mc@yacy.net>2026-07-11 11:11:06 +0200
committerMichael Peter Christen <mc@yacy.net>2026-07-11 11:11:06 +0200
commitb1380c4a9f479de4fc456b6305bee57bc752ad03 (patch)
treec0d42fb103edafa5e9b8e5f04f48bfdcc658441e /help/BlogComments.md
parentf2b0f41d8492ebf92b0e331e8c9c78e626f371c9 (diff)
cleaned up user authentication
this removes the userDB-exception in the normal authentication process which affected mostly wiki and blog which are not required any more. We also cleaned up translation messages as this function was not used at all. This is a required step forward a renovation of the jetty server.
Diffstat (limited to 'help/BlogComments.md')
-rw-r--r--help/BlogComments.md88
1 files changed, 0 insertions, 88 deletions
diff --git a/help/BlogComments.md b/help/BlogComments.md
deleted file mode 100644
index 474b03327..000000000
--- a/help/BlogComments.md
+++ /dev/null
@@ -1,88 +0,0 @@
----
-page: htroot/BlogComments.html
-help: help/BlogComments.md
-title: Blog
-package: content-apps
-access: public
-kind: ui-page
-backend_java: source/net/yacy/htroot/BlogComments.java
----
-
-# Blog
-
-## Purpose
-
-Blog Comments stores discussion around local blog posts.
-
-Use it to review or moderate comments attached to peer-local posts.
-
-## What You Can Do Here
-
-- Blog Comments stores discussion around local blog posts.
-- Edit or inspect the specific content object shown on the page.
-- Check whether the result is local-only, user-visible, or peer-visible before publishing.
-
-## Page Architecture
-
-Content application pages store and render peer-local objects such as bookmarks, messages, wiki text, tables, profiles, or translations. They combine form editing with a rendered view of the stored object.
-
-| Control | Meaning | Values or examples |
-| --- | --- | --- |
-| `author` | Author. | Text value; use the page label and surrounding context to choose the exact content. |
-| `subject` | Subject. | Text value; use the page label and surrounding context to choose the exact content. |
-| `content` | Text. | Text value; use the page label and surrounding context to choose the exact content. |
-| `submit` | Submits the form. | `Submit` |
-| `preview` | Author. | `Preview` |
-| `view` | Author. | `Discard` |
-
-## Correct Use
-
-Edit content deliberately and check the rendered page after saving. For shared or peer-visible features, assume written content may be read by someone else unless the page clearly says otherwise.
-
-## Access And Safety
-
-The page is normally public or read-only, unless the peer is configured to require authentication for all pages.
-
-Backend checks: user authentication.
-
-## Automation And API
-
-Page backend: `source/net/yacy/htroot/BlogComments.java`.
-
-| Endpoint | Method | Access | Backend |
-| --- | --- | --- | --- |
-| `/BlogComments.html` | `POST` | public or page-dependent | `source/net/yacy/htroot/BlogComments.java` |
-
-### Parameter Guide
-
-The table explains values that an agent or script must set deliberately. Parameters not relevant to a task should be omitted or left at the page default.
-
-| Parameter | Meaning and valid values | Care |
-| --- | --- | --- |
-| `author` | Author. | Set only when this option is part of the intended request; otherwise omit it and let YaCy use the page default. |
-| `subject` | Subject. | Set only when this option is part of the intended request; otherwise omit it and let YaCy use the page default. |
-| `content` | Text. | Set only when this option is part of the intended request; otherwise omit it and let YaCy use the page default. |
-| `submit` | Submit action for the form. Its meaning depends on the surrounding fields. | Changes stored data, configuration, or a running job. Use the authenticated action flow where required and verify the result. |
-| `preview` | Author. | Set only when this option is part of the intended request; otherwise omit it and let YaCy use the page default. |
-| `view` | Author. | Set only when this option is part of the intended request; otherwise omit it and let YaCy use the page default. |
-| `allow` | Enables the named feature. | Set only when this option is part of the intended request; otherwise omit it and let YaCy use the page default. |
-| `delete` | Deletes the selected URL, path, or index scope. Confirm the scope first. | Can remove data, stop work, expose access, or make a broad operational change. Use only with explicit confirmation and an exact target. |
-| `page` | Author. | Set only when this option is part of the intended request; otherwise omit it and let YaCy use the page default. |
-
-Example request shape:
-
-```http
-POST /BlogComments.html
-Content-Type: application/x-www-form-urlencoded
-
-author=...&subject=...&content=...&submit=...&preview=...
-```
-
-## What To Expect
-
-Expect stored or rendered content: a message, page, table row, bookmark, profile, translation, or file view. After changes, reload or revisit the object to confirm what was actually saved.
-
-## Related Pages
-
-- `Blog.html`
-- `WikiHelp.html`