Skip to content
This repository has been archived by the owner on Oct 28, 2022. It is now read-only.

Latest commit

 

History

History
141 lines (88 loc) · 3.98 KB

File metadata and controls

141 lines (88 loc) · 3.98 KB

.. ================================================== .. FOR YOUR INFORMATION .. -------------------------------------------------- .. -- coding: utf-8 -- with BOM.

Developer Guide

Target group: Developers

.. only:: html

        .. contents:: Within this page
                :local:
                :depth: 3



Code insights

This section is incomplete

Table mapping

This extension uses TYPO3 Extbase table mapping to make use of existing EXT:t3blog tables. Take a look at ext_typoscript_setup.txt to see how this is done.

Translations

Translations could be added here: http://translation.typo3.org/projects/TYPO3.TYPO3.ext.t3extblog/

Please consider opening a GitHub ticket so we can review new translations as soon as possible!

Tip

German localization has been handled by local files before version 2.2.0. Please see this issue for more information: fnagel#99

Documentation

Anyone is very welcome to help improving our documentation! Just send a pull request or add an issue at GitHub.

To view your changes before submitting them you will need to install following extensions:

  • EXT:sphinx
  • EXT:restdoc

See this link for more information: https://docs.typo3.org/typo3cms/extensions/sphinx/WritersManual/SphinxRest/Index.html

Testing

This needs to be done for latest supported TYPO3 versions in a multi-language site setup. It is recommenced to install T3extblog in TYPO3'S default Bootstrap Package.

What needs to be tested:

  • Creating blog posts (with and without preview image and text)
  • Posting comments and subscribe for new comments
    • With and without SPAM check triggered
    • Test field validation
  • Using the subscription manager (confirm and delete for new comment and post subscription)
  • New comment subscription
    • admin, subscriber opt-in and notification emails
    • triggered by: frontend & backend (confirm and un-spam a comment)
    • make sure mails are sent with localized links for multi language setups
  • New post subscription
    • subscriber opt-in (frontend) and notification emails (button in BE module)
  • Run unit tests (see below)

Quick test procedure

  • Create a new post
  • Add comment with subscription (saved but marked as SPAM) -> admin email sent
  • Mark as non SPAM using the dashboard (T3extblog BE module) -> subscription mail sent
  • Confirm subscription by email link
  • When in subscription manager, add new article subscription
  • Add another comment (saved but marked as SPAM) -> admin email sent
  • Edit the comment record you just created in "list" module
  • Un-check the SPAM checkbox, save record -> new comment mail sent
  • Click envelope icon in "all post" view (T3extblog BE module) -> New post subscription mail sent

Run unit tests

cd typo3conf/ext/t3extblog

composer install

./vendor/bin/runtests

TER deployment

TYPO3 TER deployment is done automated via GitHub hooks. Just add a version tag and push to GitHub. See https://github.com/FluidTYPO3/fluidtypo3-gizzle for more information on the topic.

How to release

  • Change version information in /ext_emconf.php
  • Change version information in /Documentation/Settings.yml
  • Change version information in /composer.json
  • Commit changes: No [XYZ] prefix, this commit message will be the TYPO3 TER release notice
  • Add tag to release commit (format: "1.2.3")
  • Change version information in /ext_emconf.php to next bugfix version + "dev" (example: "1.2.4dev")
  • Push changes to GitHub (git push --tags)

After a release

  • Make sure the release has been pushed to the TER
  • Add t3x file rendered by TER to the GitHub release
  • Update maintained translations (German) on http://translation.typo3.org

Important

Please be careful when pushing tags. Do not push "non release" tags without changing the version number in /ext_emconf.php to a dev version number (see above)