Jump to content

Main public logs

Combined display of all available logs of Costa Sano KB. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)
  • 08:21, 3 May 2026 Mngr talk contribs moved page Drupal:Drupal:Barrio/Buttons Barrio vs Gin to Drupal:Barrio/Buttons Barrio vs Gin without leaving a redirect
  • 08:20, 3 May 2026 Mngr talk contribs moved page Drupal:/Barrio/Buttons Barrio vs Gin to Drupal:Drupal:Barrio/Buttons Barrio vs Gin without leaving a redirect
  • 08:19, 3 May 2026 Mngr talk contribs moved page Drupal:Buttons Barrio vs Gin to Drupal:/Barrio/Buttons Barrio vs Gin without leaving a redirect
  • 08:18, 3 May 2026 Mngr talk contribs moved page Drupal:Barrio Front End template/Buttons to Drupal:Barrio/Buttons without leaving a redirect
  • 08:18, 3 May 2026 Mngr talk contribs moved page Drupal:Barrio Front End template to Drupal:Barrio without leaving a redirect
  • 19:50, 2 May 2026 Mngr talk contribs created page Drupal:Pages/Carousel Styling & Paragraph Integration (Created page with "= Drupal Carousel Styling & Paragraph Integration – Practical Guide = == Objective == This document explains: * How to apply Bootstrap styling in a Drupal View (Carousel) * How to integrate a View into a Paragraph (for flexible page building) This supports the transition from: <pre> Working solution → Structured, reusable solution </pre> --- == Part 1 – Applying Bootstrap Classes in Views == === Principle === In Drupal, you do NOT directly edit HTML. Instea...")
  • 20:29, 1 May 2026 Mngr talk contribs created page Drupal:Pages/Display Image via Referenced Asset Guide (Created page with "= Drupal Views – Displaying an Image via Referenced Asset (Step-by-Step Guide) = == Objective == Display an image in a View when the image is not directly on the content, but stored via: <pre> Chapter → Asset (entity reference) → Media → Image </pre> This guide explains how to correctly configure **relationships in Views** to retrieve the image. --- == Concept == Drupal Views does NOT automatically follow multiple entity references. You must explicitly defi...")
  • 13:26, 1 May 2026 Mngr talk contribs created page Drupal:Pages/Paragraph Usage Guide (Created page with "= Drupal Paragraph Usage Guide – Page Building for Historians = == Objective == Provide clear guidance on how to use Paragraphs to build pages in a consistent, simple, and user-friendly way. This ensures: * clean page structure * predictable layout * no clutter * easy editing for historians --- == General Principle == Each Paragraph has '''one clear purpose'''. Do NOT mix multiple purposes in one paragraph. --- == Available Paragraph Types == The system inclu...")
  • 12:57, 1 May 2026 Mngr talk contribs created page Drupal:Pages/Detailed page (Created page with "= Drupal Detail Page Layout (Content Display) – Implementation Guide = == Objective == Define a clean and readable layout for detail pages (e.g. Chapter, Asset, Event), ensuring: * Clear presentation of content * Strong focus on images and context * Easy navigation and understanding * No clutter or unnecessary UI elements --- == Conceptual Approach == <pre> Image → Title → Key information → Description → Related content </pre> The page should feel: * cal...")
  • 12:55, 1 May 2026 Mngr talk contribs created page Drupal:Pages/Overlay Cards (Created page with "= Drupal Image Overlay Cards (Bootstrap / Views) – Implementation Guide = == Objective == Create a grid of images where: * Each image represents a content item (e.g. Chapter, Asset, Event) * Hovering shows an overlay with: * Title * Short description * Clicking the image opens the detail page This must be implemented using Drupal Views and Bootstrap (Barrio), with minimal or no custom code. --- == Conceptual Approach == <pre> Content → View → Bootstrap C...")
  • 12:53, 1 May 2026 Mngr talk contribs created page Drupal:Pages/Frontend landing page (Created page with "= Drupal Homepage Carousel (Chapters) – Implementation Guide = == Objective == Create a homepage carousel displaying “Chapters” with: * Image * Title * Short description * Clickable link to detail page This should be implemented using Drupal UI, Views, and Bootstrap (Barrio theme), without custom coding. --- == Conceptual Approach == The solution follows this structure: <pre> Content → View → Bootstrap Carousel → Homepage Block </pre> We reuse the exi...")
  • 16:50, 29 April 2026 Mngr talk contribs created page Drupal:C-Modules/Tweaks/PDF-Thumbnails-Explained-Details (Created page with "== Drupal Module: heritage_tweaks – PDF Thumbnail System == === Purpose === This module implements immediate thumbnail generation for PDF media items. It avoids: * cron dependencies * delayed processing * unstable contrib modules --- === Module Structure === <pre> web/modules/custom/heritage_tweaks/ │ ├── heritage_tweaks.module ├── heritage_tweaks.services.yml │ └── src/ ├── Plugin/ │ └── QueueWorker/ │...")
  • 16:47, 29 April 2026 Mngr talk contribs moved page Drupal:C-Modules/Tweaks/Explained to Drupal:C-Modules/Tweaks/PDF-Thumbnails-Explained without leaving a redirect
  • 16:46, 29 April 2026 Mngr talk contribs deleted page Drupal:C-Modules/Tweaks/PDF-Thumbnails-Explained (content was: "== PDF Thumbnail Generation in Drupal == === Overview === This document describes the custom solution implemented to generate thumbnails for PDF documents in Drupal. The goal of this solution is: * Immediate thumbnail generation after saving a media item * No dependency on cron or manual commands * Reliable and predictable behavior for end users --- === Problem Statement === Stand...", and the only contributor was "Mngr" (talk))
  • 16:45, 29 April 2026 Mngr talk contribs moved page Drupal:C-Modules/Tweaks/Explained to Drupal:C-Modules/Tweaks/PDF-Thumbnails-Explained
  • 16:44, 29 April 2026 Mngr talk contribs created page Drupal:C-Modules/Tweaks/Explained (Created page with "== PDF Thumbnail Generation in Drupal == === Overview === This document describes the custom solution implemented to generate thumbnails for PDF documents in Drupal. The goal of this solution is: * Immediate thumbnail generation after saving a media item * No dependency on cron or manual commands * Reliable and predictable behavior for end users --- === Problem Statement === Standard Drupal modules for PDF thumbnails did not meet requirements: * Thumbnails were not...")
  • 08:10, 29 April 2026 Mngr talk contribs created page Drupal:C-Modules/Codes (Created page with "= Generate codes module = <pre> <?php use Drupal\Core\Entity\EntityInterface; * * Implements hook_entity_presave().: function heritage_codes_entity_presave(EntityInterface $entity) { // PERSON: generate PE-00001 style code. if ($entity->getEntityTypeId() === 'node' && $entity->bundle() === 'person' && $entity->isNew()) { if ($entity->hasField('field_pe_code') && $entity->get('field_pe_code')->isEmpty()) { $config = \Drupal::configFactory()->getEd...")
  • 08:01, 29 April 2026 Mngr talk contribs created page Drupal:C-Modules/Tweaks (Created page with "= Tweaks Module = <pre> <?php * * @file * Heritage Project: Consolidated tweaks for Drupal 11.3. * Includes: Link removal, Date Validation, Hierarchy Automation, and Form Protection.: use Drupal\Core\Form\FormStateInterface; use Drupal\Core\Messenger\MessengerInterface; use Drupal\Core\Entity\EntityInterface; use Drupal\Core\Entity\ContentEntityInterface; use Symfony\Component\HttpKernel\KernelEvents; use Symfony\Component\EventDispatcher\EventSubscriberInterf...")
  • 15:34, 28 April 2026 Mngr talk contribs created page Guides:Policies/Using Media and citations in public pages (Created page with "= Research and Editorial Principles = This page explains the intent and philosophy behind the data model and editorial workflow. It is written for contributors and researchers rather than technical implementers. The goal is to clarify not only how the system works, but why it is structured this way. == Why this system exists == The project is not a simple media archive. It is a research environment. We are not merely storing files. We are building structured his...") Tag: Visual edit: Switched
  • 15:21, 28 April 2026 Mngr talk contribs created page Guides:Policies/Research and editorial principles (Created page with "= Conceptual Policy – Treatment of Uncertainty = This page defines how uncertainty is handled in the data model. It clarifies why the system does NOT implement a formal "Certainty" entity or certainty levels. This decision is intentional and part of the conceptual design. == Principle == Historical research rarely produces absolute facts. Most statements involve: * approximation * interpretation * incomplete sources * conflicting evidence Uncertainty is there...") Tag: Visual edit
  • 15:11, 28 April 2026 Mngr talk contribs created page Guides:Policies/Treatment of uncertainty (Created page with "= Treatment of Uncertainty = This page defines how uncertainty is handled in our data model. It clarifies why the system does NOT implement a formal "Certainty" entity or certainty levels. This decision is intentional and part of the conceptual design. == Principle == Historical research rarely produces absolute facts. Most statements involve: * approximation * interpretation * incomplete sources * conflicting evidence Uncertainty is therefore normal and expected....") Tag: Visual edit
  • 15:05, 28 April 2026 Mngr talk contribs moved page Guides:Polies/Numbering to Guides:Policies/Numbering without leaving a redirect
  • 14:51, 28 April 2026 Mngr talk contribs created page Guides:Polies/Numbering (Created page with "= Numbering and File Naming = This page explains how items and files are named in the system. The goal is simple: * clear names * no duplicates * easy searching * automatic numbering Contributors do not need to create numbers manually. == Automatic identifiers == DigitalAssets receive an automatic identifier such as: CH03-ROM-0007 This number is created by the system. You do not type it yourself. == What the number means == Example: CH03-ROM-0007 Thi...")
  • 14:50, 28 April 2026 Mngr talk contribs created page Guides:Policies (Created page with "= This section informs about some policies used in the system =")
  • 14:49, 28 April 2026 Mngr talk contribs created page Guides:Sessions/Session TimeOut - take care (Created page with "== Long-Term Editing & Session Security == To prevent data loss during intensive historical research, this wiki uses several layers of session protection. If you are planning a long editing session without saving, please note the following: === 1. Automatic Session Persistence === * '''Stay Logged In:''' Always ensure the '''"Keep me logged in"''' box is checked when you sign in. This extends your session for up to 30 days. * '''Idle Timeout:''' If you do not check tha...") Tag: Visual edit: Switched
  • 14:48, 28 April 2026 Mngr talk contribs created page Guides:Sessions (Created page with "<nowiki>= This section discussion issue concerning web sessions =</nowiki>") Tag: Visual edit
  • 14:25, 28 April 2026 Mngr talk contribs created page Project:Infra/Terms explained (Created page with "= Technical Terms Explained for Collaborators = This page explains a small number of technical terms that appear in the project documentation. It is intended for collaborators who are not system architects and who are not expected to configure or maintain the system. The purpose of this page is to support understanding, not to teach implementation. == How to Read This Page == If you encounter an unfamiliar term in another ICT document, you can look it up here. You...")
  • 13:48, 28 April 2026 Mngr talk contribs created page Guides:Workflow/Data Input (Created page with "= Operational Workflows for club members - Data Input = This page describes how data, pages, and media are created, edited, and published. It focusses on practical day-to-day workflows. == General Workflow Principle == Work proceeds in phases: # Internal research and structuring # Review and validation # Public publication Internal work may be complex and incomplete. Public output must be stable and curated. == Public Publication Workflow == Publication is a deliber...") Tag: Visual edit: Switched
  • 13:46, 28 April 2026 Mngr talk contribs moved page Guides:Workflow/Explained to Guides:Workflow/General workflow explained without leaving a redirect
  • 13:38, 28 April 2026 Mngr talk contribs created page Guides:Workflow/Explained (Created page with "= Operational Workflows for club members = This page describes how data, pages, and media are created, edited, and published. It focusses on practical day-to-day workflows. == General Workflow Principle == Work proceeds in phases: # Internal research and structuring # Review and validation # Public publication Internal work may be complex and incomplete. Public output must be stable and curated. == Public Publication Workflow == Publication is a deliberate act for c...")
  • 13:38, 28 April 2026 Mngr talk contribs created page Guides:Workflow (Created page with "= This section explains the workflow throughout the application =")
  • 13:18, 28 April 2026 Mngr talk contribs created page Project:Infra/Wiki Namespaces Explained (Created page with "= Namespaces and Page Types = This page explains how the wiki is organized. It describes the different namespaces used in the project and what they are for. Understanding namespaces helps contributors know: * where to create pages * what kind of content belongs where * how research material differs from documentation == What is a namespace? == A namespace is simply a prefix in front of a page name. Examples: * HO:Sanatorium Ostend * DA:Facade photograph 1923 *...")
  • 13:16, 28 April 2026 Mngr talk contribs created page Project:Data Model/Person, Organisation and HeritageObject - Modelling Rules (Created page with "= Person, Organisation and HeritageObject – Modelling Rules = == Purpose == This page explains the conceptual difference between: * Person * Organisation * HeritageObject These three entities represent fundamentally different types of things. Clearly separating them is essential to keep the data model consistent and avoid confusion. == Core principle == When entering data, always ask: ''Is this a person, a group of people, or a physical thing?'' The answer de...")
  • 13:12, 28 April 2026 Mngr talk contribs created page Project:Infra/Mermaid style ER diagram explained (Created page with "== Diagram symbols (legend) == The small symbols at the ends of lines indicate whether there is one or many items. <mermaid> erDiagram ONE ||--|| ONE : "one-to-one" ONE ||--o{ MANY : "one-to-many" MANY }o--|| ONE : "many-to-one" MANY }o--o{ MANY : "many-to-many" </mermaid> Meaning in simple words: * || = exactly one * o{ or }o = many * Lines show how things are connected")
  • 13:09, 28 April 2026 Mngr talk contribs created page Project:Motivation/Away from Omeka-S and Zoteror (Created page with "== Why we use MediaWiki only (and not Omeka-S or Zotero) == At the beginning of the project we evaluated tools such as Omeka-S and Zotero. These are excellent applications for publishing digital collections and managing bibliographic references. However, our needs go beyond storing documents or citations. We are building an integrated research environment where historical objects, people, organizations, places, sources, and narrative chapters are all connected in one co...")
  • 13:08, 28 April 2026 Mngr talk contribs created page Project:Motivation (Created page with "= Why this project and the way it has been realised? =")
  • 12:03, 28 April 2026 Mngr talk contribs created page Project:Entities/Asset (Created page with "= How to Create a DigitalAsset = This guide explains how to add a new photograph or document to the system. == What is a DigitalAsset? == A DigitalAsset is a source such as: * a photo * a scan * a letter * an article * a PDF Each source gets its own page. == Step-by-step == === Step 1 – Prepare your file === Make sure you have: * the image or PDF ready * good quality if possible === Step 2 – Create the DigitalAsset page === Open the DigitalAsset fo...")
  • 11:59, 28 April 2026 Mngr talk contribs created page Project:Data Model/Glossary (Created page with "= Glossary = This glossary explains common terms used in the project. == HeritageObject == The thing we study. == DigitalAsset == A digital source such as a photo or document. == File == The stored JPG, PDF, or scan. == Person == A historical individual. == Organization == A group or institution. == Place == A location. == ResearchChapter == A section of the research story. == Identifier == An automatic number used to name items uniquely. == R...")
  • 11:57, 28 April 2026 Mngr talk contribs created page Project:Infra/Drupal Glossary (Created page with "= '''Drupal Glossary''' = '''Ajax''' A web technology used to exchange data with a server to dynamically update parts of a web page (for example, forms) without needing entire page reloads. '''Alias''' A user-friendly name to replace the internal path that the system assigns to a URL on the site. For example, you might assign an alias of ''/about'' to the About page on your site, to replace the internal path ''/node/5''. This would give the page a URL of ''<nowiki>htt...")
  • 11:56, 28 April 2026 Mngr talk contribs created page Project:Infra (Created page with "= Explanation about the infrastructure and used graphical presentations =")
  • 11:54, 28 April 2026 Mngr talk contribs created page Project:Example Stories/Alton (Created page with "= Example Story – The Children in Alton During WWII = This page shows, through a real historical example, how our research information fits naturally into the database structure. We first tell the story in normal language. Afterwards we show how the same information is organized in the system. The goal is to demonstrate that the database does not change our research work. It only structures it clearly. = The story = At the beginning of the Second World War, th...")
  • 11:53, 28 April 2026 Mngr talk contribs created page Project:Example Stories (Created page with "= This section gives some examples how to use the application =")
  • 10:16, 24 April 2026 Mngr talk contribs created page Project:Data Model/Event Entity Discussion (Created page with "= Historical Events in the Heritage Datamodel = == Purpose of this document == This document proposes the introduction of a new entity type: '''Event'''. It explains why Events are essential in a heritage context, how they relate to existing entities (Person, Organisation, Place, Asset), and which attributes are recommended. The goal is to support discussion and decision‑making within the club. == 1. Why an Event entity is needed == In a heritage project, '''Event...")
  • 17:40, 23 April 2026 Mngr talk contribs created page Drupal:Config/Enabling AVIF for Druapl 11 (Created page with "== Server Optimization: Enabling AVIF Support for Drupal 11 == === Overview === As of Drupal 11.2+, the system recommends support for the AVIF image format within the GDToolkit. By default, standard PHP-GD installations on Enterprise Linux may lack this codec. This document outlines the steps taken to enable AVIF support on AlmaLinux 10 to clear Drupal status report warnings and future-proof media handling. === Prerequisites === * '''OS:''' AlmaLinux 10.x * '''Web Serv...")
  • 10:12, 23 April 2026 Mngr talk contribs created page Project:Data Model/Entity Definitions (Created page with "= Entity Definitions = This page explains the main concepts used in the project. It describes them in everyday language. No technical knowledge is required. Think of these as the “building blocks” of our documentation system. == Why we use defined concepts == To work together consistently, we must agree on the meaning of words. For example: * What exactly is an object? * What counts as a source? * What is a place? * What is an organization? Clear definitio...")
  • 10:11, 23 April 2026 Mngr talk contribs created page Project:Data Model/Overview (Created page with "= Data Model Overview = This page explains, in plain language, how information is organized in the Costasano Heritage Database. It is intended for: * club members * contributors * reviewers * non-technical readers No technical knowledge is required. The goal is simply to understand: ''What kinds of things do we describe, and how do they relate to each other?'' == Purpose == The database helps us: * describe historical objects * record people and organizations...")
  • 10:10, 23 April 2026 Mngr talk contribs created page Project:Data Model/Mini Concept Guide (Created page with "= Data Model – Concepts Guide = This page explains, in simple language, how information is organized in our research system. It is written for club members and contributors and requires no technical knowledge. The goal is only to understand how we describe our history in a clear and structured way. == Why a structure? == During research we collect many things: photographs, letters, reports, names of people, buildings, cities, and events. Without structure information...")
  • 10:09, 23 April 2026 Mngr talk contribs created page Project:Data Model/Concept Guide (Created page with "= Data Model – Concepts Guide = This page explains, in simple language, how information is organized in our research system. It is written for club members and contributors. No technical or ICT knowledge is required. The goal is only to understand: ''How do we describe our history in a clear and structured way?'' == Why do we need a structure? == During research we collect many things: * photographs * letters * reports * names of people * buildings * cities *...")
  • 10:07, 23 April 2026 Mngr talk contribs deleted page Project:Level1 (content was: "This is the level1 page", and the only contributor was "Mngr" (talk))
  • 10:07, 23 April 2026 Mngr talk contribs deleted page Project:Level1/Level2/doc (content was: "This is a level 3 test document", and the only contributor was "Mngr" (talk))
(newest | oldest) View ( | ) (20 | 50 | 100 | 250 | 500)