v3.1 futher namespace mods
authorThomas Walker Lynch <eknp9n@reasoningtechnology.com>
Sat, 20 Jun 2026 11:41:10 +0000 (11:41 +0000)
committerThomas Walker Lynch <eknp9n@reasoningtechnology.com>
Sat, 20 Jun 2026 11:41:10 +0000 (11:41 +0000)
developer/authored/RT/document/style_manual.html
developer/authored/RT/layout/memo_State.js
developer/authored/RT/layout/page_fixed_glow.js
developer/authored/RT/layout/paginate_by_element.js
developer/authored/RT/theme/dark_gold.js
developer/authored/RT/theme/light.js
developer/authored/RT/theme/light_gold.js
developer/document/00_RT_Code_Format.html
developer/document/02_RT_Code_Format.html
developer/document/03_Naming_and_Directory_Conventions.html
developer/document/04_Language_Addenda.html

index 5a10b4e..2d36e90 100644 (file)
       </p>
 
       <RT-code>
-        window.StyleRT.debug.enable('term')
-        window.StyleRT.debug.disable('term')
+        window.RT.debug.enable('term')
+        window.RT.debug.disable('term')
       </RT-code>
 
       <p>
 
       <script src="style/style_orchestrator.js"></script>
       <script>
-        window.StyleRT.style_orchestrator();
+        window.RT.style_orchestrator();
       </script>
 
       <RT-chapter>RT conventions</RT-chapter>
index a2eb279..5609705 100644 (file)
@@ -1,7 +1,7 @@
 /*
   <head>
     <script>
-      window.StyleRT.include('RT/layout/memo_state_dept');
+      window.RT.load('layout/memo_state_dept');
     </script>
   </head>
   <body>
 */
 
 (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(){
index 2bcafcd..6ef8819 100644 (file)
@@ -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 || {};
index a511e39..aca2122 100644 (file)
@@ -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;
index 77eb67a..9550a98 100644 (file)
@@ -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 || {};
index 4b5eea4..d0e80eb 100644 (file)
@@ -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 || {};
index 206f3da..3136934 100644 (file)
@@ -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 || {};
index 1b41ddf..cbb7abc 100644 (file)
@@ -5,8 +5,8 @@
     <title>RT Prescriptive Code Format Guide</title>
     <script src="setup.js"></script>
     <script>
-      window.StyleRT.include('RT/theme');
-      window.StyleRT.include('RT/layout/article_tech_ref');
+      window.RT.load('theme');
+      window.RT.load('layout/article_tech_ref');
     </script>
   </head>
   <body>
index ad5ef8b..e24f9ec 100644 (file)
@@ -5,8 +5,8 @@
     <title>RT Prescriptive Code Format Guide</title>
     <script src="setup.js"></script>
     <script>
-      window.StyleRT.include('RT/theme');
-      window.StyleRT.include('RT/layout/article_tech_ref');
+      window.RT.load('theme');
+      window.RT.load('layout/article_tech_ref');
     </script>
   </head>
   <body>
index d34a287..d1d1851 100644 (file)
@@ -5,8 +5,8 @@
     <title>Naming and Directory Conventions</title>
     <script src="setup.js"></script>
     <script>
-      window.StyleRT.include('RT/theme');
-      window.StyleRT.include('RT/layout/article_tech_ref');
+      window.RT.load('theme');
+      window.RT.load('layout/article_tech_ref');
     </script>
   </head>
   <body>
index d33208e..a4d345c 100644 (file)
@@ -5,8 +5,8 @@
     <title>Language Addenda (C, Python, Bash, Lisp)</title>
     <script src="setup.js"></script>
     <script>
-      window.StyleRT.include('RT/theme');
-      window.StyleRT.include('RT/layout/article_tech_ref');
+      window.RT.load('theme');
+      window.RT.load('layout/article_tech_ref');
     </script>
   </head>
   <body>