From aabe2e796bb3372d4d78054e2a4003e2bb9df475 Mon Sep 17 00:00:00 2001
From: Thomas Walker Lynch
Date: Sat, 20 Jun 2026 11:41:10 +0000
Subject: [PATCH] v3.1 futher namespace mods
---
developer/authored/RT/document/style_manual.html | 6 +++---
developer/authored/RT/layout/memo_State.js | 14 +++++++-------
developer/authored/RT/layout/page_fixed_glow.js | 2 +-
.../authored/RT/layout/paginate_by_element.js | 4 ++--
developer/authored/RT/theme/dark_gold.js | 2 +-
developer/authored/RT/theme/light.js | 2 +-
developer/authored/RT/theme/light_gold.js | 2 +-
developer/document/00_RT_Code_Format.html | 4 ++--
developer/document/02_RT_Code_Format.html | 4 ++--
.../03_Naming_and_Directory_Conventions.html | 4 ++--
developer/document/04_Language_Addenda.html | 4 ++--
11 files changed, 24 insertions(+), 24 deletions(-)
diff --git a/developer/authored/RT/document/style_manual.html b/developer/authored/RT/document/style_manual.html
index 5a10b4e..2d36e90 100644
--- a/developer/authored/RT/document/style_manual.html
+++ b/developer/authored/RT/document/style_manual.html
@@ -355,8 +355,8 @@
- window.StyleRT.debug.enable('term')
- window.StyleRT.debug.disable('term')
+ window.RT.debug.enable('term')
+ window.RT.debug.disable('term')
@@ -387,7 +387,7 @@
RT conventions
diff --git a/developer/authored/RT/layout/memo_State.js b/developer/authored/RT/layout/memo_State.js
index a2eb279..5609705 100644
--- a/developer/authored/RT/layout/memo_State.js
+++ b/developer/authored/RT/layout/memo_State.js
@@ -1,7 +1,7 @@
/*
@@ -11,14 +11,14 @@
*/
(function(){
- const RT = window.StyleRT = window.StyleRT || {};
+ const RT = window.RT = window.RT || {};
// 1. Declare Dependencies
- RT.include('RT/core/utility');
- RT.include('RT/element/title');
- RT.include('RT/element/term');
- RT.include('RT/element/TOC');
- RT.include('RT/core/body_visibility_visible');
+ RT.load('core/utility');
+ RT.load('element/title');
+ RT.load('element/term');
+ RT.load('element/TOC');
+ RT.load('core/body_visibility_visible');
// 2. The Typography Layout
RT.memo_state_dept = function(){
diff --git a/developer/authored/RT/layout/page_fixed_glow.js b/developer/authored/RT/layout/page_fixed_glow.js
index 2bcafcd..6ef8819 100644
--- a/developer/authored/RT/layout/page_fixed_glow.js
+++ b/developer/authored/RT/layout/page_fixed_glow.js
@@ -4,7 +4,7 @@
Description: A variable-height container with a glowing border effect that matches the active theme.
*/
(function(){
- const RT = window.StyleRT = window.StyleRT || {};
+ const RT = window.RT = window.RT || {};
RT.page = function() {
RT.config = RT.config || {};
diff --git a/developer/authored/RT/layout/paginate_by_element.js b/developer/authored/RT/layout/paginate_by_element.js
index a511e39..aca2122 100644
--- a/developer/authored/RT/layout/paginate_by_element.js
+++ b/developer/authored/RT/layout/paginate_by_element.js
@@ -1,5 +1,5 @@
-window.StyleRT.paginate_by_element = function () {
- const RT = window.StyleRT;
+window.RT.paginate_by_element = function () {
+ const RT = window.RT;
const debug = RT.debug || { log: function(){}, error: function(){} };
const page_conf = (RT.config && RT.config.page) ? RT.config.page : {};
const page_height_limit = page_conf.height_limit || 1000;
diff --git a/developer/authored/RT/theme/dark_gold.js b/developer/authored/RT/theme/dark_gold.js
index 77eb67a..9550a98 100644
--- a/developer/authored/RT/theme/dark_gold.js
+++ b/developer/authored/RT/theme/dark_gold.js
@@ -4,7 +4,7 @@
Description: High contrast Amber on Deep Charcoal.
*/
( function(){
- const RT = window.StyleRT = window.StyleRT || {};
+ const RT = window.RT = window.RT || {};
RT.theme = function(){
RT.config = RT.config || {};
diff --git a/developer/authored/RT/theme/light.js b/developer/authored/RT/theme/light.js
index 4b5eea4..d0e80eb 100644
--- a/developer/authored/RT/theme/light.js
+++ b/developer/authored/RT/theme/light.js
@@ -4,7 +4,7 @@
Description: Warm paper tones with Burnt Orange accents.
*/
( function(){
- const RT = window.StyleRT = window.StyleRT || {};
+ const RT = window.RT = window.RT || {};
RT.theme_light = function(){
RT.config = RT.config || {};
diff --git a/developer/authored/RT/theme/light_gold.js b/developer/authored/RT/theme/light_gold.js
index 206f3da..3136934 100644
--- a/developer/authored/RT/theme/light_gold.js
+++ b/developer/authored/RT/theme/light_gold.js
@@ -5,7 +5,7 @@
Description: Light Parchment background with Oxblood Red ink.
*/
( function(){
- const RT = window.StyleRT = window.StyleRT || {};
+ const RT = window.RT = window.RT || {};
RT.theme = function(){
RT.config = RT.config || {};
diff --git a/developer/document/00_RT_Code_Format.html b/developer/document/00_RT_Code_Format.html
index 1b41ddf..cbb7abc 100644
--- a/developer/document/00_RT_Code_Format.html
+++ b/developer/document/00_RT_Code_Format.html
@@ -5,8 +5,8 @@
RT Prescriptive Code Format Guide
diff --git a/developer/document/02_RT_Code_Format.html b/developer/document/02_RT_Code_Format.html
index ad5ef8b..e24f9ec 100644
--- a/developer/document/02_RT_Code_Format.html
+++ b/developer/document/02_RT_Code_Format.html
@@ -5,8 +5,8 @@
RT Prescriptive Code Format Guide
diff --git a/developer/document/03_Naming_and_Directory_Conventions.html b/developer/document/03_Naming_and_Directory_Conventions.html
index d34a287..d1d1851 100644
--- a/developer/document/03_Naming_and_Directory_Conventions.html
+++ b/developer/document/03_Naming_and_Directory_Conventions.html
@@ -5,8 +5,8 @@
Naming and Directory Conventions
diff --git a/developer/document/04_Language_Addenda.html b/developer/document/04_Language_Addenda.html
index d33208e..a4d345c 100644
--- a/developer/document/04_Language_Addenda.html
+++ b/developer/document/04_Language_Addenda.html
@@ -5,8 +5,8 @@
Language Addenda (C, Python, Bash, Lisp)
--
2.20.1