App Framework Interop - sgml/signature GitHub Wiki

Definitions

CQRS means that your read and write models become separate. Instead of interacting directly with the underlying datamodel, you will collect mutations on content using Event Sourcing (ES). This means that the events are collected very fast.

Portable Data

JSON

  • mod_cjson: This module provides REST/JSON services in C using the cJSON framework. It allows for encoding and decoding JSON data. Learn more about mod_cjson
  • Apache Johnzon: This project provides an implementation of the JSON-P (JSR-353) and JSON-B (JSR-367) specifications. It includes modules for JSON processing, object mapping, and WebSocket integration. Learn more about Apache Johnzon

Atom

  • mod_atom: This module implements the server side of the Atom Publishing Protocol as an Apache module. It allows for creating and consuming Atom documents and supports AtomPub servers. Learn more about mod_atom

WebDAV

  • mod_dav: This module provides WebDAV (Web-based Distributed Authoring and Versioning) functionality for Apache. It allows for creating, moving, copying, and deleting resources and collections on a remote web server. Learn more about mod_dav

HTTPD/Symfony/Rails/Laravel/Django/Flask

Apache HTTPD Module¹ Ruby on Rails Equivalent² Drupal Equivalent³ Django Equivalent Spring MVC Equivalent
mod_rewrite¹ rack-rewrite² Redirect module³ django-urls spring-webmvc
mod_php Passenger PHP is used for backend processing Django with WSGI Spring with Servlets
mod_headers rack-headers Drupal Header module django-headers spring-webmvc
mod_security rack-security Drupal uses .htaccess for security django-security spring-security
mod_proxy rack-proxy N/A django-proxy spring-proxy
mod_filter rack-filter Drupal Filter module django-filter spring-filter
mod_cache rack-cache Drupal Cache API django-cache spring-cache
mod_dav N/A Drupal WebDAV module django-dav N/A
mod_env rack-env Drupal Environment Indicator django-environ spring-env
mod_file_cache N/A Drupal Cache API django-file-cache N/A
mod_info N/A N/A django-info spring-info
mod_heartbeat N/A N/A django-heartbeat spring-heartbeat
mod_so N/A N/A django-so spring-so
mod_status N/A N/A django-status spring-status
mod_wsgi Phusion Passenger N/A django-wsgi spring-wsgi

Rails Middleware for XSLT

Implementation

# lib/middleware/xslt_renderer.rb
class XsltRenderer
  def initialize(app)
    @app = app
  end

  def call(env)
    status, headers, response = @app.call(env)

    if headers['Content-Type'] == 'application/xml'
      xslt = Nokogiri::XSLT(File.read('path/to/your_stylesheet.xsl'))
      xml = Nokogiri::XML(response.body)
      
      # Check and get the version of the XSLT processor
      xslt_processor_version = xslt.doc.xpath('/xsl:stylesheet/@version', 'xsl' => 'http://www.w3.org/1999/XSL/Transform').text

      # Set the version as a parameter
      transformed_response = xslt.transform(xml, 'xslt_processor_version' => xslt_processor_version).to_s

      Rails.logger.info "XSLT Processor Version: #{xslt_processor_version}"

      headers['Content-Length'] = transformed_response.bytesize.to_s
      [status, headers, [transformed_response]]
    else
      [status, headers, response]
    end
  end
end

Config

# config/application.rb
config.middleware.use "XsltRenderer"

Custom Model

# app/models/book.rb
class Book < ApplicationRecord
  def to_xml(options = {})
    Nokogiri::XML::Builder.new do |xml|
      xml.book {
        xml.title title
        xml.author author
        xml.published_at published_at
      }
    end.to_xml
  end
end

Data Model

# app/models/book.rb
class Book < ApplicationRecord
  def to_xml(options = {})
    Nokogiri::XML::Builder.new do |xml|
      xml.book {
        xml.title title
        xml.author author
        xml.published_at published_at
      }
    end.to_xml
  end
end

Output

<!-- path/to/your_stylesheet.xsl -->
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:param name="xslt_processor_version"/>
  <xsl:template match="/">
    <html>
      <body>
        <h1>XSLT Processor Version: <xsl:value-of select="$xslt_processor_version"/></h1>
        <!-- Add other transformation logic here -->
      </body>
    </html>
  </xsl:template>
</xsl:stylesheet>

Caching

References

CQRS

gRPC

XMPP

ESB

XQuery

GraphQL

HTML DOM

DOM APIs Without Direct Equivalents in React, Vue, Angular, or AngularJS

DOM API URL
document.createDocumentFragment() MDN Web Docs
document.createEvent() MDN Web Docs
window.requestAnimationFrame() MDN Web Docs
Element.classList.add() MDN Web Docs
Element.insertAdjacentHTML() MDN Web Docs
Element.matches() MDN Web Docs
Element.closest() MDN Web Docs
Element.contains() MDN Web Docs
Element.getBoundingClientRect() MDN Web Docs
Element.scrollIntoView() MDN Web Docs
navigator.sendBeacon() MDN Web Docs
Touch.identifier MDN Web Docs
URL.createObjectURL() MDN Web Docs
URLSearchParams.append() MDN Web Docs
URLSearchParams.delete() MDN Web Docs
URLSearchParams.get() MDN Web Docs
URLSearchParams.getAll() MDN Web Docs
URLSearchParams.has() MDN Web Docs
URLSearchParams.set() MDN Web Docs
URLSearchParams.sort() MDN Web Docs
document.styleSheets MDN Web Docs
screen.width MDN Web Docs
Event.preventDefault() MDN Web Docs
⚠️ **GitHub.com Fallback** ⚠️