OSDN Git Service

website-obsoleted の削除 master
authormegumi_engines <megumi_engines@users.osdn.me>
Fri, 15 May 2020 05:37:53 +0000 (14:37 +0900)
committermegumi_engines <megumi_engines@users.osdn.me>
Fri, 15 May 2020 05:37:53 +0000 (14:37 +0900)
49 files changed:
website-obsoleted/build.ring [deleted file]
website-obsoleted/download.data [deleted file]
website-obsoleted/download.data.orig [deleted file]
website-obsoleted/download.template [deleted file]
website-obsoleted/download1.data [deleted file]
website-obsoleted/download1.template [deleted file]
website-obsoleted/download11.data [deleted file]
website-obsoleted/download11.template [deleted file]
website-obsoleted/download110.data [deleted file]
website-obsoleted/download110.template [deleted file]
website-obsoleted/download12.data [deleted file]
website-obsoleted/download12.template [deleted file]
website-obsoleted/download13.data [deleted file]
website-obsoleted/download13.template [deleted file]
website-obsoleted/download14.data [deleted file]
website-obsoleted/download14.template [deleted file]
website-obsoleted/download141.data [deleted file]
website-obsoleted/download141.template [deleted file]
website-obsoleted/download15.data [deleted file]
website-obsoleted/download15.template [deleted file]
website-obsoleted/download151.data [deleted file]
website-obsoleted/download151.template [deleted file]
website-obsoleted/download152.data [deleted file]
website-obsoleted/download152.template [deleted file]
website-obsoleted/download153.data [deleted file]
website-obsoleted/download153.template [deleted file]
website-obsoleted/download154.data [deleted file]
website-obsoleted/download154.template [deleted file]
website-obsoleted/download16.data [deleted file]
website-obsoleted/download16.template [deleted file]
website-obsoleted/download17.data [deleted file]
website-obsoleted/download17.template [deleted file]
website-obsoleted/download18.data [deleted file]
website-obsoleted/download18.template [deleted file]
website-obsoleted/download19.data [deleted file]
website-obsoleted/download19.template [deleted file]
website-obsoleted/downloadlist.template [deleted file]
website-obsoleted/footer.template [deleted file]
website-obsoleted/footer.template.orig [deleted file]
website-obsoleted/header.template [deleted file]
website-obsoleted/header.template.orig [deleted file]
website-obsoleted/index.template [deleted file]
website-obsoleted/news.data [deleted file]
website-obsoleted/news.template [deleted file]
website-obsoleted/pages.data [deleted file]
website-obsoleted/resources.data [deleted file]
website-obsoleted/resources.template [deleted file]
website-obsoleted/team.data [deleted file]
website-obsoleted/team.template [deleted file]

diff --git a/website-obsoleted/build.ring b/website-obsoleted/build.ring
deleted file mode 100644 (file)
index ff77225..0000000
+++ /dev/null
@@ -1,105 +0,0 @@
-/*
-       Ring programming language - Simple Website Generator
-       Version 1.0
-       http://ring-lang.net
-       2016, Mahmoud Fayed <msfclipper@yahoo.com>
-       2018, isVowel
-*/
-
-# Load the pages list from the pages.data file!
-eval(read("pages.data"))
-
-# Message after finishing an operation
-C_DONE = "\8f\88\97\9d\8a®\97¹..." + nl
-
-# The main function generate the HTML files using the aPages list
-Func Main
-       about()
-       checkfile(C_HEADER) checkfile(C_FOOTER)
-       See "\83w\83b\83_\82Ì\93Ç\82Ý\8d\9e\82Ý : " + C_HEADER  + nl
-       cHeader = read(C_HEADER) + nl
-       See "\83t\83b\83^\82Ì\93Ç\82Ý\8d\9e\82Ý : " + C_FOOTER  + nl
-       cFooter = read(C_FOOTER)
-       for x in aPages 
-               checkfile(x)
-               createPage(cHeader,x,cFooter,
-                          substr(x,".template",".html"))
-       next
-       See C_DONE
-
-# the createPage function generate html file 
-# The function add the header and the footer to the content
-Func createPage cHeader,cContent,cFooter,cOutput
-       See "\8bL\8e\96\83t\83@\83C\83\8b : " + cContent + nl
-       See "\83w\83b\83_\82ð\92Ç\89Á..." + nl
-       cStr = cHeader  
-       See "\93à\97e\82ð\92Ç\89Á..."  + nl
-       # Using template() then template2() to support using template() in the template file
-       # As we have in the download16.template
-       cContent = template(cContent,NULL)
-       cStr += template2(cContent,NULL) + nl
-       See "\83t\83b\83^\82ð\92Ç\89Á..." + nl
-       cStr += cFooter
-       See "\83t\83@\83C\83\8b\82ð\8fo\97Í : " + cOutput  + nl
-       write(cOutput,cStr)
-
-# The function check if the file exist or not before using it
-Func checkfile cFileName
-       if not fexists(cFileName) raise("Error, File " + cFileName + " doesn't exist!") ok
-
-# The function print the application information
-Func about
-       See "
-========================================================
-Simple Website Generator - Version 1.0
-2016, Mahmoud Fayed <msfclipper@yahoo.com>
-2018, isVowel (Japanization)
-========================================================
-"
-
-# The function execute Ring code inside template files
-# Then put the result/output from Ring code in the template content
-Func Template cFile,oObject
-       ? "\83e\83\93\83v\83\8c\81[\83g\82ð\93W\8aJ\82µ\82Ä\82¢\82Ü\82·..."
-       cStr = Read(cFile)
-       return Template2(cStr,oObject)
-
-Func Template2 cStr,oObject
-       aList = []
-       cResult = ""
-       cCode = ""
-       nPos = substr(cStr,"<%")
-       if nPos = 0
-               aList + cStr
-               cCode += "cResult += aList[" + len(aList) + "]" + nl
-       ok
-       while nPos > 0
-               cText = left(cStr,nPos-1)
-               if cText != ""
-                       aList + cText
-                       cCode += "cResult += aList[" + len(aList) + "]" + nl
-               ok
-               cStr = substr(cStr,nPos+2)
-               nPos = substr(cStr,"%>")
-               if nPos > 0                                     
-                       if left(cStr,1) = "="
-                               cCode += "cResult += (" + substr(cStr,2,nPos-2) + ")" + nl      
-                       else
-                               cCode += left(cStr,nPos-1) + nl                                         
-                       ok
-                       cStr = substr(cStr,nPos+2)
-               ok
-               nPos = substr(cStr,"<%")
-               if nPos = 0
-                       aList + cStr
-                       cCode += "cResult += aList[" + len(aList) + "]" + nl
-               ok
-       end
-       if not isnull(oObject)
-               oObject { 
-                       eval(cCode)
-               }
-       else
-               eval(cCode)
-       ok
-       return cResult
diff --git a/website-obsoleted/download.data b/website-obsoleted/download.data
deleted file mode 100644 (file)
index d7714d0..0000000
+++ /dev/null
@@ -1,85 +0,0 @@
-aDownload = [
-               [
-               "Windows (32/64bit)",
-                               [
-                                                [
-                                                       '完全版 (.exe) - ※通常は、こちらをダウンロードしてください<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_Ring_1.11_Windows.exe/download" target="_blank">ダウンロード  (273 MB)</a>'
-                                                ],
-
-                                                [
-                                                       '軽量版 - 組み込み、または学習用途 (.zip) ※本体内のみのため、取扱説明書は同梱しておりません。<br> ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_Ring_1.11_LightRelease_Windows_Binary.zip/download" target="_blank">ダウンロード (2.4 MB)</a>'
-                                                ]
-                               ]
-               ],
-
-               [
-               "macOS (64bit)",
-                               [
-                                                [
-                                                       'macOS 版 (.zip)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_Ring_1.11_macOS.zip/download" target="_blank">ダウンロード  (368 MB)</a>'
-                                                ]
-
-                               ]
-               ],
-
-               [
-               "Linux (64bit)",
-                               [
-                                                [
-                                                       'Ubuntu 版 (.zip)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_Ring_1.11_Ubuntu.zip/download" target="_blank">ダウンロード  (365 MB)</a>'
-                                                ],
-
-                                                [
-                                                       'Fedora 版 (.zip)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_Ring_1.11_Fedora.zip/download" target="_blank">ダウンロード  (365 MB)</a>'
-                                                ]
-                               ]
-               ],
-
-               [
-               "取扱説明書 (英語版)",
-                       [
-                                                [
-                                                       'Adobe Actobat Reader (.pdf)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_RingDoc_1.11.pdf/download" target="_blank">ダウンロード (33.5 MB)</a>'
-                                                ],
-                                                [
-                                                       'Windows ヘルプ (.chm)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_RingDoc_1.11.chm/download" target="_blank">ダウンロード (30.7 MB)</a>'
-                                                ],
-                                                [
-                                                       'Webブラウザ (.zip / .html)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_RingDoc_1.11.zip/download" target="_blank">ダウンロード (31.0 MB)</a>'
-                                                ]
-                       ]
-               ],
-
-               [
-               "そのほかのダウンロード",
-                               [
-                                                [
-                                                       '完全版のソースコード (汎用 / .zip)<br>',
-                                                       '<a href="https://github.com/ring-lang/ring/archive/ring-1.11-branch.zip" target="_blank">ダウンロード (421 MB) </a>'
-                                                ],
-
-                                                [
-                                                       '軽量版のソースコード (汎用 / .zip)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_Ring_1.11_LightRelease_SourceCode.zip/download" target="_blank">ダウンロード (665 KB) </a>'
-                                                ],
-
-                                                [
-                                                       'そのほかのバージョン (GitHub)<br>',
-                                                       '<a href="https://github.com/ring-lang/ring/releases" target="_blank">サイトへ移動</a>'
-                                                ],
-
-                                                [
-                                                       'そのほかのバージョン (SorceForge)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/" target="_blank">サイトへ移動</a>'
-                                                ]
-                               ]
-               ]
-]
\ No newline at end of file
diff --git a/website-obsoleted/download.data.orig b/website-obsoleted/download.data.orig
deleted file mode 100644 (file)
index 33a1081..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-aDownload = [
-               ["Ring 1.11 すべての動作環境",[
-                                                [
-                                                       'Ring 1.11 Windows 版 (32bit および 64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_Ring_1.11_Windows.exe/download" target="_blank">ダウンロード  (261 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.11 Ubuntu Linux 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_Ring_1.11_Ubuntu.zip/download" target="_blank">ダウンロード  (362 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.11 Fedora Linux 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_Ring_1.11_Fedora.zip/download" target="_blank">ダウンロード  (362 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.11 macOS 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_Ring_1.11_macOS.zip/download" target="_blank">ダウンロード  (365 MB)</a>'
-                                                ],                                              
-                                                
-                                                [
-                                                       'Ring 1.11 (Ring 本体のみ - ソースコード - すべての動作環境) <br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_Ring_1.11_LightRelease_SourceCode.zip/download" target="_blank">ダウンロード (665 KB) </a>'
-                                                ],
-                                                [
-                                                       'Ring 1.11 (Ring 本体のみ - Windows バイナリ) <br> ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_Ring_1.11_LightRelease_Windows_Binary.zip/download" target="_blank">ダウンロード (2.4 MB)</a>'
-                                                ],                                      
-                                                [
-                                                       'Ring 1.11 取扱説明書 (PDF 形式) ',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_RingDoc_1.11.pdf/download" target="_blank">ダウンロード (33.5 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.11 取扱説明書 (CHM 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_RingDoc_1.11.chm/download" target="_blank">ダウンロード (30.7 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.11 取扱説明書 (HTML 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.11/Fayed_RingDoc_1.11.zip/download" target="_blank">ダウンロード (31.0 MB)</a>'
-                                                ]
-                                                
-                       ]
-               ]
-]
diff --git a/website-obsoleted/download.template b/website-obsoleted/download.template
deleted file mode 100644 (file)
index 6857075..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download.data"))   %>
-<%= read("downloadlist.template") %>
\ No newline at end of file
diff --git a/website-obsoleted/download1.data b/website-obsoleted/download1.data
deleted file mode 100644 (file)
index 1c7b4c1..0000000
+++ /dev/null
@@ -1,79 +0,0 @@
-aDownload = [
-               ["Ring 1.0 バイナリ",[
-                                [
-                                       'Ring 1.0 Microsoft Windows 版',
-                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_Ring_1.0_win32_binary_release.zip/download" target="_blank">ダウンロード</a>',
-                                       '<img src="ringwin.jpg" width="40%">'
-                                ],
-                                [
-                                       'Ring 1.0 Ubuntu Linux 版',
-                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_Ring_1.0_Ubuntu_32bit_binary_release.zip/download" target="_blank">ダウンロード</a>',
-                                       '<img src="ringubuntu.jpg" width="40%">'
-                                ],
-                                [
-                                       'Ring 1.0 MacOS X 版',
-                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_Ring_1.0_MacOSX_64bit_binary_release.zip/download" target="_blank">ダウンロード</a>',
-                                       '<img src="ringmac.png" width="40%">'
-                                ],
-                                [
-                                       'Ring 1.0 用の Qt を使用したモバイルアプリケーション開発',
-                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_Ring_1.0_MobileAppDevelopment_Qt_Project.zip/download" target="_blank">ダウンロード</a>',
-                                       '<img src="ringandroid.png" width="40%">'
-                                ]
-                               ]
-               ],
-               ["Ring 1.0 ソースコード",[
-                                                [
-                                                       'Ring 1.0 ソースコード',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_Ring_1.0_Source_Code.zip/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="ringvisualsrc1.jpg" width="40%">'
-                                                ]
-                                             ]
-               ],
-               ["Ring 1.0 取扱説明書",[
-                                                [
-                                                       'Ring 1.0 取扱説明書 (PDF 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_RingDoc_1.0.pdf/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="book1.jpg" width="40%">'
-                                                ],
-                                                [
-                                                       'Ring 1.0 取扱説明書 (CHM 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_RingDoc_1.0.chm/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="book2.jpg" width="40%">'
-                                                ]
-                                             ]
-               ],
-               ["Ring 1.0 ライブラリとツール",[
-                                [
-                                       'WebLib 1.0 ソースコード (Ring 用の CGI ライブラリ)',
-                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_WebLib_1.0_source_code_release.zip/download" target="_blank">ダウンロード</a>',
-                                       '<img src="weblib.jpg" width="40%">'
-                                ],
-                                [
-                                       'Ring 拡張機能 Notepad++ 用',
-                                       '<a href="https://github.com/AbdelrahmanGIT/Ring_for_NotePad_plus_plus" target="_blank">ダウンロード</a>',
-                                       '<img src="notepadpp.png" width="40%">'
-                                ],
-                                [
-                                       'Ring 拡張機能 Visual Studio 用',
-                                       '<a href="https://github.com/ahmadomar/RingForVS" target="_blank">ダウンロード</a>',
-                                       '<img src="ringvs.png" width="40%">'
-                                ],
-                                [
-                                       'Ring 拡張機能 Sublime Text 2 用',
-                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_SublimeText2_ SyntaxColoringForRing.zip/download" target="_blank">ダウンロード</a>',
-                                       '<img src="ringsublime.jpg" width="40%">'
-                                ],
-                                [
-                                       'Ring 拡張機能 Geany 用',
-                                       '<a href="https://github.com/magdy-ragab/Geany-support-for-Ring-programming-language" target="_blank">ダウンロード</a>',
-                                       '<img src="ringgeany.png" width="40%">'
-                                ],
-                                                                [
-                                       'Ring 拡張機能 Atom 用',
-                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_AtomEditor_Language_Ring.zip/download" target="_blank">ダウンロード</a>',
-                                       '<img src="ringatom.jpg" width="40%">'
-                                ]
-                               ]
-               ]
-]
diff --git a/website-obsoleted/download1.template b/website-obsoleted/download1.template
deleted file mode 100644 (file)
index 77b3314..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download1.data")) %>
-<%= read("downloadlist.template") %>
diff --git a/website-obsoleted/download11.data b/website-obsoleted/download11.data
deleted file mode 100644 (file)
index 303306c..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-aDownload = [
-               ["Ring 1.1 すべての動作環境",[
-                                                [
-                                                       'Ring 1.1 (すべての動作環境)',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.1/Fayed_Ring_1.1_All_Platforms.zip/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="ring11.jpg" width="40%">'
-                                                ],
-                                                [
-                                                       'Ring 1.1 取扱説明書 (PDF 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.1/Fayed_RingDoc_1.1.pdf/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="book3.jpg" width="40%">'
-                                                ],
-                                                [
-                                                       'Ring 1.1 取扱説明書 (CHM 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.1/Fayed_RingDoc_1.1.chm/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="book4.jpg" width="40%">'
-                                                ]
-                       ]
-               ]
-]
diff --git a/website-obsoleted/download11.template b/website-obsoleted/download11.template
deleted file mode 100644 (file)
index 47ade5b..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download11.data")) %>
-<%= read("downloadlist.template") %>
diff --git a/website-obsoleted/download110.data b/website-obsoleted/download110.data
deleted file mode 100644 (file)
index db5d961..0000000
+++ /dev/null
@@ -1,63 +0,0 @@
-aDownload = [
-               ["Ring 1.10 すべての動作環境",[                 
-                                                [
-                                                       'Ring 1.10 Windows 版 (32bit および 64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.10/Fayed_Ring_1.10_Windows.exe/download" target="_blank">ダウンロード  (203 MB)</a>'                                           
-                                                ],
-                                                [
-                                                       'Ring 1.10 Ubuntu Linux 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.10/Fayed_Ring_1.10_Ubuntu.zip/download" target="_blank">ダウンロード  (319 MB)</a>'                                            
-                                                ],
-                                                [
-                                                       'Ring 1.10 Fedora Linux 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.10/Fayed_Ring_1.10_Fedora.zip/download" target="_blank">ダウンロード  (319 MB)</a>'                                            
-                                                ],                                              
-                                                [
-                                                       'Ring 1.10 macOS 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.10/Fayed_Ring_1.10_macOS.zip/download" target="_blank">ダウンロード  (319 MB)</a>'                                             
-                                                ],                                              
-                                                [
-                                                       'Ring 1.10 (Ring 本体のみ - ソースコード - すべての動作環境) <br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.10/Fayed_Ring_1.10_LightRelease_SourceCode.zip/download" target="_blank">ダウンロード (611 KB) </a>'
-                                                ],
-                                                [
-                                                       'Ring 1.10 (Ring 本体のみ - Windows バイナリ) <br> ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.10/Fayed_Ring_1.10_LightRelease_Windows_Binary.zip/download" target="_blank">ダウンロード (2.2 MB)</a>'
-                                                ],                                              
-                                                [
-                                                       'Ring 1.10 取扱説明書 (PDF 形式) ',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.10/Fayed_RingDoc_1.10.pdf/download" target="_blank">ダウンロード (28.5 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.10 取扱説明書 (CHM 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.10/Fayed_RingDoc_1.10.chm/download" target="_blank">ダウンロード (25.6 MB)</a>'                                                       
-                                                ],
-                                                [
-                                                       'Ring 1.10 取扱説明書 (HTML 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.10/Fayed_RingDoc_1.10.zip/download" target="_blank">ダウンロード (25.9 MB)</a>'                                                       
-                                                ]
-                                       ]
-               ],
-               ["Ring 1.10 取扱説明書 (日本語最終版) - Codename: Matsumoto-station",[
-                                                [
-                                                       'Ring 1.10 取扱説明書 (日本語版 - CHM 形式)',
-                                                       '<a href="https://osdn.net/dl/ring-lang-081/isVowel_RingDoc_1.10-matsumoto.chm" target="_blank">ダウンロード (24.7 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.10 取扱説明書 (日本語版 - HTML 形式)',
-                                                       '<a href="https://osdn.net/dl/ring-lang-081/isVowel_RingDoc_1.10-matsumoto.zip" target="_blank">ダウンロード (24.9 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.10 取扱説明書 (日本語版 - ePub 形式)',
-                                                       '<a href="https://osdn.net/dl/ring-lang-081/isVowel_RingDoc_1.10-matsumoto.epub" target="_blank">ダウンロード (23.9 MB)</a>'
-                                                ]
-                               ]
-               ],
-               ["Ring 1.10 日本語キット (テスト版)",[
-                                                [
-                                                       'Ring 1.10 日本語キット rel.001 - Amaharashi (chm, ePub, html, Sphinix 形式の取扱説明書、Ring ノートパッド、フォームデザイナーなどのローカライズ版)',
-                                                       '<a href="https://osdn.net/dl/ring-lang-081/isVowel_JK_Ring_1.10_r001_amaharashi.zip" target="_blank">ダウンロード (106.5 MB)</a>'
-                                                ]
-                               ]
-               ]
-]
diff --git a/website-obsoleted/download110.template b/website-obsoleted/download110.template
deleted file mode 100644 (file)
index 0221000..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download110.data"))   %>
-<%= read("downloadlist.template") %>
\ No newline at end of file
diff --git a/website-obsoleted/download12.data b/website-obsoleted/download12.data
deleted file mode 100644 (file)
index 0d4b1f3..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-aDownload = [
-               ["Ring 1.2 すべての動作環境",[
-                                                [
-                                                       'Ring 1.2 (すべての動作環境)',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.2/Fayed_Ring_1.2_All_Platforms.zip/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="ring12.jpg" width="40%">'
-                                                ],
-                                                [
-                                                       'Ring 1.2 取扱説明書 (PDF 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.2/Fayed_RingDoc_1.2.pdf/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="book5.jpg" width="40%">'
-                                                ],
-                                                [
-                                                       'Ring 1.2 取扱説明書 (CHM 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.2/Fayed_RingDoc_1.2.chm/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="book6.jpg" width="40%">'
-                                                ]
-                       ]
-               ]
-]
diff --git a/website-obsoleted/download12.template b/website-obsoleted/download12.template
deleted file mode 100644 (file)
index c158375..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download12.data")) %>
-<%= read("downloadlist.template") %>
diff --git a/website-obsoleted/download13.data b/website-obsoleted/download13.data
deleted file mode 100644 (file)
index 67677cb..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-aDownload = [
-               ["Ring 1.3 すべての動作環境",[
-                                                [
-                                                       'Ring 1.3 (すべての動作環境)',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.3/Fayed_Ring_1.3_All_Platforms.zip/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="ring13.jpg" width="40%">'
-                                                ],
-                                                [
-                                                       'Ring 1.3 取扱説明書 (PDF 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.3/Fayed_RingDoc_1.3.pdf/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="book7.jpg" width="40%">'
-                                                ],
-                                                [
-                                                       'Ring 1.3 取扱説明書 (CHM 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.3/Fayed_RingDoc_1.3.chm/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="book8.jpg" width="40%">'
-                                                ]
-                       ]
-               ]
-]
diff --git a/website-obsoleted/download13.template b/website-obsoleted/download13.template
deleted file mode 100644 (file)
index 57fd3a2..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download13.data")) %>
-<%= read("downloadlist.template") %>
diff --git a/website-obsoleted/download14.data b/website-obsoleted/download14.data
deleted file mode 100644 (file)
index 3cb793b..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-aDownload = [
-               ["Ring 1.4 すべての動作環境",[
-                                                [
-                                                       'Ring 1.4 (すべての動作環境)',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.4/Fayed_Ring_1.4_All_Platforms.zip/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="ring14.jpg" width="40%">'
-                                                ],
-                                                [
-                                                       'Ring 1.4 取扱説明書 (PDF 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.4/Fayed_RingDoc_1.4.pdf/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="book9.jpg" width="40%">'
-                                                ],
-                                                [
-                                                       'Ring 1.4 取扱説明書 (CHM 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.4/Fayed_RingDoc_1.4.chm/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="book10.jpg" width="40%">'
-                                                ]
-                       ]
-               ]
-]
diff --git a/website-obsoleted/download14.template b/website-obsoleted/download14.template
deleted file mode 100644 (file)
index 1b59cbd..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download14.data")) %>
-<%= read("downloadlist.template") %>
diff --git a/website-obsoleted/download141.data b/website-obsoleted/download141.data
deleted file mode 100644 (file)
index 10844c5..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-aDownload = [
-               ["Ring 1.4.1 すべての動作環境",[
-                                                [
-                                                       'Ring 1.4.1 (すべての動作環境)',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.4.1/Fayed_Ring_1.4.1_All_Platforms.zip/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="ring15.png" width="40%">'
-                                                ],
-                                                [
-                                                       'Ring 1.4.1 取扱説明書 (PDF 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.4.1/Fayed_RingDoc_1.4.1.pdf/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="book11.jpg" width="40%">'
-                                                ],
-                                                [
-                                                       'Ring 1.4.1 取扱説明書 (CHM 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.4.1/Fayed_RingDoc_1.4.1.chm/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="book12.jpg" width="40%">'
-                                                ]
-                       ]
-               ]
-]
diff --git a/website-obsoleted/download141.template b/website-obsoleted/download141.template
deleted file mode 100644 (file)
index 74ff9a5..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download141.data")) %>
-<%= read("downloadlist.template") %>
diff --git a/website-obsoleted/download15.data b/website-obsoleted/download15.data
deleted file mode 100644 (file)
index 464a4c8..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-aDownload = [
-               ["Ring 1.5 すべての動作環境",[
-                                                [
-                                                       'Ring 1.5 (すべての動作環境) - (必要容量 : 223 MB) <br> 収録内容 (全部入り) :- <br> (1) Windows バイナリ版 <br> (2) Windows, Linux  および MacOS X でビルドするためのソースコード <br> (3) Android ゲーム用 RingLibSDL <br> (4) モバイルアプリケーション用の RingQt (Android, iPhone, など) <br> (5) ビジュアルソースコード (PWCT) <br> (6) 取扱説明書 (HTML, CHM および PDF 形式) <br> (7) ライブラリ (GUILib, StdLib, WebLib, Natural, など) <br> (8) エディタ拡張機能 (Notepad++, Atom, Sublime, など) <br>  ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5/Fayed_Ring_1.5_All_Platforms.zip/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="ring16.png" width="40%">'
-                                                ],
-                                                [
-                                                       'Ring 1.5 (Windows バイナリ版) - (必要容量 : 77.9 MB) <br> 収録内容 :- <br> (1) Windows バイナリ版 <br> (2) 取扱説明書 (HTML, CHM および PDF 形式)  <br> (3) ライブラリ (GUILib, StdLib, WebLib, Natural, etc) ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5/Fayed_Ring_1.5_For_Windows_Binary_Release.exe/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="ring13.jpg" width="40%">'
-                                                ],
-                                                [
-                                                       'Ring 1.5 (Ring 本体のみ - ソースコード) - (必要容量 : 134 KB) <br> 収録内容 :- <br> (1) コンパイラ+仮想計算機 (ANSI C) <br> (2) Windows, Linux および MacOS X でビルドするためのソースコード<br> (3) 標準関数 (文字列、算術、ファイルなど) <br> (4) 実用的コンソールアプリケーション <br> (5) C/C++ プロジェクトへの組み込み機能',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5/Fayed_Ring_1.5_LightRelease_SourceCode.zip/download" target="_blank">ダウンロード</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.5 (Ring 本体のみ - Windows バイナリ) - (必要容量 : 621 KB) <br> 収録内容 :- <br> (1) コンパイラ+仮想計算機 (ANSI C) <br> (2) Windows, Linux および MacOS X でビルドするためのソースコード<br> (3) Windows バイナリ版 (EXE, DLL) <br> (4) 標準関数 (文字列、算術、ファイルなど) <br> (5) 実用的コンソールアプリケーション <br> (6) C/C++ プロジェクトへの組み込み機能 <br> (7) 任意のプログラミング言語への組み込み機能 (DLL ファイル)',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5/Fayed_Ring_1.5_LightRelease_Windows_Binary.zip/download" target="_blank">ダウンロード</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.5 取扱説明書 (PDF 形式) - (必要容量 : 15.1 MB) ',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.5/Fayed_RingDoc_1.5.pdf/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="book13.jpg" width="40%">'
-                                                ],
-                                                [
-                                                       'Ring 1.5 取扱説明書 (CHM 形式) - (必要容量 : 11.6 MB) ',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.5/Fayed_RingDoc_1.5.chm/download" target="_blank">ダウンロード</a>',
-                                                       '<img src="book14.jpg" width="40%">'
-                                                ]
-                       ]
-               ]
-]
diff --git a/website-obsoleted/download15.template b/website-obsoleted/download15.template
deleted file mode 100644 (file)
index 1c77a11..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download15.data")) %>
-<%= read("downloadlist.template") %>
diff --git a/website-obsoleted/download151.data b/website-obsoleted/download151.data
deleted file mode 100644 (file)
index 353a435..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-aDownload = [
-               ["Ring 1.5.1 すべての動作環境",[
-                                                [
-                                                       'Ring 1.5.1 (すべての動作環境) <br> 収録内容 (全部入り) :- <br> (1) Windows バイナリ版 <br> (2) Windows, Linux  および MacOS X でビルドするためのソースコード <br> (3) Android ゲーム用 RingLibSDL <br> (4) モバイルアプリケーション用の RingQt (Android, iPhone, など) <br> (5) ビジュアルソースコード (PWCT) <br> (6) 取扱説明書 (HTML, CHM および PDF 形式) <br> (7) ライブラリ (GUILib, StdLib, WebLib, Natural, など) <br> (8) エディタ拡張機能 (Notepad++, Atom, Sublime, など) <br>  ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5.1/Fayed_Ring_1.5.1_All_Platforms.zip/download" target="_blank">ダウンロード  (222 MB)</a>'                                           
-                                                ],
-                                                [
-                                                       'Ring 1.5.1 (Windows バイナリ版) <br> 収録内容 :- <br> (1) Windows バイナリ版 <br> (2) 取扱説明書 (HTML, CHM および PDF 形式) <br> (3) ライブラリ (GUILib, StdLib, WebLib, Natural, など) ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5.1/Fayed_Ring_1.5.1_For_Windows_Binary_Release.exe/download" target="_blank">ダウンロード (78.5 MB)</a>'
-                                                ],                                              
-                                                [
-                                                       'Ring 1.5.1 (Ring 本体のみ - ソースコード) <br> 収録内容 :- <br> (1) コンパイラ+仮想計算機 (ANSI C) <br> (2) Windows, Linux および MacOS X でビルドするためのソースコード <br> (3) 標準関数 (文字列、算術、ファイルなど) <br> (4) 実用的コンソールアプリケーション <br> (5) C/C++ プロジェクトへの組み込み機能',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5.1/Fayed_Ring_1.5.1_LightRelease_SourceCode.zip/download" target="_blank">ダウンロード (135 KB) </a>'
-                                                ],
-                                                [
-                                                       'Ring 1.5.1 (Ring 本体のみ - Windows バイナリ) <br> 収録内容 :- <br> (1) コンパイラ+仮想計算機 (ANSI C) <br> (2) Windows, Linux および MacOS X でビルドするためのソースコード <br> (3) Windows バイナリ版 (EXE, DLL) <br> (4) 標準関数 (文字列、算術、ファイルなど) <br> (5) 実用的コンソールアプリケーション <br> (6) C/C++ プロジェクトへの組み込み機能 <br> (7) 任意のプログラミング言語への組み込み機能 (DLL ファイル)',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5.1/Fayed_Ring_1.5.1_LightRelease_Windows_Binary.zip/download" target="_blank">ダウンロード (400 KB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.5.1 取扱説明書 (PDF 形式) ',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.5.1/Fayed_RingDoc_1.5.1.pdf/download" target="_blank">ダウンロード (15.1 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.5.1 取扱説明書 (CHM 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.5.1/Fayed_RingDoc_1.5.1.chm/download" target="_blank">ダウンロード (11.8 MB)</a>'                                                     
-                                                ]
-                                                
-                       ]
-               ]
-]
diff --git a/website-obsoleted/download151.template b/website-obsoleted/download151.template
deleted file mode 100644 (file)
index 2a5406c..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download151.data")) %>
-<%= read("downloadlist.template") %>
diff --git a/website-obsoleted/download152.data b/website-obsoleted/download152.data
deleted file mode 100644 (file)
index 4064e16..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-aDownload = [
-               ["Ring 1.5.2 すべての動作環境",[
-                                                [
-                                                       'Ring 1.5.2 (すべての動作環境) <br> 収録内容 (全部入り) :- <br> (1) Windows バイナリ版 <br> (2) Windows, Linux  および MacOS X でビルドするためのソースコード <br> (3) Android ゲーム用 RingLibSDL <br> (4) モバイルアプリケーション用の RingQt (Android, iPhone, など) <br> (5) ビジュアルソースコード (PWCT) <br> (6) 取扱説明書 (HTML, CHM および PDF 形式) <br> (7) ライブラリ (GUILib, StdLib, WebLib, Natural, など) <br> (8) エディタ拡張機能 (Notepad++, Atom, Sublime, など) <br>  ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5.2/Fayed_Ring_1.5.2_All_Platforms.zip/download" target="_blank">ダウンロード  (224 MB)</a>'                                           
-                                                ],
-                                                [
-                                                       'Ring 1.5.2 (Windows バイナリ版) <br> 収録内容 :- <br> (1) Windows バイナリ版 <br> (2) 取扱説明書 (HTML, CHM および PDF 形式) <br> (3) ライブラリ (GUILib, StdLib, WebLib, Natural, など) ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5.2/Fayed_Ring_1.5.2_For_Windows_Binary_Release.exe/download" target="_blank">ダウンロード (80.1 MB)</a>'
-                                                ],                                              
-                                                [
-                                                       'Ring 1.5.2 (Ring 本体のみ - ソースコード) <br> 収録内容 :- <br> (1) コンパイラ+仮想計算機 (ANSI C) <br> (2) Windows, Linux  および MacOS X でビルドするためのソースコード <br> (3) 標準関数 (文字列、算術、ファイルなど) <br> (4) 実用的コンソールアプリケーション <br> (5) C/C++ プロジェクトへの組み込み機能',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5.2/Fayed_Ring_1.5.2_LightRelease_SourceCode.zip/download" target="_blank">ダウンロード (136 KB) </a>'
-                                                ],
-                                                [
-                                                       'Ring 1.5.2 (Ring 本体のみ - Windows バイナリ) <br> 収録内容 :- <br> (1) コンパイラ+仮想計算機 (ANSI C) <br> (2) Windows, Linux  および MacOS X でビルドするためのソースコード <br> (3) Windows バイナリ版 (EXE, DLL) <br> (4) 標準関数 (文字列、算術、ファイルなど) <br> (5) 実用的コンソールアプリケーション <br> (6) C/C++ プロジェクトへの組み込み機能 <br> (7) 任意のプログラミング言語への組み込み機能 (DLL ファイル)',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5.2/Fayed_Ring_1.5.2_LightRelease_Windows_Binary.zip/download" target="_blank">ダウンロード (402 KB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.5.2 取扱説明書 (PDF 形式) ',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.5.2/Fayed_RingDoc_1.5.2.pdf/download" target="_blank">ダウンロード (15.9 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.5.2 取扱説明書 (CHM 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.5.2/Fayed_RingDoc_1.5.2.chm/download" target="_blank">ダウンロード (12.3 MB)</a>'                                                     
-                                                ],
-                                                [
-                                                       'Ring 1.5.2 取扱説明書 (HTML 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.5.2/Fayed_RingDoc_1.5.2.zip/download" target="_blank">ダウンロード (12.6 MB)</a>'                                                     
-                                                ]
-                                                
-                       ]
-               ]
-]
diff --git a/website-obsoleted/download152.template b/website-obsoleted/download152.template
deleted file mode 100644 (file)
index 068eda0..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download152.data")) %>
-<%= read("downloadlist.template") %>
diff --git a/website-obsoleted/download153.data b/website-obsoleted/download153.data
deleted file mode 100644 (file)
index 6f698b8..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-aDownload = [
-               ["Ring 1.5.3 すべての動作環境",[
-                                                [
-                                                       'Ring 1.5.3 (すべての動作環境) <br> 収録内容 (全部入り) :- <br> (1) Windows バイナリ版 <br> (2) Windows, Linux  および MacOS X でビルドするためのソースコード <br> (3) Android ゲーム用 RingLibSDL <br> (4) モバイルアプリケーション用の RingQt (Android, iPhone, など) <br> (5) ビジュアルソースコード (PWCT) <br> (6) 取扱説明書 (HTML, CHM および PDF 形式) <br> (7) ライブラリ (GUILib, StdLib, WebLib, Natural, など) <br> (8) エディタ拡張機能 (Notepad++, Atom, Sublime, など) <br>  ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5.3/Fayed_Ring_1.5.3_All_Platforms.zip/download" target="_blank">ダウンロード  (233 MB)</a>'                                           
-                                                ],
-                                                [
-                                                       'Ring 1.5.3 (Windows バイナリ版) <br> 収録内容 :- <br> (1) Windows バイナリ版 <br> (2) 取扱説明書 (HTML, CHM および PDF 形式) <br> (3) ライブラリ (GUILib, StdLib, WebLib, Natural, など) ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5.3/Fayed_Ring_1.5.3_For_Windows_Binary_Release.exe/download" target="_blank">ダウンロード (84.8 MB)</a>'
-                                                ],                                              
-                                                [
-                                                       'Ring 1.5.3 (Ring 本体のみ - ソースコード) <br> 収録内容 :- <br> (1) コンパイラ+仮想計算機 (ANSI C) <br> (2) Windows, Linux  および MacOS X でビルドするためのソースコード <br> (3) 標準関数 (文字列、算術、ファイルなど) <br> (4) 実用的コンソールアプリケーション <br> (5) C/C++ プロジェクトへの組み込み機能',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5.3/Fayed_Ring_1.5.3_LightRelease_SourceCode.zip/download" target="_blank">ダウンロード (137 KB) </a>'
-                                                ],
-                                                [
-                                                       'Ring 1.5.3 (Ring 本体のみ - Windows バイナリ) <br> 収録内容 :- <br> (1) コンパイラ+仮想計算機 (ANSI C) <br> (2) Windows, Linux  および MacOS X でビルドするためのソースコード <br> (3) Windows バイナリ版 (EXE, DLL) <br> (4) 標準関数 (文字列、算術、ファイルなど) <br> (5) 実用的コンソールアプリケーション <br> (6) C/C++ プロジェクトへの組み込み機能 <br> (7) 任意のプログラミング言語への組み込み機能 (DLL ファイル)',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5.3/Fayed_Ring_1.5.3_LightRelease_Windows_Binary.zip/download" target="_blank">ダウンロード (402 KB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.5.3 取扱説明書 (PDF 形式) ',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.5.3/Fayed_RingDoc_1.5.3.pdf/download" target="_blank">ダウンロード (17.6 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.5.3 取扱説明書 (CHM 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.5.3/Fayed_RingDoc_1.5.3.chm/download" target="_blank">ダウンロード (14.0 MB)</a>'                                                     
-                                                ],
-                                                [
-                                                       'Ring 1.5.3 取扱説明書 (HTML 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.5.3/Fayed_RingDoc_1.5.3.zip/download" target="_blank">ダウンロード (14.3 MB)</a>'                                                     
-                                                ]
-                                                
-                       ]
-               ]
-]
diff --git a/website-obsoleted/download153.template b/website-obsoleted/download153.template
deleted file mode 100644 (file)
index 1399390..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download153.data")) %>
-<%= read("downloadlist.template") %>
diff --git a/website-obsoleted/download154.data b/website-obsoleted/download154.data
deleted file mode 100644 (file)
index 8ad1abb..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-aDownload = [
-               ["Ring 1.5.4 すべての動作環境",[
-                                                [
-                                                       'Ring 1.5.4 (すべての動作環境) <br> 収録内容 (全部入り) :- <br> (1) Windows バイナリ版 <br> (2) Windows, Linux  および MacOS X でビルドするためのソースコード <br> (3) Android ゲーム用 RingLibSDL <br> (4) モバイルアプリケーション用の RingQt (Android, iPhone, など) <br> (5) ビジュアルソースコード (PWCT) <br> (6) 取扱説明書 (HTML, CHM および PDF 形式) <br> (7) ライブラリ (GUILib, StdLib, WebLib, Natural, など) <br> (8) エディタ拡張機能 (Notepad++, Atom, Sublime, など) <br>  ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5.4/Fayed_Ring_1.5.4_All_Platforms.zip/download" target="_blank">ダウンロード  (234 MB)</a>'                                           
-                                                ],
-                                                [
-                                                       'Ring 1.5.4 (Windows バイナリ版) <br> 収録内容 :- <br> (1) Windows バイナリ版 <br> (2) 取扱説明書 (HTML, CHM および PDF 形式) <br> (3) ライブラリ (GUILib, StdLib, WebLib, Natural, など) ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5.4/Fayed_Ring_1.5.4_For_Windows_Binary_Release.exe/download" target="_blank">ダウンロード (84.1 MB)</a>'
-                                                ],                                              
-                                                [
-                                                       'Ring 1.5.4 (Ring 本体のみ - ソースコード) <br> 収録内容 :- <br> (1) コンパイラ+仮想計算機 (ANSI C) <br> (2) Windows, Linux  および MacOS X でビルドするためのソースコード <br> (3) 標準関数 (文字列、算術、ファイルなど) <br> (4) 実用的コンソールアプリケーション <br> (5) C/C++ プロジェクトへの組み込み機能',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5.4/Fayed_Ring_1.5.4_LightRelease_SourceCode.zip/download" target="_blank">ダウンロード (142 KB) </a>'
-                                                ],
-                                                [
-                                                       'Ring 1.5.4 (Ring 本体のみ - Windows バイナリ) <br> 収録内容 :- <br> (1) コンパイラ+仮想計算機 (ANSI C) <br> (2) Windows, Linux  および MacOS X でビルドするためのソースコード <br> (3) Windows バイナリ版 (EXE, DLL) <br> (4) 標準関数 (文字列、算術、ファイルなど) <br> (5) 実用的コンソールアプリケーション <br> (6) C/C++ プロジェクトへの組み込み機能 <br> (7) 任意のプログラミング言語への組み込み機能 (DLL ファイル)',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.5.4/Fayed_Ring_1.5.4_LightRelease_Windows_Binary.zip/download" target="_blank">ダウンロード (415 KB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.5.4 取扱説明書 (PDF 形式) ',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.5.4/Fayed_RingDoc_1.5.4.pdf/download" target="_blank">ダウンロード (17.6 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.5.4 取扱説明書 (CHM 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.5.4/Fayed_RingDoc_1.5.4.chm/download" target="_blank">ダウンロード (14.0 MB)</a>'                                                     
-                                                ],
-                                                [
-                                                       'Ring 1.5.4 取扱説明書 (HTML 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.5.4/Fayed_RingDoc_1.5.4.zip/download" target="_blank">ダウンロード (14.3 MB)</a>'                                                     
-                                                ]
-                                                
-                       ]
-               ]
-]
diff --git a/website-obsoleted/download154.template b/website-obsoleted/download154.template
deleted file mode 100644 (file)
index 6d3e312..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download154.data")) %>
-<%= read("downloadlist.template") %>
diff --git a/website-obsoleted/download16.data b/website-obsoleted/download16.data
deleted file mode 100644 (file)
index e3ea7f3..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-aDownload = [
-               ["Ring 1.6 すべての動作環境",[
-                                                [
-                                                       'Ring 1.6  Windows 版 (32bit and 64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.6/Fayed_Ring_1.6_All_Platforms.exe/download" target="_blank">ダウンロード  (107 MB)</a>'                                               
-                                                ],
-                                                [
-                                                       'Ring 1.6 Ubuntu Linux 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.6/Fayed_Ring_1.6_All_Platforms_Ubuntu.zip/download" target="_blank">ダウンロード  (189 MB)</a>'                                                
-                                                ],     
-                                                [
-                                                       'Ring 1.6 Fedora Linux 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.6/Fayed_Ring_1.6_All_Platforms_Fedora.zip/download" target="_blank">ダウンロード  (189 MB)</a>'                                                
-                                                ],                                                      
-                                                [
-                                                       'Ring 1.6 macOS 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.6/Fayed_Ring_1.6_All_Platforms_macOS.zip/download" target="_blank">ダウンロード  (191 MB)</a>'                                         
-                                                ],
-                                                [
-                                                       'Ring 1.6 (Ring 本体のみ - ソースコード - すべての動作環境) <br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.6/Fayed_Ring_1.6_LightRelease_SourceCode.zip/download" target="_blank">ダウンロード (145 KB) </a>'
-                                                ],
-                                                [
-                                                       'Ring 1.6 (Ring 本体のみ - Windows バイナリ) <br> ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.6/Fayed_Ring_1.6_LightRelease_Windows_Binary.zip/download" target="_blank">ダウンロード (512 KB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.6 取扱説明書 (PDF 形式) ',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.6/Fayed_RingDoc_1.6.pdf/download" target="_blank">ダウンロード (18.6 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.6 取扱説明書 (CHM 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.6/Fayed_RingDoc_1.6.chm/download" target="_blank">ダウンロード (15.0 MB)</a>'                                                 
-                                                ],
-                                                [
-                                                       'Ring 1.6 取扱説明書 (HTML 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.6/Fayed_RingDoc_1.6.zip/download" target="_blank">ダウンロード (15.2 MB)</a>'                                                 
-                                                ]
-                                                
-                       ]
-               ]
-]
diff --git a/website-obsoleted/download16.template b/website-obsoleted/download16.template
deleted file mode 100644 (file)
index e928cbb..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download16.data")) %>
-<%= read("downloadlist.template") %>
diff --git a/website-obsoleted/download17.data b/website-obsoleted/download17.data
deleted file mode 100644 (file)
index d2d9746..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-aDownload = [
-               ["Ring 1.7 すべての動作環境",[                  
-                                                [
-                                                       'Ring 1.7 Windows 版 (32bit および 64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.7/Fayed_Ring_1.7_All_Platforms.exe/download" target="_blank">ダウンロード  (109 MB)</a>'                                               
-                                                ],
-                                                [
-                                                       'Ring 1.7 Ubuntu Linux 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.7/Fayed_Ring_1.7_All_Platforms_Ubuntu.zip/download" target="_blank">ダウンロード  (191 MB)</a>'                                                
-                                                ],
-                                                [
-                                                       'Ring 1.7 Fedora Linux 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.7/Fayed_Ring_1.7_All_Platforms_Fedora.zip/download" target="_blank">ダウンロード  (191 MB)</a>'                                                
-                                                ],                                              
-                                                [
-                                                       'Ring 1.7 macOS 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.7/Fayed_Ring_1.7_All_Platforms_macOS.zip/download" target="_blank">ダウンロード  (194 MB)</a>'                                         
-                                                ],                                              
-                                                [
-                                                       'Ring 1.7 (Ring 本体のみ - ソースコード - すべての動作環境) <br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.7/Fayed_Ring_1.7_LightRelease_SourceCode.zip/download" target="_blank">ダウンロード (147 KB) </a>'
-                                                ],
-                                                [
-                                                       'Ring 1.7 (Ring 本体のみ - Windows バイナリ) <br> ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.7/Fayed_Ring_1.7_LightRelease_Windows_Binary.zip/download" target="_blank">ダウンロード (517 KB)</a>'
-                                                ],                                              
-                                                [
-                                                       'Ring 1.7 取扱説明書 (PDF 形式) ',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.7/Fayed_RingDoc_1.7.pdf/download" target="_blank">ダウンロード (18.9 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.7 取扱説明書 (CHM 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.7/Fayed_RingDoc_1.7.chm/download" target="_blank">ダウンロード (15.4 MB)</a>'                                                 
-                                                ],
-                                                [
-                                                       'Ring 1.7 取扱説明書 (HTML 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.7/Fayed_RingDoc_1.7.zip/download" target="_blank">ダウンロード (15.6 MB)</a>'                                                 
-                                                ]
-                                                
-                       ]
-               ]
-]
diff --git a/website-obsoleted/download17.template b/website-obsoleted/download17.template
deleted file mode 100644 (file)
index 14602b4..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download17.data"))   %>
-<%= read("downloadlist.template") %>
\ No newline at end of file
diff --git a/website-obsoleted/download18.data b/website-obsoleted/download18.data
deleted file mode 100644 (file)
index fdcd02e..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
-aDownload = [
-               ["Ring 1.8 すべての動作環境",[                  
-                                                [
-                                                       'Ring 1.8 Windows 版 (32bit および 64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.8/Fayed_Ring_1.8_All_Platforms.exe/download" target="_blank">ダウンロード  (139 MB)</a>'                                               
-                                                ],
-                                                [
-                                                       'Ring 1.8 Ubuntu Linux 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.8/Fayed_Ring_1.8_All_Platforms_Ubuntu.zip/download" target="_blank">ダウンロード  (203 MB)</a>'                                                
-                                                ],
-                                                [
-                                                       'Ring 1.8 Fedora Linux 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.8/Fayed_Ring_1.8_All_Platforms_Fedora.zip/download" target="_blank">ダウンロード  (202 MB)</a>'                                                
-                                                ],                                              
-                                                [
-                                                       'Ring 1.8 macOS 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.8/Fayed_Ring_1.8_All_Platforms_macOS.zip/download" target="_blank">ダウンロード  (205 MB)</a>'                                         
-                                                ],                                              
-                                                [
-                                                       'Ring 1.8 (Ring 本体のみ - ソースコード - すべての動作環境) <br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.8/Fayed_Ring_1.8_LightRelease_SourceCode.zip/download" target="_blank">ダウンロード (149 KB) </a>'
-                                                ],
-                                                [
-                                                       'Ring 1.8 (Ring 本体のみ - Windows バイナリ) <br> ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.8/Fayed_Ring_1.8_LightRelease_Windows_Binary.zip/download" target="_blank">ダウンロード (576 KB)</a>'
-                                                ],                                              
-                                                [
-                                                       'Ring 1.8 取扱説明書 (PDF 形式) ',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.8/Fayed_RingDoc_1.8.pdf/download" target="_blank">ダウンロード (20 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.8 取扱説明書 (CHM 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.8/Fayed_RingDoc_1.8.chm/download" target="_blank">ダウンロード (17 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.8 取扱説明書 (HTML 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.8/Fayed_RingDoc_1.8.zip/download" target="_blank">ダウンロード (17 MB)</a>'
-                                                ]
-                               ]
-                       ],
-               ["Ring 1.8 取扱説明書 (日本語版)",[
-
-                                                [
-                                                       'Ring 1.8 取扱説明書 (日本語版 - ePub 形式 -  2018年07月30日版)',
-                                                       '<a href="https://osdn.net/dl/ring-lang-081/isVowel_RingDoc_1.8_30-July-2018.epub" target="_blank">ダウンロード (17 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.8 取扱説明書 (日本語版 - CHM 形式)',
-                                                       '<a href="https://osdn.net/dl/ring-lang-081/isVowel_RingDoc_1.8_04-July-2018.chm" target="_blank">ダウンロード (17 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.8 取扱説明書 (日本語版 - HTML 形式)',
-                                                       '<a href="https://osdn.net/dl/ring-lang-081/isVowel_RingDoc_1.8_04-July-2018.zip" target="_blank">ダウンロード (17 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.8 取扱説明書 (日本語版 - ソースコード - Sphinx 形式)',
-                                                       '<a href="https://osdn.net/dl/ring-lang-081/isVowel_RingDoc_SourceCode_1.8_04-July-2018.zip" target="_blank">ダウンロード (17 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.8 取扱説明書 (日本語版 - ソースコード - Sphinx 形式 - 修正差分 2018年07月30日版)',
-                                                       '<a href="https://osdn.net/dl/ring-lang-081/isVowel_RingDoc_SourceCodeDiff_1.8_30-July-2018.zip" target="_blank">ダウンロード (300 KB)</a>'
-                                                ]
-                               ]
-               ]
-]
diff --git a/website-obsoleted/download18.template b/website-obsoleted/download18.template
deleted file mode 100644 (file)
index f998be7..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download18.data"))   %>
-<%= read("downloadlist.template") %>
\ No newline at end of file
diff --git a/website-obsoleted/download19.data b/website-obsoleted/download19.data
deleted file mode 100644 (file)
index a4bb139..0000000
+++ /dev/null
@@ -1,42 +0,0 @@
-aDownload = [
-               ["Ring 1.9 すべての動作環境",[                  
-                                                [
-                                                       'Ring 1.9 Windows 版 (32bit および 64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.9/Fayed_Ring_1.9_All_Platforms.exe/download" target="_blank">ダウンロード  (230 MB)</a>'                                               
-                                                ],
-                                                [
-                                                       'Ring 1.9 Ubuntu Linux 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.9/Fayed_Ring_1.9_All_Platforms_Ubuntu.zip/download" target="_blank">ダウンロード  (315 MB)</a>'                                                
-                                                ],
-                                                [
-                                                       'Ring 1.9 Fedora Linux 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.9/Fayed_Ring_1.9_All_Platforms_Fedora.zip/download" target="_blank">ダウンロード  (315 MB)</a>'                                                
-                                                ],                                              
-                                                [
-                                                       'Ring 1.9 macOS 版 (64bit)<br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.9/Fayed_Ring_1.9_All_Platforms_macOS.zip/download" target="_blank">ダウンロード  (317 MB)</a>'                                         
-                                                ],                                              
-                                                [
-                                                       'Ring 1.9 (Ring 本体のみ - ソースコード - すべての動作環境) <br>',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.9/Fayed_Ring_1.9_LightRelease_SourceCode.zip/download" target="_blank">ダウンロード (150 KB) </a>'
-                                                ],
-                                                [
-                                                       'Ring 1.9 (Ring 本体のみ - Windows バイナリ) <br> ',
-                                                       '<a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.9/Fayed_Ring_1.9_LightRelease_Windows_Binary.zip/download" target="_blank">ダウンロード (581 KB)</a>'
-                                                ],                                              
-                                                [
-                                                       'Ring 1.9 取扱説明書 (PDF 形式)  ',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.9/Fayed_RingDoc_1.9.pdf/download" target="_blank">ダウンロード (27.6 MB)</a>'
-                                                ],
-                                                [
-                                                       'Ring 1.9 取扱説明書 (CHM 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.9/Fayed_RingDoc_1.9.chm/download" target="_blank">ダウンロード (24.8 MB)</a>'                                                 
-                                                ],
-                                                [
-                                                       'Ring 1.9 取扱説明書 (HTML 形式)',
-                                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.9/Fayed_RingDoc_1.9.zip/download" target="_blank">ダウンロード (25 MB)</a>'                                                   
-                                                ]
-                                                
-                       ]
-               ]
-]
diff --git a/website-obsoleted/download19.template b/website-obsoleted/download19.template
deleted file mode 100644 (file)
index 9bb205f..0000000
+++ /dev/null
@@ -1,2 +0,0 @@
-<%  eval(read("download19.data"))   %>
-<%= read("downloadlist.template") %>
\ No newline at end of file
diff --git a/website-obsoleted/downloadlist.template b/website-obsoleted/downloadlist.template
deleted file mode 100644 (file)
index 59fe7f1..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
- <div id="download" class="panel-group">
-    <div class="panel panel-default">
-      <div class="panel-heading"><h4>Ring 1.11 のダウンロード <span class="badge"><%= len(aDownload) %></span></h4></div>
-      <div class="panel-body">
-
-
-           <% for aGroup in aDownload %>
-
-           <div class="panel panel-primary">
-             <div class="panel-heading"><%= aGroup[1] %> <span class="badge"> <%=len(aGroup[2]) %></span> </div>
-             <div class="panel-body">
-
-                       <table class="table table-striped">
-                               <thead>
-                                 <tr>
-                                       <th width="80%">説明  </th>
-                                       <th width="20%">ファイル  </th>
-                                 </tr>
-                               </thead>
-                               <tbody>
-                                 <% for aItem in aGroup[2]%>
-                                 <tr>
-                                       <% for x in aItem %>
-                                               <th><%= x %></th>
-                                       <% next %>
-                                       
-                                 </tr>
-                                 <% next %>
-
-                               </tbody>
-                       </table>
-                               
-             </div>
-            </div>  
-
-           <% next %>
-
-
-      </div>
-     </div>  
-  </div>
diff --git a/website-obsoleted/footer.template b/website-obsoleted/footer.template
deleted file mode 100644 (file)
index 0ff5e4e..0000000
+++ /dev/null
@@ -1,131 +0,0 @@
-</div>
-<br> <br> <br>
-<div class="container-fluid" style="color:black ; background: transparent linear-gradient(to bottom, rgb(240, 249, 255) 0%, rgb(203, 235, 255) 47%, rgb(161, 219, 255) 100%) repeat scroll 0% 0% ; margin-bottom: 0%;">
-<div class="container" style=" margin-bottom: 2%;">
-<br> <br>
-  <div class="row">
-    <div class="col-sm-12 col-md-4">
-           初級 <br> <br>
-
-            <ul>
-                         <li><a href="docs-1.11/ringapps.html" target="_blank">アプリケーション開発期間の短縮</a></li>
-              <li><a href="docs-1.11/introduction.html" target="_blank">はじめに</a></li>
-                         <li><a href="docs-1.11/languagedesign.html" target="_blank">言語設計</a></li>
-                         <li><a href="docs-1.11/sourcecode.html" target="_blank">ソースコードからのビルド方法</a></li>
-                         <li><a href="docs-1.11/contribute.html" target="_blank">開発に貢献するには?</a></li>
-                         <li><a href="docs-1.11/ringnotepad.html" target="_blank">Ring ノートパッドの用法</a></li>
-              <li><a href="docs-1.11/getting_started.html" target="_blank">入門 - 第一形式 </a></li>
-                         <li><a href="docs-1.11/getting_started2.html" target="_blank">入門 - 第二形式</a></li>
-                         <li><a href="docs-1.11/getting_started3.html" target="_blank">入門 - 第三形式</a></li>
-              <li><a href="docs-1.11/variables.html" target="_blank">変数</a></li>
-              <li><a href="docs-1.11/operators.html" target="_blank">演算子</a></li>
-              <li><a href="docs-1.11/controlstructures.html" target="_blank">制御構造 - 第一形式</a></li>
-                         <li><a href="docs-1.11/controlstructures2.html" target="_blank">制御構造 - 第二形式</a></li>
-                         <li><a href="docs-1.11/controlstructures3.html" target="_blank">制御構造 - 第三形式</a></li>
-              <li><a href="docs-1.11/getinput.html" target="_blank">標準入力の取得</a></li>
-              <li><a href="docs-1.11/functions.html" target="_blank">関数 - 第一形式</a></li>
-                         <li><a href="docs-1.11/functions2.html" target="_blank">関数 - 第二形式</a></li>
-                         <li><a href="docs-1.11/functions3.html" target="_blank">関数 - 第三形式</a></li>
-                         <li><a href="docs-1.11/programstructure.html" target="_blank">プログラムの構造</a></li>
-              <li><a href="docs-1.11/lists.html" target="_blank">リスト</a></li>
-              <li><a href="docs-1.11/strings.html" target="_blank">文字列</a></li>
-              <li><a href="docs-1.11/dateandtime.html" target="_blank">日付と時刻</a></li>
-              <li><a href="docs-1.11/checkandconvert.html" target="_blank">データ型の検査と変換</a></li>
-              <li><a href="docs-1.11/mathfunc.html" target="_blank">算術関数</a></li>
-                         <li><a href="docs-1.11/files.html" target="_blank">ファイル</a></li>
-              <li><a href="docs-1.11/systemfunc.html" target="_blank">システム関数</a></li>
-                         <li><a href="docs-1.11/evaldebug.html" target="_blank">Eval() とデバッグ</a></li>
-                         <li><a href="docs-1.11/demo.html" target="_blank">デモプログラム</a></li>
-            </ul>
-       </div>
-
-       <div class="col-sm-12 col-md-4">
-           中級 <br> <br>
-
-            <ul>
-              <li><a href="docs-1.11/odbc.html" target="_blank">ODBC 関数</a></li>
-              <li><a href="docs-1.11/mysql.html" target="_blank">MySQL 関数</a></li>
-                         <li><a href="docs-1.11/sqlite.html" target="_blank">SQLite 関数</a></li>
-                         <li><a href="docs-1.11/postgresql.html" target="_blank">PostgreSQL 関数</a></li>
-              <li><a href="docs-1.11/secfunc.html" target="_blank">セキュリティとインターネット関数</a></li>
-                         <li><a href="docs-1.11/oop.html" target="_blank">オブジェクト指向プログラミング (OOP)</a></li>
-                         <li><a href="docs-1.11/fp.html" target="_blank">関数型プログラミング (FP)</a></li>
-                         <li><a href="docs-1.11/metaprog.html" target="_blank">リフレクションとメタプログラミング</a></li>
-                         <li><a href="docs-1.11/stdlib.html" target="_blank">Stdlib 関数</a></li>
-                         <li><a href="docs-1.11/stdlibclasses.html" target="_blank">Stdlib クラス</a></li>
-                         <li><a href="docs-1.11/declarative.html" target="_blank">入れ子構造を使用した宣言型プログラミング</a></li>
-              <li><a href="docs-1.11/natural.html" target="_blank">自然言語プログラミング</a></li>
-                         <li><a href="docs-1.11/naturallibrary.html" target="_blank">自然言語ライブラリの用法</a></li>
-                         <li><a href="docs-1.11/scope.html" target="_blank">変数と属性のスコープ規則</a></li>
-                         <li><a href="docs-1.11/scope2.html" target="_blank">関数とメソッドのスコープ規則</a></li>
-                         <li><a href="docs-1.11/syntaxflexibility.html" target="_blank">シンタックスの柔軟性</a></li>
-                         <li><a href="docs-1.11/distribute.html" target="_blank">Ring アプリケーションの配布方法</a></li>
-                         <li><a href="docs-1.11/distribute_ring2exe.html" target="_blank">Ring2EXE による Ring アプリケーションの配布方法</a></li>
-                         <li><a href="docs-1.11/ringpm.html" target="_blank">The Ring パッケージマネージャー (RingPM)</a></li>
-                         <li><a href="docs-1.11/typehints.html" target="_blank">型ヒントライブラリについて</a></li>
-                         <li><a href="docs-1.11/web.html" target="_blank">ウェブ開発 (CGI ライブラリ)</a></li>
-                         <li><a href="docs-1.11/deployincloud.html" target="_blank">クラウド経由でのウェブアプリケーションの配布方法</a></li>
-                         <li><a href="docs-1.11/libcurl.html" target="_blank">RingLibCurl の用法</a></li>
-                         <li><a href="docs-1.11/ringzip.html" target="_blank">RingZip の用法</a></li>
-                         <li><a href="docs-1.11/allegro.html" target="_blank">RingAllegro を使用したグラフィックスと 2D ゲームプログラミング</a></li>
-              <li><a href="docs-1.11/libsdl.html" target="_blank">RingLibSDL の用法</a></li>
-                         <li><a href="docs-1.11/gameengine.html" target="_blank">デモプロジェクト - 2D ゲーム用のゲームエンジン</a></li>
-                         <li><a href="docs-1.11/gameengineandorid.html" target="_blank">Android 用ゲームのビルド方法</a></li>
-            </ul>
-       </div>
-
-       <div class="col-sm-12 col-md-4">
-           上級 <br> <br>
-
-            <ul>
-                         <li><a href="docs-1.11/usingopengl.html" target="_blank">RingOpenGL と RingFreeGLUT の用法 (3D グラフィックス)</a></li>
-                         <li><a href="docs-1.11/usingopengl2.html" target="_blank">RingOpenGL と RingAllegro の用法 (3D グラフィックス)</a></li>
-                         <li><a href="docs-1.11/goldmagic800.html" target="_blank">Gold Magic 800 ゲーム</a></li>
-                         <li><a href="docs-1.11/qt.html" target="_blank">RingQt を使用したデスクトップおよびモバイル開発</a></li>
-                         <li><a href="docs-1.11/qtmobile.html" target="_blank">モバイル用 RingQt アプリケーションのビルド方法</a></li>
-                         <li><a href="docs-1.11/ringqtobjects.html" target="_blank">RingQt アプリケーション用のオブジェクトライブラリ</a></li>
-                         <li><a href="docs-1.11/formdesigner.html" target="_blank">フォームデザイナーの使用方法</a></li>
-                         <li><a href="docs-1.11/lowlevel.html" target="_blank">低水準関数</a></li>
-                         <li><a href="docs-1.11/debug.html" target="_blank">Trace ライブラリとインタラクティブデバッガ</a></li>
-              <li><a href="docs-1.11/extension.html" target="_blank">C/C++ による拡張機能の開発方法</a></li>
-              <li><a href="docs-1.11/embedding.html" target="_blank">Ring を C/C++ プログラムへ組み込むには</a></li>
-              <li><a href="docs-1.11/compiler.html" target="_blank">コマンドラインオプション</a></li>
-              <li><a href="docs-1.11/codegenerator.html" target="_blank">C/C++ ライブラリ接続用コード生成器</a></li>
-                         <li><a href="docs-1.11/ringbeep.html" target="_blank">はじめての拡張機能開発</a></li>
-                         <li><a href="docs-1.11/faq.html" target="_blank">よくある質問と回答 (FAQ)</a></li>
-                         </ul>
-                         リファレンス <br> <br>
-                         <ul>
-                         <li><a href="docs-1.11/ringlibcurlfuncsdoc.html" target="_blank">RingLibCurl 関数リファレンス</a></li>
-                         <li><a href="docs-1.11/ringlibzipfuncsdoc.html" target="_blank">RingLibZip 関数リファレンス</a></li>
-                         <li><a href="docs-1.11/ringallegrofuncsdoc.html" target="_blank">RingAllegro 関数リファレンス</a></li>
-                         <li><a href="docs-1.11/ringlibsdlfuncsdoc.html" target="_blank">RingLibSDL 関数リファレンス</a></li>
-                         <li><a href="docs-1.11/ringfreeglutfuncsdoc.html" target="_blank">RingFreeGLUT 関数リファレンス</a></li>
-                         <li><a href="docs-1.11/ringopengl46funcsdoc.html" target="_blank">RingOpenGL (OpenGL 4.6) 関数リファレンス</a></li>
-                         <li><a href="docs-1.11/qtclassesdoc.html" target="_blank">RingQt クラスリファレンス</a></li>
-                         <li><a href="docs-1.11/generalinfo.html" target="_blank">一般情報</a></li>
-                         <li><a href="docs-1.11/reference.html" target="_blank">言語リファレンス</a></li>
-
-            </ul>
-       </div>
-
-</div>
-
-</div>
-</div>
-
-<div class="container-fluid" style="text-align:center;color:black; height: 25px; background: transparent linear-gradient(to bottom, rgb(240, 249, 255) 0%, rgb(203, 235, 255) 47%, rgb(161, 219, 255) 100%) repeat scroll 0% 0% ; margin-bottom: 0%;">
-              <a href="https://osdn.net/projects/ring-lang-081/forums/" target="_blank">フォーラム</a>
-              <a href="./resources.html">リソース</a>
-              <a href="./team.html">チーム</a>
-</div>
-
-<div class="container-fluid" style="color:black ; height: 5px; background: transparent linear-gradient(to bottom, rgb(0, 183, 234) 0%, rgb(0, 158, 195) 100%) repeat scroll 0% 0% ; margin-bottom: 0%; text-align:center;">
- <p>
-
- </p>
-
-</div>
-
-</body>
-</html>
diff --git a/website-obsoleted/footer.template.orig b/website-obsoleted/footer.template.orig
deleted file mode 100644 (file)
index c3825d6..0000000
+++ /dev/null
@@ -1,131 +0,0 @@
-</div>
-<br> <br> <br>
-<div class="container-fluid" style="color:black ; background: transparent linear-gradient(to bottom, rgb(240, 249, 255) 0%, rgb(203, 235, 255) 47%, rgb(161, 219, 255) 100%) repeat scroll 0% 0% ; margin-bottom: 0%;">
-<div class="container" style=" margin-bottom: 2%;">
-<br> <br>
-  <div class="row">
-    <div class="col-sm-12 col-md-4">
-           初級 <br> <br>
-
-            <ul>                         
-                         <li><a href="docs-1.10/ringapps.html" target="_blank">アプリケーション開発の短時間化</a></li>
-              <li><a href="docs-1.10/introduction.html" target="_blank">はじめに</a></li>
-                         <li><a href="docs-1.10/languagedesign.html" target="_blank">言語設計</a></li>
-                         <li><a href="docs-1.10/sourcecode.html" target="_blank">ソースコードからのビルド方法</a></li>
-                         <li><a href="docs-1.10/contribute.html" target="_blank">開発に貢献するには?</a></li>
-                         <li><a href="docs-1.10/ringnotepad.html" target="_blank">Ring Notepad の使用方法</a></li>
-              <li><a href="docs-1.10/getting_started.html" target="_blank">入門 - 第一形式 </a></li>
-                         <li><a href="docs-1.10/getting_started2.html" target="_blank">入門 - 第二形式</a></li>
-                         <li><a href="docs-1.10/getting_started3.html" target="_blank">入門 - 第三形式</a></li>
-              <li><a href="docs-1.10/variables.html" target="_blank">変数</a></li>
-              <li><a href="docs-1.10/operators.html" target="_blank">演算子</a></li>
-              <li><a href="docs-1.10/controlstructures.html" target="_blank">制御構造 - 第一形式</a></li>
-                         <li><a href="docs-1.10/controlstructures2.html" target="_blank">制御構造 - 第二形式</a></li>
-                         <li><a href="docs-1.10/controlstructures3.html" target="_blank">制御構造 - 第三形式</a></li>
-              <li><a href="docs-1.10/getinput.html" target="_blank">入力の取得</a></li>
-              <li><a href="docs-1.10/functions.html" target="_blank">関数 - 第一形式</a></li>
-                         <li><a href="docs-1.10/functions2.html" target="_blank">関数 - 第二形式</a></li>
-                         <li><a href="docs-1.10/functions3.html" target="_blank">関数 - 第三形式</a></li>
-                         <li><a href="docs-1.10/programstructure.html" target="_blank">プログラムの構造</a></li>
-              <li><a href="docs-1.10/lists.html" target="_blank">リスト</a></li>
-              <li><a href="docs-1.10/strings.html" target="_blank">文字列</a></li>
-              <li><a href="docs-1.10/dateandtime.html" target="_blank">日付と時刻</a></li>
-              <li><a href="docs-1.10/checkandconvert.html" target="_blank">データ型の検査と変換</a></li>
-              <li><a href="docs-1.10/mathfunc.html" target="_blank">算術関数</a></li>
-                         <li><a href="docs-1.10/files.html" target="_blank">ファイル</a></li>
-              <li><a href="docs-1.10/systemfunc.html" target="_blank">システム関数</a></li>              
-                         <li><a href="docs-1.10/evaldebug.html" target="_blank">Eval() とデバッグ</a></li>              
-                         <li><a href="docs-1.10/demo.html" target="_blank">デモプログラム</a></li>
-            </ul>
-       </div>
-
-       <div class="col-sm-12 col-md-4">
-           中級 <br> <br>
-
-            <ul>                                 
-              <li><a href="docs-1.10/odbc.html" target="_blank">ODBC 関数</a></li>
-              <li><a href="docs-1.10/mysql.html" target="_blank">MySQL 関数</a></li>
-                         <li><a href="docs-1.10/sqlite.html" target="_blank">SQLite 関数</a></li>
-                         <li><a href="docs-1.10/postgresql.html" target="_blank">PostgreSQL 関数</a></li>                      
-              <li><a href="docs-1.10/secfunc.html" target="_blank">セキュリティとインターネット関数</a></li>
-                         <li><a href="docs-1.10/oop.html" target="_blank">オブジェクト指向プログラミング (OOP)</a></li>
-                         <li><a href="docs-1.10/fp.html" target="_blank">関数型プログラミング (FP)</a></li>
-                         <li><a href="docs-1.10/metaprog.html" target="_blank">リフレクションとメタプログラミング</a></li>
-                         <li><a href="docs-1.10/stdlib.html" target="_blank">Stdlib 関数</a></li>
-                         <li><a href="docs-1.10/stdlibclasses.html" target="_blank">Stdlib クラス</a></li>
-                         <li><a href="docs-1.10/declarative.html" target="_blank">入れ子構造を使用した宣言型プログラミング</a></li>
-              <li><a href="docs-1.10/natural.html" target="_blank">自然言語プログラミング</a></li>              
-                         <li><a href="docs-1.10/naturallibrary.html" target="_blank">自然言語ライブラリの使用方法</a></li>              
-                         <li><a href="docs-1.10/scope.html" target="_blank">変数と属性のスコープ規則</a></li>
-                         <li><a href="docs-1.10/scope2.html" target="_blank">関数とメソッドのスコープ規則</a></li>                         
-                         <li><a href="docs-1.10/syntaxflexibility.html" target="_blank">シンタックスの柔軟性</a></li>
-                         <li><a href="docs-1.10/distribute.html" target="_blank">Ring アプリケーションの配布方法</a></li>
-                         <li><a href="docs-1.10/distribute_ring2exe.html" target="_blank">Ring2EXE による Ring アプリケーションの配布方法</a></li>
-                         <li><a href="docs-1.10/ringpm.html" target="_blank">Ring パッケージ管理プログラム (RingPM)</a></li>
-                         <li><a href="docs-1.10/typehints.html" target="_blank">型ヒントライブラリについて</a></li>
-                         <li><a href="docs-1.10/web.html" target="_blank">ウェブ開発 (CGI ライブラリ)</a></li>
-                         <li><a href="docs-1.10/deployincloud.html" target="_blank">クラウド経由でのウェブアプリケーションの配布方法</a></li>
-                         <li><a href="docs-1.10/libcurl.html" target="_blank">RingLibCurl の使用方法</a></li>
-                         <li><a href="docs-1.10/ringzip.html" target="_blank">RingZip の使用方法</a></li>                                           
-                         <li><a href="docs-1.10/allegro.html" target="_blank">RingAllegro を使用したグラフィックスと 2D ゲームプログラミング</a></li>
-              <li><a href="docs-1.10/libsdl.html" target="_blank">RingLibSDL の使用方法</a></li>                  
-                         <li><a href="docs-1.10/gameengine.html" target="_blank">デモプロジェクト - 2D ゲーム用のゲームエンジン</a></li>                     
-                         <li><a href="docs-1.10/gameengineandorid.html" target="_blank">Android 用ゲームのビルド方法</a></li>
-            </ul>
-       </div>
-
-       <div class="col-sm-12 col-md-4">
-           上級 <br> <br>
-
-            <ul>                                                                         
-                         <li><a href="docs-1.10/usingopengl.html" target="_blank">3D グラフィックスにおける RingOpenGL と RingFreeGLUT の使用方法</a></li>
-                         <li><a href="docs-1.10/usingopengl2.html" target="_blank">3D グラフィックスでの RingOpenGL と RingAllegro の使用方法</a></li>
-                         <li><a href="docs-1.10/goldmagic800.html" target="_blank">Gold Magic 800 ゲーム</a></li>                     
-                         <li><a href="docs-1.10/qt.html" target="_blank">RingQt を使用したデスクトップおよびモバイル開発</a></li>
-                         <li><a href="docs-1.10/qtmobile.html" target="_blank">モバイル用 RingQt アプリケーションのビルド方法</a></li>                                                
-                         <li><a href="docs-1.10/ringqtobjects.html" target="_blank">RingQt アプリケーション用のオブジェクトライブラリ</a></li>                                              
-                         <li><a href="docs-1.10/formdesigner.html" target="_blank">フォームデザイナーの使用方法</a></li>                                           
-                         <li><a href="docs-1.10/lowlevel.html" target="_blank">低水準関数</a></li>
-                         <li><a href="docs-1.10/debug.html" target="_blank">Trace ライブラリとインタラクティブデバッガ</a></li>
-              <li><a href="docs-1.10/extension.html" target="_blank">C/C++ による拡張機能の開発方法</a></li>
-              <li><a href="docs-1.10/embedding.html" target="_blank">Ring を C/C++ プログラムへ組み込むには</a></li>
-              <li><a href="docs-1.10/compiler.html" target="_blank">コマンドラインオプション</a></li>              
-              <li><a href="docs-1.10/codegenerator.html" target="_blank">C/C++ ライブラリ接続用コード生成器</a></li>
-                         <li><a href="docs-1.10/ringbeep.html" target="_blank">はじめての拡張機能開発</a></li>
-                         <li><a href="docs-1.10/faq.html" target="_blank">よくある質問と回答 (FAQ)</a></li>
-                         </ul> 
-                         リファレンス <br> <br>
-                         <ul>
-                         <li><a href="docs-1.10/ringlibcurlfuncsdoc.html" target="_blank">RingLibCurl 関数リファレンス</a></li>
-                         <li><a href="docs-1.10/ringlibzipfuncsdoc.html" target="_blank">RingLibZip 関数リファレンス</a></li>
-                         <li><a href="docs-1.10/ringallegrofuncsdoc.html" target="_blank">RingAllegro 関数リファレンス</a></li>
-                         <li><a href="docs-1.10/ringlibsdlfuncsdoc.html" target="_blank">RingLibSDL 関数リファレンス</a></li>
-                         <li><a href="docs-1.10/ringfreeglutfuncsdoc.html" target="_blank">RingFreeGLUT 関数リファレンス</a></li>
-                         <li><a href="docs-1.10/ringopengl46funcsdoc.html" target="_blank">RingOpenGL (OpenGL 4.6) 関数リファレンス</a></li>
-                         <li><a href="docs-1.10/qtclassesdoc.html" target="_blank">RingQt クラスリファレンス</a></li>                   
-                         <li><a href="docs-1.10/generalinfo.html" target="_blank">一般情報</a></li>
-                         <li><a href="docs-1.10/reference.html" target="_blank">言語リファレンス</a></li>
-             
-            </ul>
-       </div>
-
-</div>
-
-</div>
-</div>
-
-<div class="container-fluid" style="text-align:center;color:black; height: 25px; background: transparent linear-gradient(to bottom, rgb(240, 249, 255) 0%, rgb(203, 235, 255) 47%, rgb(161, 219, 255) 100%) repeat scroll 0% 0% ; margin-bottom: 0%;">
-              <a href="https://groups.google.com/forum/#!forum/ring-lang" target="_blank">グループ</a>
-              <a href="resources.html">リソース</a>
-              <a href="team.html">チーム</a>
-</div>
-
-<div class="container-fluid" style="color:black ; height: 5px; background: transparent linear-gradient(to bottom, rgb(0, 183, 234) 0%, rgb(0, 158, 195) 100%) repeat scroll 0% 0% ; margin-bottom: 0%; text-align:center;">
- <p>
- </p>
-
-</div>
-
-</body>
-</html>
diff --git a/website-obsoleted/header.template b/website-obsoleted/header.template
deleted file mode 100644 (file)
index b27e1d1..0000000
+++ /dev/null
@@ -1,90 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-  <title>プログラミング言語 Ring (非公式日本語版サイト)</title>
-  <meta charset="utf-8">
-  <meta name="viewport" content="width=device-width, initial-scale=1">
-       <meta name="title" content="プログラミング言語 Ring">
-  <meta name="description" content="Ring は画期的で実用性のあるマルチパラダイム・プログラミング言語です。命令型、手続き型、オブジェクト指向、関数型、メタプログラミング、 入れ子構造による宣言型プログラミング、および自然言語プログラミングのパラダイムに対応しています。">
-  <meta name="keywords" content="Ring, Ring 言語, Allegro, FreeGLUT, cURL, LibUV, MySQL, ODBC, OpenGL, OpenSSL, PostgreSQL, Qt, RayLib, SDL, SQLite, 画期的, 実用性, プログラミング言語, マルチパラダイム言語, 汎用言語, 命令型, 手続き型, オブジェクト指向, 入れ子構造による宣言型プログラミング, 関数型, メタプログラミングと自然言語プログラミングに対応。この言語は移植性があり Windows, Linux, macOS, Android に対応しており、コンソール, GUI, ウェブ, ゲーム, モバイルアプリケーションなどの開発ができます。">
-  <meta name="robots" content="index, follow">
-  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-  <meta name="language" content="Japanese">
-  <meta name="og:title" property="og:title" content="Ring 言語 - 画期的で実用性のあるマルチパラダイム・プログラミング言語">
-  <meta property="og:type" content="article" />
-  <meta property="og:url" content="http://ring-lang-081.osdn.jp/" />
-  <meta property="og:image" content="http://ring-lang-081.osdn.jp/thering.jpg" />
-
-  <link rel="stylesheet" href="bootstrap.min.css">
-  <script src="jquery.min.js"></script>
-  <script src="bootstrap.min.js"></script>
-</head>
-<body>
-
-
-<nav class="navbar navbar-default navbar-fixed-top" >
-  <div class="container-fluid">
-    <div class="navbar-header">
-        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
-          <span class="icon-bar"></span>
-          <span class="icon-bar"></span>
-          <span class="icon-bar"></span>
-      </button>
-    </div>
-    <div>
-      <div class="collapse navbar-collapse" id="myNavbar">
-        <ul class="nav navbar-nav">
-          <li><a href="index.html#">ホーム</a></li>
-          <li><a href="download.html" title="Ring のダウンロード">ダウンロード</a></li>
-          <li><a href="http://ring-lang.sf.net/cgi-bin/ringlang.cgi" title="ウェブブラウザでRingプログラミングを体験します (基本機能のみ)">体験</a></li>
-                 <li><a href="./resources.html" title="愛用者の皆さんが用意した学習教材">学ぶ</a></li>
-          <li><a href="./docs-1.11/index.html" title="Ring の取扱説明書">資料</a></li>
-                 <li><a href="https://groups.google.com/forum/#!forum/ring-lang"  title="質問はお気軽に (英語にて)" target="_blank">グループ</a></li>
-                 <li><a href="http://ring-lang.sf.net/team.html">チーム</a></li>
-                 <li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">Select languages<span class="caret"></span></a>
-            <ul class="dropdown-menu">
-                               <li><a href="http://ring-lang.sf.net/">English (英語) - SourceForge.net (Official)</a></li>
-                               <li><a href="http://ring-lang-081.osdn.jp/">Japanese (日本語) - OSDN.jp</a></li>
-            </ul>
-          </li>
-    </ul>
-
-       <div style="float:right ; margin-top:0.5% ; margin-right: 1%">
-               <form class="search" action="docs-1.11/search.html" method="get" style="width:200px" >
-                       <div class="input-group">
-                               <input name="q" type="text" class="form-control" placeholder="取扱説明書...">
-                               <span class="input-group-btn">
-                               <button class="btn btn-default" type="submit">検索</button>
-                               </span>
-                       </div>
-                       <input name="check_keywords" value="yes" type="hidden">
-                       <input name="area" value="default" type="hidden">
-               </form>
-
-    </div>
-  </div>
-</nav>
-<a href="https://github.com/ring-lang/ring" target="_blank" class="hidden-xs" style="float:right ; margin-top:4%">
-       <img src="forkme.png" alt="GitHub から Fork" width="198" height="198">
-</a>
-
-<div class="container">
- <div class="text-center">
-       <br><br><br>
-       <br><br>
-       <div class="row">
-                       <div class="col-xs-3 hidden-xs">
-                       </div>
-                       <div class="col-xs-6">
-                               <img src="thering.jpg" width="297px" height="154px">
-                       </div>
-                       <div class="col-xs-3 hidden-xs">
-                       </div>
-       </div>
-
-       <h3><ruby>画期的<rp>(</rp><rt>かっきてき</rt><rp>)</rp></ruby>で<ruby>実用性豊<rp>(</rp><rt>じつようせいゆた</rt><rp>)</rp></ruby>かなマルチパラダイム<ruby>汎用<rp>(</rp><rt>はんよう</rt><rp>)</rp></ruby>プログラミング<ruby>言語<rp>(</rp><rt>げんご</rt><rp>)</rp></ruby> - それが <ruby>Ring<rp>(</rp><rt>リング</rt><rp>)</rp></ruby> です。</h3>
-       <small>※呪いの<ruby>プログラミング言語<rp>(</rp><rt>ビデオ</rt><rp>)</rp></ruby>ではありません。ご安心を。</small>
-
-  </div>
-
-<br>
diff --git a/website-obsoleted/header.template.orig b/website-obsoleted/header.template.orig
deleted file mode 100644 (file)
index 6b7220c..0000000
+++ /dev/null
@@ -1,148 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
-  <title>プログラミング言語 Ring (非公式日本語版サイト)</title>
-  <meta charset="utf-8">
-  <meta name="viewport" content="width=device-width, initial-scale=1">
-       <meta name="title" content="Ring Language">
-  <meta name="description" content="Ring is an innovative and practical general-purpose multi-paradigm language. The supported programming paradigms are imperative, procedural, object-oriented, declarative using nested structures, functional, meta programming and natural programming.">
-  <meta name="keywords" content="Ring, Ring Language, innovative , practical , programming language, multi paradigm language, general purpose language, imperative, procedural, object-oriented, declarative using nested structures, functional, meta programming and natural programming. The language is portable Windows, Linux, macOS, Android, create Console, GUI, Web, ゲーム, モバイルアプリケーション">
-  <meta name="robots" content="index, follow">
-  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-  <meta name="language" content="Japanese">  
-  <meta name="og:title" property="og:title" content="Ring 言語 - 画期的で実用性のあるマルチパラダイム・プログラミング言語">
-  <meta property="og:type" content="article" />
-  <meta property="og:url" content="http://ring-lang.sourceforge.net/" />
-  <meta property="og:image" content="http://ring-lang.sourceforge.net/thering.jpg" />
-       
-  <link rel="stylesheet" href="bootstrap.min.css">
-  <script src="jquery.min.js"></script>
-  <script src="bootstrap.min.js"></script>
-
-</head>
-<body>
-
-
-<nav class="navbar navbar-default navbar-fixed-top" >
-  <div class="container-fluid">
-    <div class="navbar-header">
-        <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
-          <span class="icon-bar"></span>
-          <span class="icon-bar"></span>
-          <span class="icon-bar"></span>                        
-      </button>
-    </div>
-    <div>
-      <div class="collapse navbar-collapse" id="myNavbar">
-        <ul class="nav navbar-nav">
-          <li><a href="index.html#">ホーム</a></li>
-          <li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">ダウンロード<span class="caret"></span></a>
-            <ul class="dropdown-menu">
-                       <li><a href="download.html">Ring 1.10 のダウンロード</a></li>
-                       <li><a href="download19.html">Ring 1.9 のダウンロード</a></li>
-                       <li><a href="download18.html">Ring 1.8 のダウンロード</a></li>
-                       <li><a href="download17.html">Ring 1.7 のダウンロード</a></li>
-                       <li><a href="download16.html">Ring 1.6 のダウンロード</a></li>
-                       <li><a href="download154.html">Ring 1.5 のダウンロード</a></li>
-                       <li><a href="download141.html">Ring 1.4 のダウンロード</a></li>
-                       <li><a href="download13.html">Ring 1.3 のダウンロード</a></li>
-                       <li><a href="download12.html">Ring 1.2 のダウンロード</a></li>
-                       <li><a href="download11.html">Ring 1.1 のダウンロード</a></li>
-                       <li><a href="download1.html">Ring 1.0 のダウンロード</a></li>
-            </ul>
-          </li>        
-          <li><a href="index.html#why">Ring を選ぶべき理由は?</a></li>
-          <li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">取扱説明書<span class="caret"></span></a>
-            <ul class="dropdown-menu">
-                 <li><a href="docs-1.10/index.html" target="_blank">Ring 1.10 取扱説明書</a></li>
-                 <li><a href="docs-1.9/index.html" target="_blank">Ring 1.9 取扱説明書</a></li>
-                 <li><a href="docs-1.8/index.html" target="_blank">Ring 1.8 取扱説明書</a></li>
-                 <li><a href="docs-1.7/index.html" target="_blank">Ring 1.7 取扱説明書</a></li>
-                 <li><a href="docs-1.6/index.html" target="_blank">Ring 1.6 取扱説明書</a></li>
-                 <li><a href="docs-1.5.4/index.html" target="_blank">Ring 1.5 取扱説明書</a></li>
-                 <li><a href="docs-1.4.1/index.html" target="_blank">Ring 1.4 取扱説明書</a></li>
-                 <li><a href="docs-1.3/index.html" target="_blank">Ring 1.3 取扱説明書</a></li>
-                 <li><a href="docs-1.2/index.html" target="_blank">Ring 1.2 取扱説明書</a></li>
-                 <li><a href="docs-1.1/index.html" target="_blank">Ring 1.1 取扱説明書</a></li>
-                 <li><a href="docs-1.0/index.html" target="_blank">Ring 1.0 取扱説明書</a></li>
-            </ul>
-          </li>
-                 <li class="dropdown"><a class="dropdown-toggle" data-toggle="dropdown" href="#">コミュニティ<span class="caret"></span></a>
-            <ul class="dropdown-menu">
-                 <li><a href="https://groups.google.com/forum/#!forum/ring-lang" target="_blank">グループ (公式サイト)</a></li>
-                 <li><a href="http://ring-lang.sf.net/resources.html">リソース (公式サイト)</a></li>
-                 <li><a href="http://ring-lang.sf.net/team.html">チーム (公式サイト)</a></li>
-            </ul>
-          </li>
-    </ul>
-
-       <div style="float:right ; margin-top:0.5% ; margin-right: 1%">
-               <form class="search" action="docs-1.10/search.html" method="get" style="width:200px" >
-                       <div class="input-group">
-                               <input name="q" type="text" class="form-control" placeholder="取扱説明書...">
-                               <span class="input-group-btn">
-                               <button class="btn btn-default" type="submit">検索</button>
-                               </span>
-                       </div>
-                       <input name="check_keywords" value="yes" type="hidden">
-                       <input name="area" value="default" type="hidden">
-               </form>
-
-    </div>
-
-  </div>
-
-</nav>  
-
-<a href="https://github.com/ring-lang/ring" target="_blank" class="hidden-xs" style="float:right ; margin-top:4%">
-       <img src="forkme.png" alt="GitHub から Fork" width="198" height="198">
-</a>
-
-
-<div class="container">
- <div class="text-center">
-       <br><br><br> 
-       <br><br>
-       <div class="row">               
-                       <div class="col-xs-3 hidden-xs">
-                       </div>
-                       <div class="col-xs-6">
-                               <img src="thering.jpg" width="297px" height="154px">
-                       </div>
-                       <div class="col-xs-3 hidden-xs">
-                       </div>
-       </div>
-
-       <div class="row">
-                               <br> 
-                               <div class="col-xs-2">
-                               </div>
-                               <div class="col-sm-12 col-md-2">
-                                       <a href="download.html" class="btn btn-default btn-block" style="">ダウンロード</a>
-                               </div>
-                               
-                               <div class="col-sm-12 col-md-2">
-                                       <a href="docs-1.10/index.html" target="_blank" class="btn btn-default btn-block" style="">取扱説明書</a>
-                               </div>
-                               
-                               <div class="col-sm-12 col-md-2">
-                                       <a href="http://ring-lang.sf.net/cgi-bin/ringlang.cgi" class="btn btn-default btn-block" style="">オンラインで体験</a>
-                               </div>
-
-                               <div class="col-sm-12 col-md-2">
-                                       <a href="https://groups.google.com/forum/#!forum/ring-lang" target="_blank" class="btn btn-default btn-block" style="">グループ</a>
-                               </div>
-
-                       
-                               <div class="col-xs-2">
-                               </div>
-                               <br>  
-       </div>
-               
-       <h3>画期的で実用性豊かなマルチパラダイム汎用プログラミング言語 - それが Ring です。</h3>
-       
-               
-               
-  </div>
-
-<br>
diff --git a/website-obsoleted/index.template b/website-obsoleted/index.template
deleted file mode 100644 (file)
index 71bb42b..0000000
+++ /dev/null
@@ -1,1292 +0,0 @@
-<%  eval(read("news.data"))  %>
-
-<div class="row">
-
-  <div class="col-sm-12 col-md-6">
-
-  <div id="introduction" class="panel-group">
-    <div class="panel panel-default">
-      <div class="panel-heading"><h4>はじめに</h4></div>
-      <div class="panel-body">
-               <p align="justify">
-                       <ruby>Ring<rp>(</rp><rt>リング</rt><rp>)</rp></ruby> は<ruby>画期的<rp>(</rp><rt>かっきてき</rt><rp>)</rp></ruby>で<ruby>実用性豊<rp>(</rp><rt>じつようせいゆた</rt><rp>)</rp></ruby>かなマルチパラダイム<ruby>汎用<rp>(</rp><rt>はんよう</rt><rp>)</rp></ruby>プログラミング<ruby>言語<rp>(</rp><rt>げんご</rt><rp>)</rp></ruby>です。
-
-                       <ruby>命令型<rp>(</rp><rt>めいれいがた</rt><rp>)</rp></ruby>、<ruby>手続<rp>(</rp><rt>てつづ</rt><rp>)</rp></ruby>き<ruby>型<rp>(</rp><rt>がた</rt><rp>)</rp></ruby>、オブジェクト<ruby>指向<rp>(</rp><rt>しこう</rt><rp>)</rp></ruby>、<ruby>入<rp>(</rp><rt>い</rt><rp>)</rp></ruby>れ<ruby>子構造<rp>(</rp><rt>ここうぞう</rt><rp>)</rp></ruby>による<ruby>宣言型<rp>(</rp><rt>せんげんがた</rt><rp>)</rp></ruby>、<ruby>関数型<rp>(</rp><rt>かんすうがた</rt><rp>)</rp></ruby>、メタ、および<ruby>自然言語<rp>(</rp><rt>しぜんげんご</rt><rp>)</rp></ruby>のプログラミング・パラダイムに<ruby>対応<rp>(</rp><rt>たいおう</rt><rp>)</rp></ruby>しています。
-
-                       <ruby>移植性<rp>(</rp><rt>いしょくせい</rt><rp>)</rp></ruby> (<ruby>Windows<rp>(</rp><rt>ウィンドウズ</rt><rp>)</rp></ruby>, <ruby>Linux<rp>(</rp><rt>リナックス</rt><rp>)</rp></ruby>, <ruby>macOS<rp>(</rp><rt>マック・オーエス</rt><rp>)</rp></ruby>, <ruby>Android<rp>(</rp><rt>アンドロイド</rt><rp>)</rp></ruby> など) があり、<ruby>小規模<rp>(</rp><rt>しょうきぼ</rt><rp>)</rp></ruby>、<ruby>柔軟<rp>(</rp><rt>じゅうなん</rt><rp>)</rp></ruby>かつ<ruby>高速<rp>(</rp><rt>こうそく</rt><rp>)</rp></ruby>な<ruby>設計<rp>(</rp><rt>せっけい</rt><rp>)</rp></ruby>です。
-
-                       コンソール、<ruby>GUI<rp>(</rp><rt>ジー・ユー・アイ</rt><rp>)</rp></ruby>、ウェブ、ゲーム、およびモバイルアプリケーションを<ruby>作成<rp>(</rp><rt>さくせい</rt><rp>)</rp></ruby>できます。
-
-               </p>
-       </div>
-     </div>  
-  </div>
-
-       </div>
-
-         <div class="col-sm-12 col-md-6">
-
-  <div id="news" class="panel-group">
-    <div class="panel panel-info">
-      <div class="panel-heading"><h4><ruby>新着情報<rp>(</rp><rt>しんちゃくじょうほう</rt><rp>)</rp></ruby></h4></div>
-      <div class="panel-body">
-
-                       <table class="table table-striped">
-                               <thead>
-                                 <tr>
-                                       <th width="40%"><ruby>日付<rp>(</rp><rt>ひづけ</rt><rp>)</rp></ruby></th>
-                                       <th><ruby>概要<rp>(</rp><rt>がいよう</rt><rp>)</rp></ruby></th>
-                                 </tr>
-                               </thead>
-                               <tbody>
-                               
-                               <% for x=1 to 3 %>
-                                 <tr>
-                                       <td><%= aNews[x][1] %></td>
-                                       <td><%= aNews[x][2] %></td>
-                                 </tr>
-                               <% next %>                               
-
-                               </tbody>
-                       </table>
-                       <div style="text-align:right;">   
-                                 <a href="news.html"><ruby>過去<rp>(</rp><rt>かこ</rt><rp>)</rp></ruby>の<ruby>新着情報<rp>(</rp><rt>しんちゃくじょうほう</rt><rp>)</rp></ruby></a>   
-                       </div>
-         </div>
-     </div>  
-  </div>
-
-       </div>
-
-</div>
-
-<br>
-
-
-<a href="#innovative" class="btn btn-default" data-toggle="collapse" style="width:100%"><ruby>画期的<rp>(</rp><rt>かっきてき</rt><rp>)</rp></ruby></a>
-  <div id="innovative" class="panel-group collapse in">
-    <div class="panel panel-primary">
-      <div class="panel-heading"><h4><ruby>画期的<rp>(</rp><rt>かっきてき</rt><rp>)</rp></ruby></h4></div>
-      <div class="panel-body">
-
-               <div class="row">
-                       <div class="col-sm-12 col-md-12">
-                       <p>
-                       <ruby>Ring<rp>(</rp><rt>リング</rt><rp>)</rp></ruby> には<ruby>自然言語<rp>(</rp><rt>しぜんげんご</rt><rp>)</rp></ruby>プログラミング、<ruby>宣言型<rp>(</rp><rt>せんげんがた</rt><rp>)</rp></ruby>プログラミングに<ruby>関<rp>(</rp><rt>かん</rt><rp>)</rp></ruby>する<ruby>最良<rp>(</rp><rt>さいりょう</rt><rp>)</rp></ruby>の<ruby>支援機能<rp>(</rp><rt>しえんきのう</rt><rp>)</rp></ruby>があります。パラダイムには<ruby>最先端<rp>(</rp><rt>さいせんたん</rt><rp>)</rp></ruby>のオブジェクト<ruby>指向<rp>(</rp><rt>しこう</rt><rp>)</rp></ruby>プログラミング、<ruby>関数型<rp>(</rp><rt>かんすうがた</rt><rp>)</rp></ruby>プログラミングの<ruby>実用的<rp>(</rp><rt>じつようてき</rt><rp>)</rp></ruby>な<ruby>新技法<rp>(</rp><rt>しんぎほう</rt><rp>)</rp></ruby>により<ruby>対応<rp>(</rp><rt>たいおう</rt><rp>)</rp></ruby>しています。コンパイラや<ruby>構文解析<rp>(</rp><rt>こうぶんかいせき</rt><rp>)</rp></ruby>などの<ruby>事前知識<rp>(</rp><rt>じぜんちしき</rt><rp>)</rp></ruby>は<ruby>不要<rp>(</rp><rt>ふよう</rt><rp>)</rp></ruby>です。<ruby>短時間<rp>(</rp><rt>たんじかん</rt><rp>)</rp></ruby>でドメイン<ruby>特化言語<rp>(</rp><rt>とっかげんご</rt><rp>)</rp></ruby>を<ruby>作成<rp>(</rp><rt>さくせい</rt><rp>)</rp></ruby>・<ruby>構築<rp>(</rp><rt>こうちく</rt><rp>)</rp></ruby>できる<ruby>言語構成要素<rp>(</rp><rt>げんごこうせいようそ</rt><rp>)</rp></ruby>を<ruby>標準装備<rp>(</rp><rt>ひょうじゅんそうび</rt><rp>)</rp></ruby>しています。
-                       </p>
-                       
-                       <a id="ringarticle"  href="http://www.codeproject.com/Articles/1089887/The-Ring-Programming-Language" target="_blank" class="btn btn-default"  style="width:100%"><ruby>Ring<rp>(</rp><rt>リング</rt><rp>)</rp></ruby> の<ruby>記事<rp>(</rp><rt>きじ</rt><rp>)</rp></ruby> (<ruby>CodeProject<rp>(</rp><rt>コード・プロジェクト</rt><rp>)</rp></ruby>)</a> 
-                       <a id="ringarticle4" href="https://www.codeproject.com/Articles/1137388/Syntax-Flexibility-in-the-Ring-Programming-Languag" target="_blank" class="btn btn-default"  style="width:100%">シンタックスの<ruby>柔軟性<rp>(</rp><rt>じゅうなんせい</rt><rp>)</rp></ruby> (<ruby>CodeProject<rp>(</rp><rt>コード・プロジェクト</rt><rp>)</rp></ruby>)</a> 
-                       <a id="ringarticle5" href="https://www.codeproject.com/Articles/1222105/The-declarative-approach-of-the-Ring-programming-l" target="_blank" class="btn btn-default"  style="width:100%"><ruby>宣言型手法<rp>(</rp><rt>せんげんがたしゅほう</rt><rp>)</rp></ruby> (<ruby>CodeProject<rp>(</rp><rt>コード・プロジェクト</rt><rp>)</rp></ruby>)</a> 
-                       <a id="ringarticle3" href="https://www.codeproject.com/Articles/1138605/Natural-Language-Programming-in-the-Ring-Programmi" target="_blank" class="btn btn-default"  style="width:100%"><ruby>自然言語<rp>(</rp><rt>しぜんげんご</rt><rp>)</rp></ruby>プログラミング (<ruby>CodeProject<rp>(</rp><rt>コード・プロジェクト</rt><rp>)</rp></ruby>)</a> 
-                       <a id="ringarticle2" href="https://www.codeproject.com/Articles/1200766/Using-the-Natural-Language-Programming-Library-NLP" target="_blank" class="btn btn-default"  style="width:100%"><ruby>自然言語<rp>(</rp><rt>しぜんげんご</rt><rp>)</rp></ruby>プログラミング・ライブラリ (<ruby>CodeProject<rp>(</rp><rt>コード・プロジェクト</rt><rp>)</rp></ruby>)</a> 
-               
-                       
-                       </div>
-               </div>
-         </div>
-        </div>
-   </div>
-
-
- <a href="#practical" class="btn btn-default" data-toggle="collapse" style="width:100%"><ruby>豊<rp>(</rp><rt>ゆたか</rt><rp>)</rp></ruby>かな<ruby>実用性<rp>(</rp><rt>じつようせい</rt><rp>)</rp></ruby></a>
-  <div id="practical" class="panel-group collapse in">
-    <div class="panel panel-default">
-      <div class="panel-heading"><h4><ruby>豊<rp>(</rp><rt>ゆたか</rt><rp>)</rp></ruby>かな<ruby>実用性<rp>(</rp><rt>じつようせい</rt><rp>)</rp></ruby></h4></div>
-      <div class="panel-body">
-
-               <div class="row">
-                       <div class="col-sm-12 col-md-12">
-               <p>
-               <ruby>Ring<rp>(</rp><rt>リング</rt><rp>)</rp></ruby> ライブラリ (<ruby>StdLib<rp>(</rp><rt>スタド・ライブ</rt><rp>)</rp></ruby>, <ruby>WebLib<rp>(</rp><rt>ウェブ・ライブ</rt><rp>)</rp></ruby>, <ruby>自然言語<rp>(</rp><rt>しぜんげんご</rt><rp>)</rp></ruby>ライブラリ、ゲームエンジンなど)、および <ruby>Ring<rp>(</rp><rt>リング</rt><rp>)</rp></ruby> <ruby>統合開発環境<rp>(</rp><rt>とうごうかいはつかんきょう</rt><rp>)</rp></ruby> (<ruby>Ring<rp>(</rp><rt>リング</rt><rp>)</rp></ruby> ノートパッド、フォームデザイナーなど) は <ruby>Ring<rp>(</rp><rt>リング</rt><rp>)</rp></ruby> で<ruby>記述<rp>(</rp><rt>きじゅつ</rt><rp>)</rp></ruby>しました。
-               <ruby>Ring<rp>(</rp><rt>リング</rt><rp>)</rp></ruby> は<ruby>製品開発<rp>(</rp><rt>せいひんかいはつ</rt><rp>)</rp></ruby>の<ruby>即戦力<rp>(</rp><rt>そくせんりょく</rt><rp>)</rp></ruby>であり、<ruby>開発者<rp>(</rp><rt>かいはつしゃ</rt><rp>)</rp></ruby>の<ruby>生産性<rp>(</rp><rt>せいさんせい</rt><rp>)</rp></ruby>を<ruby>改善<rp>(</rp><rt>かいぜん</rt><rp>)</rp></ruby>します。
-               </p>
-               <br>
-
-               <div class="col-xs-12">
-  <div id="myCarousel" class="carousel slide" data-ride="carousel">
-    <!-- Indicators -->
-    <ol class="carousel-indicators">
-      <li data-target="#myCarousel" data-slide-to="0" class="active"></li>
-      <li data-target="#myCarousel" data-slide-to="1"></li>
-      <li data-target="#myCarousel" data-slide-to="2"></li>
-      <li data-target="#myCarousel" data-slide-to="3"></li>
-         <li data-target="#myCarousel" data-slide-to="4"></li>
-         <li data-target="#myCarousel" data-slide-to="5"></li>
-         <li data-target="#myCarousel" data-slide-to="6"></li>
-         <li data-target="#myCarousel" data-slide-to="7"></li>
-         <li data-target="#myCarousel" data-slide-to="8"></li>
-         <li data-target="#myCarousel" data-slide-to="9"></li>
-         <li data-target="#myCarousel" data-slide-to="10"></li>          
-         <li data-target="#myCarousel" data-slide-to="11"></li>          
-    </ol>
-
-    <!-- Wrapper for slides -->
-    <div class="carousel-inner" role="listbox">
-
-      <div class="item active">
-        <img src="newringdemo1.png" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>
-
-      <div class="item">
-        <img src="newringdemo2.png" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>
-    
-      <div class="item">
-        <img src="newringdemo3.png" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>
-
-      <div class="item">
-        <img src="newringdemo4.png" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>
-  
-      <div class="item">
-        <img src="newringdemo5.png" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>
-      <div class="item">
-        <img src="newringdemo6.png" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>
-
-               <div class="item">
-        <img src="newringdemo7.png" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>     
-       
-
-         <div class="item">
-        <img src="newringdemo8.png" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>   
-       
-      <div class="item">
-        <img src="newringdemo9.png" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>     
-       
-        
-         <div class="item">
-        <img src="newringdemo10.png" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>   
-       
-      <div class="item">
-        <img src="newringdemo11.png" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>   
-
-      <div class="item">
-        <img src="newringdemo12.png" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>   
-         
-
-    </div>
-
-    <!-- Left and right controls -->
-    <a class="left carousel-control" href="#myCarousel" role="button" data-slide="prev">
-      <span class="glyphicon glyphicon-chevron-left" aria-hidden="false"></span>
-      <span class="sr-only">前へ</span>
-    </a>
-    <a class="right carousel-control" href="#myCarousel" role="button" data-slide="next">
-      <span class="glyphicon glyphicon-chevron-right" aria-hidden="false"></span>
-      <span class="sr-only">次へ</span>
-    </a>
-       
-  </div>
-</div>
-               
-                       
-               
-                       </div>
-               </div>
-         </div>
-        </div>
-   </div>
-
-
-
-
-<a  id="why" href="#whyring" class="btn btn-default" data-toggle="collapse" style="width:100%">Ring を選ぶ理由は?</a>
-<div id="whyring" class="panel-group collapse in">
-    <div class="panel panel-default">
-      <div class="panel-heading"><h4>Ring を選ぶ理由は?</h4></div>
-      <div class="panel-body">
-               <p align="justify">
-               <p>Ring は簡明、<ruby>違和感<rp>(</rp><rt>いわかん</rt><rp>)</rp></ruby>の排除、組織化の奨励、および透過性とビジュアル実装からなるプログラミング言語です。
-               簡潔なシンタックス、そして自然なインタフェースの作成を可能にする機能群、さらに少しの時間で構築できる宣言型問題解決特化言語があります。
-               非常に小規模、高速なスマートガベージコレクターがあり、メモリをプログラマの制御下に置くことができます。</p>
-               <p>また、多種多様なプログラミングパラダイムに対応しており、インストール直後からすぐ使える業界標準の実用的なライブラリが付属しています (Allegro, FreeGLUT, cURL, LibUV, MySQL, ODBC, OpenGL, OpenSSL, PostgreSQL, Qt, RayLib, SDL, SQLite などに対応)。</p>
-               <p>この言語は生産性と拡張性に優れた高品質な解決方法の開発のために設計されています。<a href="docs-1.11/faq.html#why-do-we-need-yet-another-programming-language-yapl" target="_blank"> → 理由 </a></p>
-               </p>
-               <br> <br>
-
-        <div class="panel panel-primary" id="productivityscal">
-             <div class="panel-heading"><h4>明確な設計目標</h4></div>
-             <div class="panel-body">
-
-               <p>
-                       <ul>
-                       <li>アプリケーション開発用のプログラミング言語です。 <a href="docs-1.11/ringapps.html" target="_blank"> → 用例 </a> </li>
-                       <li>ドメイン特化ライブラリ、フレームワークおよびツールの作成に使用できる汎用言語です。 <a href="docs-1.11/naturallibrary.html" target="_blank"> → 方法 </a></li>
-                       <li>ビジュアルプログラミング言語である Programming Without Coding Technology (PWCT) ソフトウェアの次世代版を作成するために設計された実用言語です。 <a href="http://pwct.org/" target="_blank"> → PWCT の公式サイト </a></li>
-                       <li>小規模で高速な言語であり C/C++ プロジェクトへ組み込めます。<a href="docs-1.11/embedding.html" target="_blank"> → 方法 </a></li>
-                       <li>文教用途およびコンパイラ・仮想計算機の概念における入門に使用できる単純明快な言語です。<a href="#education" target="_blank"> → 方法 </a></li>
-                       <li>生産性と拡張性に優れた高品質な解決方法の開発。</li>                  
-                       </ul>
-
-               </p>
-
-       </div>
-       </div>
-
-
-
-
-        <div class="panel panel-primary" id="simple">
-             <div class="panel-heading"><h4> 簡明 </h4></div>
-             <div class="panel-body">
-
-               Ring は非常に簡明な言語であり、非常にシンプルなシンタックスから構成されています。ボイラープレートコードを使用しないプログラムの記述がプログラマに奨励されています。 
-               'See' 命令はメッセージを標準出力へ表示します。
-               <a href="docs-1.11/faq.html#why-ring-uses-see-give-but-and-ok-keywords" target="_blank"> → 理由 </a>
-               
-
-               <p>
-                       <pre>
-<font color="purple">see</font> "Hello, World!" 
-                       </pre>
-               </p>
-
-               Main 関数はオプション扱いであり、ステートメントの後に実行されるため、ローカルスコープで有用です。
-               <a href="docs-1.11/faq.html#what-is-the-goal-of-including-the-main-function-in-ring" target="_blank"> → 理由 </a>
-               <p>
-                       <pre>
-<font color="purple">func</font> main
-       <font color="purple">see</font> "Hello, World!" 
-                       </pre>
-               </p>
-
-               動的型付け、およびレキシカルスコープを使用しています。変数名の先頭に $ は不要です!
-               <a href="docs-1.11/syntaxflexibility.html#using-and-in-the-start-of-the-variable-name" target="_blank"> → 理由 </a>
-               <br>
-               文字列の連結で ‘+’ 演算子を使用できます。
-               弱い型付け言語であり、文字列はコンテキストに基づいて数値と文字列の間で自動的に変換されます。 
-                               <a href="docs-1.11/faq.html#why-is-ring-weakly-typed" target="_blank"> → 理由 </a>
-               <p>
-                       <pre>
-nCount = 10    <font color="green"># グローバル変数</font>
-<font color="purple">func</font> main
-       nID = 1 <font color="green"># ローカル変数</font>
-       <font color="purple">see</font> "Count = " + nCount + nl + " ID = " + nID
-                       </pre>
-               </p>
-
-
-
-       </div>
-       </div>
-
-        <div class="panel panel-primary" id="natural">
-             <div class="panel-heading"><h4> 違和感の排除 </h4></div>
-             <div class="panel-body">
-
-               Ring は大小英数文字を区別しません。
-               <a href="docs-1.11/faq.html#why-ring-is-not-case-sensitive" target="_blank"> → 理由 </a>
-               <p>
-                       <pre>
-<font color="purple">see</font> "Enter your name ? " 
-<font color="purple">give</font> name
-<font color="purple">see</font> "Hello " + Name        <font color="green"># Name は name と同じです。 </font>
-                       </pre>
-               </p>
-
-               リストのインデックス (添字番号) は 1 から開始します (Ring 1.11 以降は <a href="docs-1.11/zerolib.html">ZeroLib</a> を使用することで 0 から始めることもできます)。
-               <a href="docs-1.11/faq.html#why-the-list-index-start-from-1-in-ring" target="_blank"> → 理由 </a>
-               <p>
-                       <pre>
-aList = ["one","two","three"]
-<font color="purple">see</font> aList[1]       <font color="green"># one を表示</font>
-                       </pre>
-               </p>
-
-               定義前に関数を呼び出すには
-               <p>
-                       <pre>
-one() 
-two() 
-three()
-<font color="purple">func</font> one 
-       <font color="purple">see</font> "One" + nl
-<font color="purple">func</font> two 
-       <font color="purple">see</font> "two" + nl
-<font color="purple">func</font> three 
-       <font color="purple">see</font> "three" + nl
-                       </pre>
-               </p>
-
-               代入演算子は深いコピーを使用します (この操作は参照ではありません)。
-               <a href="docs-1.11/faq.html#why-the-assignment-operator-uses-deep-copy" target="_blank"> → 理由 </a>
-               <p>
-                       <pre>
-aList = ["one","two","three"]
-aList2 = aList
-aList[1] = 1
-<font color="purple">see</font> alist[1]       <font color="green"># 1 を表示</font>
-<font color="purple">see</font> aList2[1]      <font color="green"># one を表示</font>
-                       </pre>
-               </p>
-
-               数値と文字列は値渡しですが、リストとオブジェクトは参照渡しです。 
-               <br>
-               For in ループ でリストの項目 (アイテム、要素とも呼ばれています) を更新できます。
-               <p>
-                       <pre>
-<font color="purple">func</font> main
-       aList = [1,2,3]
-       update(aList)
-       <font color="purple">see</font> aList   <font color="green"># one two three を表示</font>
-
-<font color="purple">func</font> update aList
-       <font color="purple">for</font> x <font color="purple">in</font> aList
-               <font color="purple">switch</font> x
-               <font color="purple">on</font> 1 x = "one"
-               <font color="purple">on</font> 2 x = "two"
-               <font color="purple">on</font> 3 x = "three"
-               <font color="purple">off</font>
-       <font color="purple">next</font>
-                       </pre>
-               </p>
-
-               定義するときにリストを使用するには 
-               <p>
-                       <pre>
-aList = [ [1,2,3,4,5] , aList[1] , aList[1] ]
-<font color="purple">see</font> aList       <font color="green"># 1 2 3 4 5 1 2 3 4 5 1 2 3 4 5 を表示</font>
-                       </pre>
-               </p>
-               一階層以上のループから脱出
-               <a href="docs-1.11/faq.html#why-you-can-specify-the-number-of-loops-you-want-to-break-out-of" target="_blank"> → 理由 </a>
-               <p>
-                       <pre>
-<font color="purple">for</font> x = 1 <font color="purple">to</font> 10
-        <font color="purple">for</font> y = 1 <font color="purple">to</font> 10
-                <font color="purple">see</font> "x=" + x + " y=" + y + nl
-                <font color="purple">if</font> x = 3 <font color="purple">and</font> y = 5
-                        <font color="purple">exit</font> 2     <font color="green"># 二階層のループから脱出</font>
-                <font color="purple">ok</font>
-        <font color="purple">next</font>
-<font color="purple">next</font>
-                       </pre>
-               </p>
-
-
-       </div>
-       </div>
-
-
-        <div class="panel panel-primary" id="encourageorg">
-             <div class="panel-heading"><h4> 組織化の奨励 </h4></div>
-             <div class="panel-body">
-               Ring ではプログラムの組織化を奨励しています。まずは関数、次にクラス、
-               そして関数とヘンテコなモノと組み合わせるプログラミング言語を使用していた悪夢の日々を忘却の彼方へ追いやります! 
-               <br><br>
-               ソースファイルの構造は:
-               <br><br>
-               <ul>
-               <li>ファイルの読み込み</li>
-               <li>ステートメントとグローバル変数</li>
-               <li>関数</li>
-               <li>パッケージおよびクラス</li>
-               </ul>
-               これにより構成要素で end キーワードを記述しなくてもパッケージ、
-               クラスと関数の使用が可能になります。
-               <br> <br>
-               一行コメントまたは複数行コメントを使用できます。
-               <br>
-               一行コメントは # または // で始まります。
-               <br>
-               複数行コメントは /* ~ */ の間に記述します。
-               <p>
-               <pre>
-<font color="green">/* 
-       プログラム名      : Ring を使用したはじめてのプログラム
-       日付          : 2017
-*/</font>
-
-<font color="purple">see</font> "What is your name? "  <font color="green"># 画面上にメッセージを表示します。</font>
-<font color="purple">give</font> cName                         <font color="green"># ユーザからの入力を取得</font>
-<font color="purple">see</font> "Hello " + cName       <font color="green">    # hello を表示!</font>
-
-<font color="green">// See "Bye!"</font>
-                       </pre>
-               </p>
-
-       </div>
-       </div>
-
-
-           <div class="panel panel-primary" id="libs">
-             <div class="panel-heading"><h4> 簡明なシンタックス </h4></div>
-             <div class="panel-body">
-
-
-               
-               <p>
-                       ステートメントの後に ; を記述したり ENTER や TAB を押して <b>行の区別</b> する必要はありません。
-                       つまり、このようなコードを書くことができます。
-               </p>
-               <p>
-                       <pre>
-<font color="purple">see</font> "The First Message"    <font color="purple">see</font> " Another message in the same line! " + <font color="red">nl</font>
-<font color="purple">see</font> "Enter your name?" <font color="purple">give</font> <font color="red">Name</font> <font color="purple">see</font> "Hello " + <font color="red">Name</font>
-                       </pre>
-               </p>
-               <p>
-                       このコードは三種類の属性 X, Y および Z を有する Point クラスを作成します。
-                       <b>パッケージ・クラス・関数の定義を終了するために end キーワードは使用していません。</b>
-                       また、<b>クラスの名前の直下に属性の名前を書く</b>ことができます。
-               </p>
-               <p>
-                       <pre>
-<font color="purple">class</font> Point X Y Z
-                       </pre>
-               </p>
-               <p>
-                       <b>定義前にクラスと関数を使用</b>できます。
-                       この用例では、オブジェクトの新規作成と属性の設定、および値を表示します。
-               </p>
-               <p>
-                       <pre>
-o1 = <font color="purple">new</font> point     o1.x=10    o1.y=20   o1.z=30    <font color="purple">see</font> O1      <font color="purple">class</font> Point X Y Z
-                       </pre>
-               </p>
-               <p>
-                       ドット演算子 &#8216;.&#8217; でオブジェクトの属性とメソッドへアクセスするのではなく、
-                       <b>括弧 { } でオブジェクトへアクセスできます。その後にオブジェクトの属性とメソッドを使用できます。</b>
-               </p>
-               <p>
-                       <pre> 
-o1 = <font color="purple">new</font> point { x=10 y=20 z=30 } <font color="purple">see</font> O1  <font color="purple">class</font> Point X Y Z
-                        </pre>
-               </p>
-               <p>
-                       <b>メソッドの呼出し後に { } を使用してオブジェクトへアクセス</b>します。
-               </p>
-               <p>
-<pre> 
-oPerson = <font color="purple">new</font> Person
-{
-       Name = "Somebody"
-       Address = "Somewhere"
-       Phone = "0000000"
-       Print()                 <font color="green"># ここでは Print() メソッドを呼び出します。</font>
-}
-<font color="purple">class</font> Person Name Address Phone
-       <font color="purple">func</font> Print
-               <font color="purple">see</font> "Name :" + name + nl +
-                   "Address :" + Address + nl +
-                   "Phone : " + phone + nl
-</pre>
-               </p>
-
-               <p>
-                       { } を使用してオブジェクトへアクセスしてから任意のオブジェクトの名前を記述するとき、
-                       <b>自動的に呼び出される全ての setter/getter メソッドに対してクラスを検査します。</b>
-               </p>
-               <p>
-<pre>
-<font color="purple">new</font> Number {
-               <font color="purple">see</font> one             <font color="green"># GetOne() の実行</font>
-               <font color="purple">see</font> two             <font color="green"># GetTwo() の実行</font>
-               <font color="purple">see</font> three   <font color="green"># GetThree() の実行</font>
-}
-<font color="purple">class</font> Number one two three
-       <font color="purple">func</font> GetOne
-               <font color="purple">see</font> "Number : One" + nl
-               <font color="purple">return</font> 1
-       <font color="purple">func</font> GetTwo
-               <font color="purple">see</font> "Number : Two" + nl
-               <font color="purple">return</font> 2
-       <font color="purple">func</font> GetThree
-               <font color="purple">see</font> "Number : Three" + nl
-               <font color="purple">return</font> 3    
-</pre>
-</p>
-
-               </div>
-               </div>
-
-           <div class="panel panel-primary" id="libs">
-             <div class="panel-heading"><h4> オブジェクト指向に基づいた自然言語ステートメントの定義 </h4></div>
-             <div class="panel-body">
-               <p>
-               { } を使用してオブジェクトへアクセス後にクラスに BraceEnd() と呼ばれるメソッドがある場合は BraceEnd() メソッドを実行します!
-               <a href="docs-1.11/faq.html#why-the-ability-to-define-your-own-languages-instead-of-just-handing-over-the-syntax-so-you-can-parse-it-using-whatever-code-you-like" target="_blank"> → 理由 </a>
-               </p>
-<p>
-<pre>
-TimeForFun = <font color="purple">new</font> journey
-<font color="green"># あっと驚く!</font>
-<b>TimeForFun {
-       Hello it is me          <font color="green"># なんと美しいプログラミングの世界でしょう!</font>
-}</b>
-<font color="green"># クラス本体</font>
-<font color="purple">class</font> journey
-       hello=0 it=0 is=0 me=0
-       <font color="purple">func</font> GetHello
-               <font color="purple">See</font> "Hello" + nl
-       <font color="purple">func</font> braceEnd
-               <font color="purple">See</font> "Goodbye!" + nl 
-</pre>
-</p>
-
-               <p>
-               Eval() 関数は文字列に記述されたコードを実行します。</b>
-               </p>
-<p>
-<pre>
-cCode = "See 'Code that will be executed later!' "
-Eval(cCode)    <font color="green"># コードを実行してメッセージを表示します。</font>
-</pre>
-</p>
-
-               <p>
-               <b>リストの作成後にリストから実行用のコードを生成できます。</b>
-               </p>
-<p>
-<pre>
-aWords = ["hello","it","is","me"]
-<font color="purple">for</font> word <font color="purple">in</font> aWords cCode=word+"=0" eval(cCode) <font color="purple">next</font>
-</pre>
-</p>
-
-               <p>
-               <b>Read(cFileName) 関数はテキストファイルを読み取ります。</b>
-               また Write(cFileName,cString) 関数はファイルへ書き込みます。
-               </p>
-<p>
-<pre>
-<font color="purple">see</font> "Enter File Name:" <font color="purple">give</font> cFileName <font color="purple">see</font> read(cFileName) <font color="green"># ファイルの内容を表示</font>
-</pre>
-</p>
-
-               <p>
-               この用例は二つの命令を定義するクラスの作成方法です。<br>
-               最初の命令は : I want window<br>
-               次の命令は : Window title = &lt;式&gt;<br>
-               &#8216;the&#8217; などのキーワードは無視されます。<br>
-               </p>
-<p>
-<pre>
-<font color="purple">new</font> App
-{
-        I want window
-        The window title = "hello world"
-}
-
-<font color="purple">class</font> App
-
-       <font color="green"># I want window 命令の属性</font>
-                       i want window
-                       nIwantwindow = 0
-       <font color="green"># Window title 命令の属性</font>
-       <font color="green"># ここでは window 属性を再定義しません。</font>
-                       title
-                       nWindowTitle = 0
-       <font color="green"># 値を与えると、キーワードは無視されます。</font>
-                       the=0
-
-        <font color="purple">func</font> geti
-                <font color="purple">if</font> nIwantwindow = 0
-                        nIwantwindow++
-                <font color="purple">ok</font>
-
-        <font color="purple">func</font> getwant
-                <font color="purple">if</font> nIwantwindow = 1
-                        nIwantwindow++
-                <font color="purple">ok</font>
-
-        <font color="purple">func</font> getwindow
-                <font color="purple">if</font> nIwantwindow = 2
-                        nIwantwindow= 0
-                        <font color="purple">see</font> "Instruction : I want window" + nl
-                <font color="purple">ok</font>
-                <font color="purple">if</font> nWindowTitle = 0
-                        nWindowTitle++
-                <font color="purple">ok</font>
-
-        <font color="purple">func</font> settitle cValue
-                <font color="purple">if</font> nWindowTitle = 1
-                        nWindowTitle=0
-                        <font color="purple">see</font> "Instruction : Window Title = " + cValue + nl
-                <font color="purple">ok</font>
-
-        
-</pre>
-</p>
-
-               <p>
-               前述の用例を完了するには read() を使用してファイルの内容を取得します。
-<pre>
-        I want window
-        The window title = "hello world"
-</pre>
-               そして eval() を使用してファイルの内容を実行します!<br>
-               また、 GUI ライブラリでウィンドウを作成するために GetWindow() と SetTitle() メソッドを更新します。<br>
-
-               </p>
-
-               </div>
-               </div>
-
-           <div class="panel panel-primary" id="libs">
-             <div class="panel-heading"><h4> オブジェクト指向に基づいた入れ子構造による宣言型言語の定義 </h4></div>
-             <div class="panel-body">
-
-
-               
-
-               <p>
-               <b>自然言語 (Natural) ステートメントを使用したコードの実行、
-               および入れ子構造を使用したコードの実行方法について既に学んでいます。</b>
-               </p>
-               <p>
-               この用例は Web ライブラリからのものであり Bootstrap ライブラリで HTML ドキュメントを生成します。
-               この用例では HTML コードを直接記述せずに類似言語を作成しています (ただの用例です)。
-               その後、<b>宣言型言語を使用するために入れ子構造を使用して、 HTML ドキュメントを生成しています。</b>
-               <br>
-               この用例での考え方として <b>GetDiv() および GetH1() メソッドは { } を使用してアクセスできるオブジェクトを返します。
-               各オブジェクトへのアクセス後に BraceEnd() メソッドが実行されると生成された HTML を
-               BraceEnd() の出力表示がルートに到達するまで親オブジェクトへ送信します。</b>
-               </p>
-<p>
-<pre>
-<font color="purple">load</font> "weblib.ring"
-<font color="purple">import</font> System.Web
-
-<font color="purple">func</font> Main
-
-  BootStrapWebPage()
-  {
-        div
-        {
-          classname = :container
-          div
-          {
-                classname = :jumbotron
-                H1 {   text("Bootstrap Page")   }
-          }
-          div
-          {
-                classname = :row
-                for x = 1 to 3
-                  div
-                  {
-                        classname = "col-sm-4"
-                        H3 { html("Welcome to the Ring programming language") }
-                        P  { html("Using a scripting language is very fun!") }
-                  }
-                next
-          }
-        }
-  }
-</pre>
-</p>
-
-               <p>
-               宣言型インタフェースを強化するクラスはこのようなものなります。
-               </p>
-<p>
-<pre>
-<xmp>
-       class Link from ObjsBase
-               title  link
-               func braceend                   
-                       cOutput = nl+GetTabs() + "<a href='" + 
-                                 Link + "'> "+ Title + " </a> " + nl                   
-
-       class Div from ObjsBase 
-               func braceend
-                       cOutput += nl+'<div'
-                       addattributes()
-                       AddStyle()
-                       getobjsdata()
-                       cOutput += nl+"</div>" + nl
-                       cOutput = TabMLString(cOutput)
-        
-</xmp>
-</pre>
-</p>
-
-               </div>
-               </div>
-               
-               <br> <br>
-               
-                <div class="panel panel-primary" id="designgoals_syntaxflexibility">
-             <div class="panel-heading"><h4> 柔軟性のあるシンタックス </h4></div>
-             <div class="panel-body">
-
-               <p>
-                       ソースコードの記述に関して様々な記法があります! <br> <br>
-
-                       また、言語のキーワードと演算子を変更することで、お好みの記法を作成できます!<br>
-
-               </p>
-
-                 </div>
-               </div>
-               
-               <br> <br>
-<a name="education"></a>
-                       <div class="panel panel-primary" id="transparentimplementation">
-             <div class="panel-heading"><h4> 透過型実装 </h4></div>
-             <div class="panel-body">
-               Ring は透過型実装です。コンパイラの処理段階および仮想計算機による実行中の処理内容を把握できます。<br>
-
-               例えば : ring helloworld.ring -tokens -rules -ic
-
-               <p>
-                       <pre>
-<font color="purple">see</font> "Hello, World!" 
-                       </pre>
-               </p>
-
-               実行結果
-
-               <p>
-                       <pre>
-==================================================================
-Tokens - Generated by the Scanner
-==================================================================
-
-   Keyword : SEE
-   Literal : Hello, World!
-   EndLine
-
-==================================================================
-
-==================================================================
-Grammar Rules Used by The Parser
-==================================================================
-
-Rule : Program --> {Statement}
-
-Line 1
-Rule : Factor --> Literal
-Rule : Range --> Factor
-Rule : Term --> Range
-Rule : Arithmetic --> Term
-Rule : BitShift --> Arithmetic
-Rule : BitAnd --> BitShift
-Rule : BitOrXOR -->  BitAnd
-Rule : Compare --> BitOrXOR
-Rule : EqualOrNot --> Compare
-Rule : LogicNot -> EqualOrNot
-Rule : Expr --> LogicNot
-Rule : Statement  --> 'See' Expr
-
-==================================================================
-
-
-
-==================================================================
-Byte Code - Before Execution by the VM
-==================================================================
-
-     PC      OPCode        Data
-
-      1     FuncExE
-      2       PushC   Hello, World!
-      3       Print
-      4  ReturnNull
-
-==================================================================
-
-Hello, World!
-                       </pre>
-               </p>
-
-       </div>
-       </div>
-
-               <div class="panel panel-primary" id="visualimplementation">
-             <div class="panel-heading"><h4> ビジュアル実装 </h4></div>
-             <div class="panel-body">
-                 
-                 プログラミング言語 Ring は<a href="http://doublesvsoop.sourceforge.net/" target="_blank">ビジュアルプログラミングツール PWCT (外部サイト)</a> で設計されています。
-                 Ring 言語のビジュアルソースは &#8220;visualsrc&#8221; フォルダの *.ssf ファイルにあります。
-                 生成された C 言語ソースコードは src フォルダおよび include フォルダにあります。 <a href="http://github.com/ring-lang/ring/"  target="_blank">GitHub (外部サイト) から fork する。</a><br><br>
-                       <br><br>
-                 このスクリーンショットは ring_vm.ssf (ring_vm.c と ring_vm.h を生成) および ring_list.ssf (ring_list.c と ring_list.h を生成) ファイルからの引用です 。
-                 <br><br>
-                 
-       <div class="col-xs-12">
-  <div id="myCarousel3" class="carousel slide" data-ride="carousel">
-    <!-- Indicators -->
-    <ol class="carousel-indicators">
-      <li data-target="#myCarousel3" data-slide-to="0" class="active"></li>
-      <li data-target="#myCarousel3" data-slide-to="1"></li>
-    </ol>
-
-    <!-- Wrapper for slides -->
-    <div class="carousel-inner" role="listbox">
-
-      <div class="item active">
-        <img src="ringvisualsrc1.jpg" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>
-
-      <div class="item">
-        <img src="ringvisualsrc2.jpg" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div> 
-
-    </div>
-
-    <!-- Left and right controls -->
-    <a class="left carousel-control" href="#myCarousel3" role="button" data-slide="prev">
-      <span class="glyphicon glyphicon-chevron-left" aria-hidden="false"></span>
-      <span class="sr-only">前へ</span>
-    </a>
-    <a class="right carousel-control" href="#myCarousel3" role="button" data-slide="next">
-      <span class="glyphicon glyphicon-chevron-right" aria-hidden="false"></span>
-      <span class="sr-only">次へ</span>
-    </a>                 
-                 
-       </div>
-       </div>
-
-</div>         
-               
-        <div class="panel panel-primary" id="smartgc">
-             <div class="panel-heading"><h4> スマートガベージコレクター </h4></div>
-             <div class="panel-body">
-
-               わずらわしいメモリ操作関連の問題から開放されます。
-               <br><br>
-               <ul>
-                <li>メモリへの不正アクセス</li>
-                <li>メモリリーク</li>
-                <li>未初期化メモリへのアクセス</li>
-                <li>ダングリングポインタ</li>
-               </ul>
-
-               規則:
-               <br><br>
-               <ul>
-               <li>グローバル変数は代入ステートメントで削除するまでメモリに存在し続けます。</li>
-               <li>ローカル変数は関数の処理終了後に削除されます。</li>
-               <li>プログラマは代入ステートメントでメモリから変数を削除する時期を完全に制御できます。</li>
-                       <br>
-                       用例:
-                       <pre>
-aList = [1,2,3,4,5]
-aList = "nice"
-                       </pre>
-     二行目の直後、リスト [1,2,3,4,5] はメモリから削除され、文字列 &#8220;nice&#8221; が残ります。
-       <br><br>
-               <li>プログラマは callgc() 関数を呼び出すことで強制的に強制的にガベージコレクターを実行できます。</li>
-               <li>変数に参照がある場合は (関数へオブジェクトおよびリストを渡すとき)、参照カウントに基づいて変数を削除します。参照されない場合は全て削除されますが、参照がある場合はデータはメモリに残ります。</li>
-               </ul>
-       </div>
-       </div>
-
-                       <br> <br>
-               
-                <div class="panel panel-primary" id="designgoals_nogil">
-             <div class="panel-heading"><h4> インタプリタ (VM) 全体の停止なし (GIL なし) </h4></div>
-             <div class="panel-body">
-
-               <p>
-                       アプリケーションでスレッドを使用するとき、インタプリタ (VM) 全体の停止 (global interpreter (VM) lock - GIL) は起こりません。 <br><br>
-
-                       よって、スレッドは並列動作可能であり、Ring 命令は同時実行されます。 <br><br>
-
-                       これはスレッドと平行性において最良のものです (さらなる高速化が実現できます!) <br>
-
-               </p>
-
-                 </div>
-               </div>
-       
-
-       </div>
-     </div>  
-  </div>
-
-</div>
-
-  
-<a href="#fastenough" class="btn btn-default" data-toggle="collapse" style="width:100%">高速動作</a>
-  <div id="fastenough" class="panel-group collapse in">
-    <div class="panel panel-default">
-      <div class="panel-heading"><h4>ほとんどのアプリケーションで十分に高速動作します</h4></div>
-      <div class="panel-body">
-
-               <div class="row">
-                       <div class="col-sm-12 col-md-12">
-               <p>
-               Ring は単純明快、小規模、柔軟な言語の頂点として設計されています。また、ほとんどのアプリケーションで十分に高速動作します。
-               </p>
-               <p>
-               これまで5年間、市販の電子計算機で Ring を使用してきました。<b>下記の処理は約1秒で完了します</b>。  <br><br>
-               
-               (1) 100,000 行コードのコンパイル <br>
-               (2) 1 ~ 10,000,000 まで数え上げる空ループの実行  <br>
-               (3) 100,000 項目から成るリストで最後の項目を見つけようとして、線形検索で1000 回の検索処理を実行 (最悪の場合) <br>
-               (4) 1,000,000 項目から成るリストを作成後にリスト全項目の合計を計算<br>
-               (5) GUI アプリケーションで ListWidget へ 20,000 アイテムを追加 <br>
-               (6) GUI アプリケーションで TreeWidget へ 5,000 ノードを追加 <br> 
-               (7) ターミナルのコンソールアプリケーションで 10,000 メッセージを表示 <br>
-               
-               もっと高速化が必要なときは C/C++ 拡張機能を使用します! <br>
-               
-               </p>
-               <br>    
-
-               <div class="col-xs-12">
-  <div id="myCarousel2" class="carousel slide" data-ride="carousel">
-    <!-- Indicators -->
-    <ol class="carousel-indicators">
-      <li data-target="#myCarousel2" data-slide-to="0" class="active"></li>
-      <li data-target="#myCarousel2" data-slide-to="1"></li>
-      <li data-target="#myCarousel2" data-slide-to="2"></li>
-      <li data-target="#myCarousel2" data-slide-to="3"></li> 
-    </ol>
-
-    <!-- Wrapper for slides -->
-    <div class="carousel-inner" role="listbox">
-
-      <div class="item active">
-        <img src="ringdemo1_speed.png" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>
-
-      <div class="item">
-        <img src="ringdemo2_speed.png" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>
-    
-      <div class="item">
-        <img src="ringdemo3_speed.png" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>
-
-      <div class="item">
-        <img src="ringdemo4_speed.png" alt="" width="1366" height="729">
-        <div class="carousel-caption">
-          <h3></h3>
-          <p></p>
-        </div>
-      </div>
-  
-  
-
-    </div>
-
-    <!-- Left and right controls -->
-    <a class="left carousel-control" href="#myCarousel2" role="button" data-slide="prev">
-      <span class="glyphicon glyphicon-chevron-left" aria-hidden="false"></span>
-      <span class="sr-only">前へ</span>
-    </a>
-    <a class="right carousel-control" href="#myCarousel2" role="button" data-slide="next">
-      <span class="glyphicon glyphicon-chevron-right" aria-hidden="false"></span>
-      <span class="sr-only">次へ</span>
-    </a>
-       
-  </div>
-</div>
-                       
-               
-                       </div>
-               </div>
-         </div>
-        </div>
-   </div>
-
-  
-
-<a href="#features" class="btn btn-default" data-toggle="collapse" style="width:100%">特徴</a>
-  <div id="features" class="panel-group collapse in">
-    <div class="panel panel-default">
-      <div class="panel-heading"><h4>特徴</h4></div>
-      <div class="panel-body">
-
-         <div class="row">
-         <div class="col-sm-12 col-md-4">
-
-           <div class="panel panel-primary">
-             <div class="panel-heading">自由で画期的</div>
-             <div class="panel-body">
-                       <ul>
-                               <li>自由なオープンソース (MIT ライセンス)</li>
-                               <li>オブジェクト指向プログラミングの頂点としての宣言型プログラミング</li>
-                               <li>ステートメントへの明示的な end が不要であるため、シンタックスは簡潔です (; または ENTER は不要)</li>
-                               <li>For in では値ではなく参照により項目を取得するため、項目を読み書きできます</li>
-                               <li>exit の使用による一階層以上のループからの脱出</li>
-                               <li>関数・クラス・パッケージには end キーワードは不要</li>
-                               <li>括弧 { } を使用することでオブジェクトへのアクセス、および属性・変数としてのメソッド・関数を使用できます。</li>
-                               <li>明瞭なプログラム構造 (ステートメントの後に関数、そしてパッケージとクラス)</li>
-                               <li>オプションで字句・構文・バイトコードを実行中に表示</li>
-                       </ul>
-             </div>          
-            </div>
-        </div>
-
-        <div class="col-sm-12 col-md-4">
-           <div class="panel panel-primary">
-             <div class="panel-heading">強力な実装</div>
-             <div class="panel-body">
-
-               <ul>
-               <li>ハイブリッド実装 (コンパイラ + 仮想計算機)</li>
-               <li>コンパイラ + 仮想計算機は 20,000 行の C コードです。</li>
-               <li>そのほか 500,000 行のコードはライブラリ関連です!</li>
-               <li>ANSI C で記述 (コード生成による)</li>
-               <li>ビジュアル言語 (PWCT) を使用して開発</li>
-               <li>移植性 (<ruby>Windows<rp>(</rp><rt>ウィンドウズ</rt><rp>)</rp></ruby>, <ruby>Linux<rp>(</rp><rt>リナックス</rt><rp>)</rp></ruby> および <ruby>macOS<rp>(</rp><rt>マック・オーエス</rt><rp>)</rp></ruby>, <ruby>Android<rp>(</rp><rt>アンドロイド</rt><rp>)</rp></ruby> など)</li>
-               </ul>
-              </div>
-           </div>
-       </div>
-
-       <div class="col-sm-12 col-md-4">
-
-           <div class="panel panel-primary">
-             <div class="panel-heading">簡明</div>
-             <div class="panel-body">
-
-               <ul>
-               <li>コメント (一行および複数行)</li>
-               <li>大小英数文字同一視</li>
-               <li>構造化プログラミング</li>
-               <li>豪華な制御構造と演算子</li>
-               <li>手続き・関数</li>
-               <li>メイン関数 (オプション扱い)</li>
-               <li>定義前の関数呼び出し</li>
-               <li>再帰処理</li>
-               <li>複数行リテラル</li>
-               <li>インデックスによる文字列内の文字へのアクセス (読み書き)</li>
-               <li>リストのインデックスは 1 から開始</li>
-               <li>範囲演算子。用例: 1:10 および “a”:”z”</li>
-               <li>第一級変数、リスト、オブジェクトと関数</li>
-               <li>値による格納・リストのコピー・オブジェクト (深いコピー)</li>
-               <li>参照によるリスト・オブジェクト渡し</li>
-               <li>8-bit クリーン設計であるためバイナリデータは直接動作します。</li>
-               </ul>
-             </div>
-           </div>
-
-       </div>
-       </div>
-
-       <br> <br>
-
-       <div class="row">
-
-       <div class="col-sm-12 col-md-4">
-
-           <div class="panel panel-primary">
-             <div class="panel-heading"> 動的言語 </div>
-             <div class="panel-body">
-
-               <ul>
-               <li>動的型付け</li>
-               <li>弱い型付け</li>
-               <li>レキシカルスコープ (グローバル、ローカルおよびオブジェクトのステート)</li>
-               <li>関数の内側の変数のデフォルトスコープ (ローカル)</li>
-               <li>関数の外側の変数のデフォルトスコープ (グローバル)</li>
-               <li>ガベージコレクター - メモリの自動管理 (エスケープ解析と参照カウント)</li>
-               <li>例外処理</li>
-               <li>アプリケーション実行中に Eval() でコードを実行</li>
-               </ul>
-             
-             </div>
-           </div>
-       </div>
-
-       <div class="col-sm-12 col-md-4">
-
-           <div class="panel panel-primary">
-             <div class="panel-heading"> オブジェクト指向へのネイティブ対応</div>
-             <div class="panel-body">
-
-               <ul>
-               <li>カプセル化</li>
-               <li>Setter/Getter (オプション扱い)</li>
-               <li>プライベートステート (オプション扱い)</li>
-               <li>インスタンス化</li>
-               <li>多態性</li>
-               <li>コンポジション</li>
-               <li>継承 (単一継承)</li>
-               <li>演算子のオーバーロード</li>
-               <li>パッケージ</li>
-               <li>リフレクションとメタプログラミング</li>
-               </ul>
-     
-             </div>
-           </div>
-       </div>
-
-       <div class="col-sm-12 col-md-4">
-
-           <div class="panel panel-primary">
-             <div class="panel-heading"> 標準ライブラリ </div>
-             <div class="panel-body">
-
-               <ul>
-               <li>I/O 命令</li>
-               <li>算術関数</li>
-               <li>文字列関数</li>
-               <li>リスト関数</li>
-               <li>ファイル処理関数</li>
-               <li>データベースへの対応 (ODBC, PostgreSQL, SQLite および MySQL)</li>
-               <li>セキュリティ関数 (OpenSSL)</li>
-               <li>インターネット関数 (LibCurl)</li>
-               </ul>
-             
-             </div>
-           </div>
-
-       </div>
-  </div>
-
-       <br>
-       <br>
-
-  <div class="row">
-    <div class="col-sm-12 col-md-4">
-
-           <div class="panel panel-primary">
-             <div class="panel-heading"> CGI ライブラリ (Ring にて記述)  </div>
-             <div class="panel-body">
-
-               <ul>
-               <li>CGI ライブラリ - HTTP Get</li>
-               <li>CGI ライブラリ - HTTP Post</li>
-               <li>CGI ライブラリ - ファイルのアップロード</li>
-               <li>CGI ライブラリ - クッキー</li>
-               <li>CGI ライブラリ - URL エンコード</li>
-               <li>CGI ライブラリ - テンプレート</li>
-               <li>CGI ライブラリ - HTML 特殊文字</li>
-               <li>CGI ライブラリ - 関数を使用した HTML の生成</li>
-               <li>CGI ライブラリ - クラスを使用した HTML の生成</li>
-               <li>CGI ライブラリ - CRUD の用例 (MVC を使用)</li>
-               <li>CGI ライブラリ - ユーザーによる用例 (登録、ログインと確認)</li>
-               </ul>
-
-             
-             </div>
-           </div>
-    </div>
-
-    <div class="col-sm-12 col-md-4">
-
-           <div class="panel panel-primary">
-             <div class="panel-heading"> 拡張機能  </div>
-             <div class="panel-body">
-
-               <ul>
-               <li>C/C++ による拡張機能の使用 (シンプルなAPI)</li>
-               <li>C/C++ プログラムへの組み込み</li>
-               <li>手軽に C/C++ ライブラリと接続するためのコード生成器 (Ring にて記述) があります。</li>
-               <li>デスクトップとモバイル用の 2D ゲーム作成 (Allegro ライブラリ)</li>
-               <li>デスクトップおよびモバイル用の GUI アプリケーションの作成 (Qt フレームワーク)。</li>
-               </ul>
-             
-             </div>
-           </div>
-    </div>
-
-    <div class="col-sm-12 col-md-4">
-           <div class="panel panel-primary">
-             <div class="panel-heading"> これ以外にも </div>
-             <div class="panel-body">
-
-               <ul>
-               <li>非常に安定した動作</li>
-               <li>十分な処理能力</li>
-               <li>完成度の高い取扱説明書</li>
-               </ul>
-             
-             </div>
-           </div>
-    </div>
-  </div>
-
-
-      </div>
-    </div>  
-  </div>
-
-  
- <a id="ringbook" href="https://en.wikibooks.org/wiki/Ring" target="_blank" class="btn btn-default"  style="width:100%">Wikibooks での Ring 紹介記事 (外部サイト)</a>
- <a id="ringsamples" href="https://rosettacode.org/wiki/Category:Ring" target="_blank" class="btn btn-default"  style="width:100%">Ring のサンプルソ-ス (Rosetta Code)</a>
-
-  
-
diff --git a/website-obsoleted/news.data b/website-obsoleted/news.data
deleted file mode 100644 (file)
index 99a5af6..0000000
+++ /dev/null
@@ -1,140 +0,0 @@
-  aNews = [
-  ["2020年 4月16日",'<a href="https://github.com/ring-lang/ring/tree/master/applications/matching" target="_blank">Matching ゲーム</a>'],
-  ["2020年 4月 9日",'<a href="https://github.com/ring-lang/ring/tree/master/applications/rockpaperscissors" target="_blank">RockPaperScissors ゲーム</a>'],
-  ["2020年 3月31日",'<a href="https://github.com/ring-lang/ring/tree/master/applications/moneyboxes" target="_blank">MoneyBoxes ゲーム</a>'],
-  ["2020年 3月29日",'<a href="https://github.com/ring-lang/ring/tree/master/applications/questions" target="_blank">Questions ゲーム</a>'],
-  ["2020年 3月20日",'<a href="https://github.com/ring-lang/ring/tree/master/applications/laser" target="_blank"> Laser ゲーム</a>'],
-  ["2020年 2月15日",'<a href="https://github.com/ring-lang/ring/tree/master/applications/magicballs" target="_blank">Magic Balls ゲーム</a>'],
-  ["2020年 2月12日",'<a href="https://github.com/ring-lang/ring/blob/master/samples/other/HassounaCourse/" target="_blank"> Hassouna Academy コースのサンプルソース</a>'],
-  ["2020年 2月 2日",'<a href="https://github.com/SpaceVim/SpaceVim/blob/master/docs/layers/lang/ring.md" target="_blank"> Ring 言語は SpaceVim に対応しました</a>'],
-  ["2020年 1月25日",'<a href="./docs-1.12/whatisnew12.html" target="_blank"> Ring 1.12 を公開しました!</a>'],
-  ["2020年 1月23日",'Ring 1.6 日本語版作業開始から777日目です。おめでとう!'],
-  ["2021年 1月23日",'Ring 1.0 公開から五年目です。おめでとう!'],
-  ["2020年12月06日",'Ring 1.6 日本語版作業開始から三年目です。おめでとう!'],
-  ["2019年12月25日",'<a href="https://www.youtube.com/watch?v=K8Lh03PdcjI&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=301" target="_blank"> Hassouna Academy の Ring 教材動画が 300 本を超えました'],
-  ["2019年12月23日",'<a href="https://github.com/ring-lang/ring/tree/master/samples/other/number2words" target="_blank">チュートリアル: 数値を単語表記へ変換 </a>'],
-  ["2019年12月 5日",'<a href="https://github.com/ring-lang/ring/tree/master/applications/go" target="_blank">囲碁ゲーム </a>'],
-  ["2019年11月10日",'<a href="https://www.youtube.com/watch?v=BH5dI1H3hMA" target="_blank">動画: PWCT 2.0 の開発風景 (Ring を採用)</a>'],
-  ["2019年10月 6日",'<a href="http://ring-lang-081.osdn.jp/docs-1.11/index.html" target="_blank"> Ring 1.11 日本語版取扱説明書</a>'],
-  ["2019年10月 5日",'<a href="http://ring-lang.sourceforge.net/RingBasics_ArabicBook.pdf" target="_blank"> Ring 入門 (アラビア語の電子書籍)</a>'],
-  ["2019年10月 1日",'<a href="https://www.youtube.com/watch?v=rOwOEFTVvg0" target="_blank"> 動画: 1.5 時間でわかる Ring 入門</a>'],
-  ["2019年 9月15日",'<a href="./docs-1.11/whatisnew11.html" target="_blank"> Ring 1.11 を公開しました!</a>'],
-  ["2019年 6月25日",'<a href="https://github.com/ring-lang/ring/tree/master/extensions/ringraylib" target="_blank"> RayLib 拡張機能</a>'],
-  ["2019年 6月10日",'<a href="https://github.com/ring-lang/ring/blob/master/samples/other/UsingQt3D/README.md" target="_blank"> Qt3D チュートリアル </a>'],
-  ["2019年 6月 3日",'<a href="https://github.com/ring-lang/ring/blob/master/applications/maze" target="_blank"> Maze ゲーム </a>'],
-  ["2019年 6月 1日",'<a href="https://github.com/ring-lang/ring/blob/master/applications/sokoban" target="_blank"> Sokoban ゲーム </a>'],
-  ["2019年 5月 1日",'祝!令和元年'],
-  ["2019年 4月30日",'さようなら!平成'],
-  ["2019年 5月10日",'<a href="https://github.com/ring-lang/ring/tree/master/applications/sudoku" target="_blank"> Sudoku ゲーム'],
-  ["2019年 4月25日",'<a href="https://github.com/ring-lang/ring/tree/master/applications/checkers" target="_blank"> Checkers ゲーム'],
-  ["2019年 4月 1日",'<a href="https://github.com/ring-lang/ring/tree/master/extensions/tutorial" target="_blank"> チュートリアル: C/C++ による拡張機能の開発方法'],
-  ["2019年 3月 1日",'<a href="https://www.youtube.com/watch?v=6VIHMyrEilw&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank"> Hassouna Academy の Ring 教材動画が 200 本を超えました'],
-  ["2019年 3月 1日",'日本語版運営者告知: <a href="https://railway.jr-central.co.jp/tickets/youth18-ticket/">青春18きっぷ</a>期間中 (3月01日~4月10日迄の春期など) は一切の活動を休止させていただきます。再開は 4月中旬以降です。
-                                               また、改元後の長期連休期間についても休止を検討しています。'],
-  ["2019年 2月28日",'日本国内: 日本語版サイトのアクセス件数が7000件を超えました。そして100件目の新着情報です。ありがとうございます。今後とも宜しくお願いします。'],
-  ["2019年 2月28日",'日本国内: Ring 1.10 日本語版取扱説明書の最終改訂版 (matsumoto) を公開'],
-  ["2019年 2月27日",'日本国内: ウェブサイトの調整完了。今まで Sphinx の制限でできませんでしたが、これでウェブサイトの「用例、方法、理由」のリンクが正常に動作するようになりました。'],
-  ["2019年 2月11日",'日本国内: オンライン版取扱説明書の改訂 (2019年01月29日版との比較で100ファイル、最大1072箇所を修正)'],
-  ["2019年 2月10日",'日本国内: Ring Notepad 日本語テスト版を公開'],
-  ["2019年 2月 9日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/0WYfFNBMSZk" target="_blank"> アプリケーション: Desktop Screen Shot (デスクトップ画面撮影)</a>'],
-  ["2019年 2月 5日",'日本国内: ウェブサイトの再公開 (Geocities → OSDN) - 試験版のためサイト調整中です。'],
-  ["2019年 1月30日",'日本国内: <a href="http://ring-lang-081.osdn.jp/docs-1.10/index.html" target="_blank"> Ring 1.10 日本語版取扱説明書</a>の html, chm 版を公開'],
-  ["2019年 1月25日",'<a href="./docs-1.10/whatisnew10.html" target="_blank"> Ring 1.10 を公開しました!</a>'],
-  ["2019年 1月15日",'<a href="./docs-1.10/ringpm.html" target="_blank">Ring パッケージマネージャー (RingPM) </a>'],
-  ["2019年12月 9日",'日本国内: <a href="https://info-geocities.yahoo.co.jp/close/index.html">Yahoo! Geocities サービス終了</a>に伴うウェブサイトの閉鎖'],
-  ["2018年11月11日",'<a href="https://github.com/ring-lang/ring/tree/master/applications/chess" target="_blank">Chess ゲーム </a>'],
-  ["2018年11月 6日",'<a href="https://github.com/ring-lang/ring/tree/master/applications/gameoflife" target="_blank">GameOfLife ゲーム </a>'],
-  ["2018年10月21日",'<a href="Ring 1.0 公開から1000日目です。おめでとうございます!</a>'],
-  ["2018年10月16日",'<a href="https://github.com/ring-lang/ring/tree/master/editor/vscode" target="_blank"> Visual Studio Code 用の Ring 拡張機能</a>'],
-  ["2018年10月14日",'<a href="https://github.com/ring-lang/ring/tree/master/applications/knighttour" target="_blank"> Knight Tour ゲーム</a>'],
-  ["2018年10月12日",'<a href="https://github.com/ring-lang/ring/tree/master/applications/minesweeper" target="_blank"> Minesweeper ゲーム</a>'],
-  ["2018年10月 6日",'<a href="./docs-1.10/whatisnew9.html" target="_blank"> Ring 1.9 を公開しました!</a>'],
-  ["2018年 8月22日",'<a href="https://store.steampowered.com/app/939200/Gold_Magic_800" target="_blank">ゲーム: Gold Magic 800</a>'],
-  ["2018年 8月16日",'<a href="https://rosettacode.org/wiki/Category:Ring" target="_blank">Rosettacode に掲載されたプログラミング言語 Ring 関連サンプルが 600 本を超えました</a>'],
-  ["2018年 8月03日",'日本国内: Ring 1.8 日本語版取扱説明書の ePub 版をこっそり公開'],
-  ["2018年 7月29日",'<a href="https://groups.google.com/forum/#!forum/ring-lang" target="_blank">Ring Group のトピックが 1000 件を超えました</a> '],
-  ["2018年 7月17日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/MjQGbF9fBfc" target="_blank"> Ring Notepad の新しいスタイル</a>'],
-  ["2018年 7月 4日",'日本国内: Ring 1.8 日本語版取扱説明書の<a href="./docs-1.8/index.html">非公式オンライン版サイトを公開</a>した<a href="https://ja.wikipedia.org/wiki/ふなっしー">なっしー!</a>'],
-  ["2018年 7月 2日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/WS4-o0jFfOw" target="_blank"> Heroku のクラウドを使用した Ring ウェブアプリケーションの配布</a>'],
-  ["2018年 6月25日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/WHeOl5fGW-0" target="_blank"> Ring 1.8 を公開しました!</a>'],
-  ["2018年 6月21日",'<a href="https://ja.wikipedia.org/wiki/Ring_(プログラミング言語)" target="_blank"> Ring の記事 (日本語版 Wikipedia)</a>'],
-  ["2018年 6月10日",'<a href="https://github.com/ring-lang/ring/tree/master/extensions/ringbeep" target="_blank"> RingBeep: 初めての拡張機能を作ろう </a>'],
-  ["2018年 6月 4日",'<a href="https://www.youtube.com/watch?v=7BqoQldx0Pk&list=PL8SruvH85P0uA8ggijCQUR9tXAXF4bmtu&index=2" target="_blank"> 動画 : プログラミング言語 Ring のご紹介 </a>'],
-  ["2018年 6月 3日",'日本国内: Ring 1.7 日本語版取扱説明書の<a href="./docs-1.7/index.html">非公式オンライン版サイト</a>を開設'],
-  ["2018年 6月 1日",'<a href="https://github.com/ring-lang/ring/blob/master/developers/Arabic/README.md" target="_blank"> アラビア語での無料講義 </a>'],
-  ["2018年 5月11日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/amfHRmCw37E" target="_blank"> StopWatch アプリケーション </a>'],
-  ["2018年 4月27日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/ItLfmBjBWrA" target="_blank"> String2Constant アプリケーション</a>'],
-  ["2018年 3月23日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/iUkiEtzY6mM" target="_blank"> Manjaro Linux での Ring コンパイル</a>'],
-  ["2018年 3月20日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/M5-ZBqoXss4" target="_blank"> FoxRing ライブラリ</a>'],
-  ["2018年 3月 6日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/AqYS3BavKCU" target="_blank"> Find in Files アプリケーション</a>'],
-  ["2018年 3月 3日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/F6YMrboda3E" target="_blank"> Cards ゲームの改良</a>'],
-  ["2018年 2月25日",'日本国内: Ring 1.7 取扱説明書の日本語版移行作業完了'],
-  ["2018年 2月22日",'日本国内: Ring 1.7 取扱説明書の日本語版プレビュー版公開 (OSDN)'],
-  ["2018年 2月11日",'日本国内: Ring 1.7 取扱説明書の日本語版移行作業開始'],
-  ["2018年 2月11日",'日本国内: Ring 1.6 取扱説明書の日本語仮訳完了'],
-  ["2018年 2月 9日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/OoZR4nYptbw" target="_blank"> Ring は上位 50 位へ登場しました</a>'],
-  ["2018年 2月 1日",'<a href="https://rosettacode.org/wiki/Category:Ring" target="_blank">Rosetta Code に掲載されているプログラミング言語 Ring 関連のサンプルソースが 500 本を突破しました!</a>'],
-  ["2018年 1月25日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/pWXlWO5Fze4" target="_blank"> Ring 1.7 を公開しました!</a>'],
-  ["2017年12月21日",'<a href="https://www.codeproject.com/Articles/1222105/The-declarative-approach-of-the-Ring-programming-l" target="_blank"> 記事: プログラミング言語 Ring の宣言型手法</a>'],
-  ["2017年12月 7日",'日本国内: isVowel (旧名義: めぐみ発動機 / GreenWing) による Ring 1.6 取扱説明書の邦訳作業開始' ],
-  ["2017年11月30日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/PC3s0OjRHfo" target="_blank"> Ring 1.6 を公開しました!</a>'],
-  ["2017年 8月30日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/258HR7K9ehI" target="_blank"> ゲーム : TicTacToe 3D!</a>'],
-  ["2017年 8月28日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/OJFruu_U6yU" target="_blank"> Google API Shortener アプリケーション!</a>'],
-  ["2017年 8月21日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/MULu5F8MMCg" target="_blank"> Ring 1.5 を公開しました!</a>'],
-  ["2017年 8月10日",'<a href="https://www.codeproject.com/Articles/1200766/Using-the-Natural-Language-Programming-Library-NLP" target="_blank"> 記事 : 自然言語プログラミングライブラリ (NLPL) の使用方法 </a>'],
-  ["2017年 7月27日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/FQc8-R2h_F8" target="_blank"> GitHub で Ring プロジェクトを見つけられるようになりました。</a>'],
-  ["2017年 6月29日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/QOK1hUqyAjQ" target="_blank"> Ring 1.4 を公開しました!</a>'],
-  ["2017年 5月15日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/sowTIoCjx74" target="_blank"> Ring 1.3 を公開しました!</a>'],
-  ["2017年 3月 9日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/jZI51wKx0lU" target="_blank"> Ring は上位 100 位へ登場しました</a>'],
-  ["2017年 2月10日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/be0_jlfTyaU" target="_blank"> Ring は TIOBE Index へ登録されました</a>'],
-  ["2017年 2月 9日",'<a href="https://github.com/ring-lang/ring/tree/master/editor/emacs" target="_blank"> Emacs エディタ用 Ring モード</a>'],
-  ["2017年 1月25日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/18Yk6j_nv0o" target="_blank"> Ring 1.2 を公開しました!</a>'],
-  ["2017年 1月18日",'<a href="https://en.wikipedia.org/wiki/Ring_(programming_language)" target="_blank"> Ring の記事 (英語版 Wikipedia)</a>'],
-  ["2016年11月23日",'<a href="http://www.youm7.com/story/2016/11/23/%D8%A8%D8%AF%D8%A1-%D8%AA%D8%B7%D9%88%D9%8A%D8%B1-%D8%A7%D9%84%D8%AC%D9%8A%D9%84-%D8%A7%D9%84%D8%AC%D8%AF%D9%8A%D8%AF-%D9%85%D9%86-%D8%AA%D9%82%D9%86%D9%8A%D8%A9-%D8%A7%D9%84%D8%A8%D8%B1%D9%85%D8%AC%D8%A9-%D8%A8%D8%AF%D9%88%D9%86-%D9%83%D9%88%D8%AF/2979508" target="_blank"> アラビア語メディア "Youm7" による PWCT 2.0 開発で Ring の採用に関する取材</a>'],
-  ["2016年10月13日",'<a href="http://www.codeproject.com/Articles/1138605/Natural-Language-Programming-in-the-Ring-Programmi" target="_blank"> 記事 : 自然言語プログラミング</a>'],
-  ["2016年10月12日",'<a href="http://www.codeproject.com/Articles/1138194/Build-Flappy-Bird-using-the-Ring-programming-langu" target="_blank"> 記事 : Flappy Bird 3000 ゲーム</a>'],
-  ["2016年10月12日",'<a href="http://www.codeproject.com/Articles/1138108/Developing-the-Stars-Fighter-Game-for-Desktop-and" target="_blank"> 記事 : Stars Fighter ゲーム</a>'],
-  ["2016年10月10日",'<a href="http://www.codeproject.com/Articles/1137570/Weight-History-Application-for-Desktop-and-Android" target="_blank"> 記事 : Weight History アプリケーション</a>'],
-  ["2016年10月 9日",'<a href="http://www.codeproject.com/Articles/1137388/Syntax-Flexibility-in-the-Ring-Programming-Languag" target="_blank"> 記事 : シンタックスの柔軟性</a>'],
-  ["2016年10月 6日",'<a href="https://groups.google.com/forum/#!topic/ring-lang/sVpcpjiyr4A" target="_blank"> Ring 1.1 を公開しました!</a>'],
-  ["2016年10月 4日",'<a href="https://github.com/MajdiSobain/ring_wincreg" target="_blank"> Ring_WinCReg 拡張機能  </a>'],
-  ["2016年10月 4日",'<a href="https://github.com/ring-lang/werdy" target="_blank"> Werdy アプリケーション </a>'],
-  ["2016年 6月 6日",'<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_Ring_1.0_MobileAppDevelopment_Qt_Project.zip/download" target="_blank"> Ring 1.0 用の Qt を使用したモバイルアプリケーション開発 </a>'],
-  ["2016年 5月26日",'<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_Ring_1.0_MacOSX_64bit_binary_release.zip/download" target="_blank"> Ring 1.0 macOS 版を公開しました!  </a>'],
-  ["2016年 5月11日",'<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_SuperMan2016_1.0_win32.zip/download" target="_blank"> Super Man 2016 ゲーム </a>'],
-  ["2016年 5月 7日",'<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_FlappyBird3000_1.0_win32.zip/download" target="_blank"> Flappy Bird 3000 ゲーム </a>'],
-  ["2016年 5月 3日",'<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_StarsFighter_1.0_win32.zip/download" target="_blank"> Stars Fighter ゲーム </a>'],
-  ["2016年 5月 2日",'<a href="http://www.codeproject.com/Articles/1096942/Squares-Puzzle-using-RingAllegro" target="_blank"> 記事: RingAllegro を使用した Squares Puzzle (CodeProject)</a>'],
-  ["2016年 4月21日",'<a href="https://ar.wikipedia.org/wiki/%D8%B1%D9%8A%D9%86%D8%AC_(%D9%84%D8%BA%D8%A9_%D8%A8%D8%B1%D9%85%D8%AC%D8%A9)" target="_blank"> Ring の記事 (アラビア語版 Wikipedia)</a>'],
-  ["2016年 4月 3日",'<a href="http://www.codeproject.com/Articles/1089887/The-Ring-Programming-Language" target="_blank"> Ring の記事 (CodeProject)</a>'],
-  ["2016年 3月31日",'<a href="http://github.com/ring-lang/ring" target="_blank"> Ring ソースコード (GitHub)</a>'],
-  ["2016年 3月28日",'<a href="https://groups.google.com/forum/#!searchin/ring-lang/atom%7Csort:date/ring-lang/ap8W8v6HWhM/fvZfXnYRAgAJ" target="_blank"> Atom エディタ用の Ring 拡張機能</a>'],
-  ["2016年 3月21日",'<a href="https://en.wikibooks.org/wiki/Ring" target="_blank"> WIKIBOOKS での Ring 関連記事</a>'],
-  ["2016年 3月16日",'<a href="https://www.youtube.com/watch?v=QABSHg4zY6M" target="_blank"> 動画 : プログラミング言語 Ring のご紹介</a>'],
-  ["2016年 3月21日",'<a href="https://github.com/ring-lang/ring/tree/master/editor/geany" target="_blank"> Geany エディタ用の Ring 拡張機能</a>'],
-  ["2016年 3月 5日",'<a href="http://ring-lang.sf.net/cgi-bin/ringlang.cgi"> Ring をオンラインで体験 (対話型 Ring 端末)</a>'],
-  ["2016年 3月 4日",'<a href="https://groups.google.com/forum/#!searchin/ring-lang/sublime%7Csort:date/ring-lang/zglVNEaUshQ/GLXvBc-_BAAJ" target="_blank"> Sublime Text 2 用の Ring 構文色分け・強調機能</a>'],
-  ["2016年 2月28日",'<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_Ring_1.0_Ubuntu_32bit_binary_release.zip/download" target="_blank"> Ring 1.0 (Ubuntu Linux 版) を公開しました!</a>'],
-  ["2016年 2月17日",'<a href="https://github.com/ahmadomar/RingForVS" target="_blank">Visual Studio 用の Ring 拡張機能</a>'],
-  ["2016年 2月 5日",'<a href="https://rosettacode.org/wiki/Category:Ring" target="_blank">プログラミング言語 Ring 関連の Rosetta Code ページを開設</a>'],
-  ["2016年 1月30日",'<a href="resources.html">Ring ウェブサイトにサンプルとブログの一覧を掲載した「<a href="resources.html">リソース</a>」ページを追加'],
-  ["2016年 1月27日",'<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_WebLib_1.0_source_code_release.zip/download" target="_blank"> WebLib 1.0 を公開しました!</a>'],
-  ["2016年 1月26日",'<a href="https://www.facebook.com/photo.php?fbid=10153496611810345&set=a.10151555440725345.1073741841.640625344&type=3" target="_blank">Ring 1.0 についての投稿</a>では、 1700 人からの「いいね!」と <a href="http://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_Ring_1.0_win32_binary_release.zip/stats/map?dates=2016-01-25+to+2016-01-26" target="_blank">2000 件のダウンロード</a>の成果となりました'],
-  ["2016年 1月25日",'<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_Ring_1.0_win32_binary_release.zip/download" target="_blank"> Ring 1.0 を公開しました!</a>'],
-  ["2016年 1月23日",'Ring チーム! そして <a href="https://groups.google.com/forum/#!forum/ring-lang" target="_blank">Ring グループ</a> '],
-  ["2016年 1月21日",'ウェブサイトを開設しました!'],
-  ["2016年 1月11日",'アラビア語メディア "Youm7" の Ring 言語に関する取材 : <a href="https://www.facebook.com/Youm7/posts/1331818946888764" target="_blank">Facebook</a>
-                                               <a href="http://www.youm7.com/story/2016/1/11/%D9%81%D9%89-25-%D9%8A%D9%86%D8%A7%D9%8A%D8%B1-%D8%A7%D9%84%D9%85%D9%82%D8%A8%D9%84-%D9%84%D8%BA%D8%A9-%D8%A8%D8%B1%D9%85%D8%AC%D8%A9-%D8%AC%D8%AF%D9%8A%D8%AF%D8%A9-%D8%A8%D9%85%D9%88%D8%A7%D8%B5%D9%81%D8%A7%D8%AA-%D8%B9%D8%A7%D9%84%D9%85%D9%8A%D8%A9-%D9%85%D9%86-%D8%A5%D8%A8%D8%AA%D9%83%D8%A7%D8%B1/2532713#.VqNi6U-RZVV" target="_blank"> ウェブサイト </a> '],
-  ["2015年12月13日",'アラビア語メディア  "Muslim Researchers" の Ring 言語に関する取材 : 
-                                                       <a href="http://muslims-res.com/%D9%84%D8%BA%D8%A9-%D8%A8%D8%B1%D9%85%D8%AC%D9%8A%D8%A9-%D8%AC%D8%AF%D9%8A%D8%AF%D8%A9-%D8%A8%D8%A3%D9%8A%D8%AF%D9%8D-%D8%B9%D8%B1%D8%A8%D9%8A%D8%A9-%D9%88%D9%84%D9%82%D8%A7%D8%A1-%D8%AD%D8%B5%D8%B1.html" target="_blank">ウェブサイト </a>'],  
-  ["2015年 9月",'取扱説明書のほとんどを書き終えました!'],
-  ["2015年 8月",'動作検証・試験のほとんどを終えました!'],
-  ["2015年 5月",'コンパイラと仮想計算機に関する開発作業のほとんどを終えました!'],
-  ["2015年 4月",'言語名の決定 : Ring'],
-  ["2014年12月",'<a href="https://www.facebook.com/mahmoudfayed1986/posts/10152635115050345" target="_blank">Facebook の自己紹介ページへ Ring 言語に関してアラビア語で初めて投稿をしました!</a>
-                                               投稿後に数多くのプログラミング言語を検証・分析したことについて言及しました。
-                                               さらに <a href="http://doublesvsoop.sourceforge.net" target="_blank">PWCT ソフトウェア</a>の次世代版の開発で
-                                               Ring 言語を採用することを決定しました。'],
-  ["2013年 9月",'言語の設計と実装を開始しました!'],
-  ["2011年11月",'新しいプログラミング言語の背後にある考え方と一般的な目標について']
-  ]
diff --git a/website-obsoleted/news.template b/website-obsoleted/news.template
deleted file mode 100644 (file)
index 9790c8c..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-  <%  eval(read("news.data"))  %>
-  <div id="news" class="panel-group">
-    <div class="panel panel-info">
-      <div class="panel-heading"><h4>新着情報 <span class="badge"><%=len(aNews) %></span></h4></div>
-      <div class="panel-body">
-                       <table class="table table-striped">
-                               <thead>
-                                 <tr>
-                                       <th width="20%">日付</th>
-                                       <th>概要</th>
-                                 </tr>
-                               </thead>
-                               <tbody>
-                               <% for x in aNews %>
-                                 <tr>
-                                       <td><%= x[1] %></td>
-                                       <td><%= x[2] %></td>
-                                 </tr>
-                               <% next %>                                        
-                               </tbody>
-                       </table>
-         </div>
-     </div>  
-  </div>
-
diff --git a/website-obsoleted/pages.data b/website-obsoleted/pages.data
deleted file mode 100644 (file)
index 9868be4..0000000
+++ /dev/null
@@ -1,26 +0,0 @@
-# using C_HEADER and C_FOOTER we determine the header/footer files
-C_HEADER = "header.template"   C_FOOTER = "footer.template"
-
-# In the list aPages we define the website templates
-aPages = ["index.template","download.template",
-         "download110.template",
-         "download19.template",
-         "download18.template",
-         "download17.template",
-         "download16.template",
-         "download154.template",       
-         "download153.template",       
-         "download152.template",       
-         "download151.template",       
-         "download15.template",        
-         "download141.template",       
-         "download14.template",        
-         "download13.template",        
-         "download12.template",        
-         "download11.template",        
-         "download1.template", 
-          "news.template","resources.template",
-          "team.template"]
-
-# We need aDownload as a Global Variable
-aDownload = []
\ No newline at end of file
diff --git a/website-obsoleted/resources.data b/website-obsoleted/resources.data
deleted file mode 100644 (file)
index 94e9b93..0000000
+++ /dev/null
@@ -1,2916 +0,0 @@
-aResources = [ ["サンプルとアプリケーション",[
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/applications/fifteenpuzzle/CalmoSoftFifteenPuzzleGame.ring" target="_blank">CalmoSoft 15パズルゲーム (CalmoSoft Fifteen Puzzle Game)</a>',
-                                       '<img src="fifteen2.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/applications/analogclock/AnalogClock-Image.ring" target="_blank">アナログ式時計 (Analog Clock)</a>',
-                                       '<img src="analogclock.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/applications/rnote/rnote.ring" target="_blank">Ring ノートパッド (Ring Notepad)</a>',
-                                       '<img src="ringnotepad.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/formdesigner" target="_blank">Ring フォームデザイナー (Ring Form Designer)</a>',
-                                       '<img src="ringformdesigner.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/applications/getquoteshistory/GetQuotesHistoryDraw-v1.0.ring" target="_blank">Yahoo! 株式情報 (Yahoo Stock Data)</a>',
-                                       '<img src="getquotesmac.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/applications/urlshortener/urlshortenermain.ring" target="_blank">Google 短縮URL (Google URL Shortener)</a>',
-                                       '<img src="urlapp.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/MajdiSobain/WinStartupManager/blob/master/WinStartupManager.ring" target="_blank">Windows スタートアップ管理 (Windows Startup Manager)</a>',
-                                       '<img src="winstartupman.jpg" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/applications/videomusicplayer/AA-Video-Music-Player.ring" target="_blank">動画・音声プレイヤー (Video Music Player)</a>',
-                                       '<img src="videomusicplayer.jpg" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/applications/cards/cards.ring" target="_blank">カードゲーム (The Cards Game)</a>',
-                                       '<img src="cards.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/applications/tictactoe/TicTacToe.ring" target="_blank">○×ゲーム (TicTacToe)</a>',
-                                       '<img src="tictactoe.jpg" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/applications/tictactoe3d/tictactoe3d.ring" target="_blank">○×ゲーム 3D (TicTacToe 3D)</a>',
-                                       '<img src="tictactoe3d.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/applications/calculator/calc-gui.ring" target="_blank">電卓 (Calculator)</a>',
-                                       '<img src="newcalc2.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/applications/ringrepl/replw.ring" target="_blank">Ring 対話プログラミング環境 (Ring REPL)</a>',
-                                       '<img src="ringrepl.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/AbdelrahmanGIT/RingSamples/blob/master/src/ConvertNumbersToString.ring" target="_blank">数値 → 文字列変換器 (Convert Numbers To String)</a>',
-                                       '<img src="numtostr.jpg" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/extensions/codegen/parsec.ring" target="_blank">拡張機能用コード生成器 (Code Generator for extensions)</a>',
-                                       '<img src="codegen.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/ring2exe/ring2exe.ring" target="_blank">Ring2EXE</a>',
-                                       '<img src="ring2exe.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/applications/sixteenpuzzle/CalmoSoftSixteenPuzzle.ring" target="_blank">CalmoSoft 16パズルゲーム (CalmoSoft Sixteen Puzzle)</a>',
-                                       '<img src="sixteenpuzzle.jpg" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/MajdiSobain/RingAllegro_SquaresPuzzle" target="_blank">絵合わせパズル (Squares Puzzle)</a>',
-                                       '<img src="squarespuzzle.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_StarsFighter_1.0_win32.zip/download" target="_blank">惑星戦闘機 (Stars Fighter Game)</a>',
-                                       '<img src="starsfighter.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_FlappyBird3000_1.0_win32.zip/download" target="_blank"> はためけ! 鳥ッ! (Flappy Bird Game)</a>',
-                                       '<img src="flappybird.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://sourceforge.net/projects/ring-lang/files/Ring%201.0/Fayed_SuperMan2016_1.0_win32.zip/download" target="_blank">超人ゲーム (Super Man Game)</a>',
-                                       '<img src="superman.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/werdy" target="_blank">Werdy アプリケーション</a>',
-                                       '<img src="werdy.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/applications/employee/Emp.ring" target="_blank">従業員情報管理 (Employee Data)</a>',
-                                       '<img src="empapp.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/applications/weighthistory/weighthistory.ring" target="_blank">体重記録管理 (Weight History)</a>',
-                                       '<img src="weighthistory.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/blob/master/applications/fifteenpuzzle3d/CalmoSoftFifteenPuzzleGame3D.ring" target="_blank">CalmoSoft 15パズルゲーム 3D (CalmoSoft Fifteen Puzzle 3D Game)</a>',
-                                       '<img src="fifteen3d.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/samples/tools/QtClassConverter" target="_blank">Qt クラス変換器 (Qt Class Converter)</a>',
-                                       '<img src="qtclassconverter.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/findinfiles" target="_blank">ファイルの検索 (Find in files)</a>',
-                                       '<img src="findinfiles.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/samples/tools/string2constant" target="_blank">文字列 → 定数変換器 (String To Constant)</a>',
-                                       '<img src="string2constant.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/stopwatch" target="_blank">ストップウォッチ (Stop Watch)</a>',
-                                       '<img src="stopwatch.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://store.steampowered.com/app/939200/Gold_Magic_800/" target="_blank">黄金の魔術 800 (Gold Magic 800)</a>',
-                                       '<img src="goldmagic800.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/goldmagic800/editor" target="_blank">黄金の魔術 800 - レベルエディタ (Gold Magic 800)</a>',
-                                       '<img src="gm800le.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/chess" target="_blank">チェス (Chess Game)</a>',
-                                       '<img src="chessgame.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/gameoflife" target="_blank">ライフゲーム (Game of Life)</a>',
-                                       '<img src="gameoflife.jpg" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/knighttour" target="_blank">遠征の騎士 (Knight Tour)</a>',
-                                       '<img src="knighttour.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/minesweeper" target="_blank">地雷除去作戦 (Minesweeper)</a>',
-                                       '<img src="minesweeper.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/pong" target="_blank">ぽんっ! (Pong)</a>',
-                                       '<img src="ponggame.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/sumpuzzlegame" target="_blank">合計パズル (Sum Puzzle)</a>',
-                                       '<img src="sumpuzzle.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/othellogame" target="_blank">オセロ (Othello Game)</a>',
-                                       '<img src="othello.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/maze" target="_blank">迷路 (Maze Game)</a>',
-                                       '<img src="maze.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/sokoban" target="_blank">倉庫番 (Sokoban Game)</a>',
-                                       '<img src="sokoban.jpg" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/sudoku" target="_blank">数独 (Sudoku Game)</a>',
-                                       '<img src="sudoku.jpg" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/checkers" target="_blank">チェッカー (Checkers Game)</a>',
-                                       '<img src="checkersgame.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/snake" target="_blank">スネーク (Snake Game)</a>',
-                                       '<img src="snake.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/desktopscreenshot" target="_blank">デスクトップの撮影 (Desktop Screen Shot Application)</a>',
-                                       '<img src="dssapp.png" width="40%">'
-                               ],
-                               [
-                                       '<a href="https://github.com/ring-lang/ring/tree/master/applications/tesseragame" target="_blank">テッセラ (Tessera Game)</a>',
-                                       '<img src="tesseragame.png" width="40%">'
-                               ]
-                           ]
-                 ],
-                 ["'Ring Documentation Walkthrough' ブログの投稿より",[
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/13/ring-programming-language-guide/" target="_blank">プログラミング言語 Ring 入門</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/01/28/ring-documentation-walkthrough-1/" target="_blank">インストール</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/01/28/ring-documentation-walkthrough-2-hello-world/" target="_blank">Hello, World!</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/01/29/ring-documentation-walkthrough-3-variables/" target="_blank">変数とコメント</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/01/30/ring-documentation-walkthrough-4-operators/" target="_blank">演算子</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/01/30/ring-documentation-walkthrough-5-if-switch-statements/" target="_blank">If と Switch ステートメント</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/01/31/ring-documentation-walkthrough-5-1-loops/" target="_blank">ループ</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/01/ring-documentation-walkthrough-5-2-short-circuit-evaluation/" target="_blank">短絡回路評価</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/02/ring-documentation-walkthrough-5-3-inputs/" target="_blank">入力</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/03/ring-documentation-walkthrough-6-functions/" target="_blank">関数</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/04/ring-documentation-walkthrough-7-lists/" target="_blank">リスト</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/09/ring-documentation-walkthrough-7-1-lists-2/" target="_blank">リスト (2)</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/11/ring-documentation-walkthrough-7-2-lists-3/" target="_blank">リスト (3)</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/12/ring-documentation-walkthrough-8-strings/" target="_blank">文字列</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/12/ring-documentation-walkthrough-8-1-str2list-list2str/" target="_blank">str2list() と list2str() 関数</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/12/ring-documentation-walkthrough-8-2-strcmp/" target="_blank">strcmp() 関数</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/12/ring-documentation-walkthrough-8-3-substr/" target="_blank">Substr() 関数</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/12/ring-documentation-walkthrough-9-date-and-time/" target="_blank">日付と時刻</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/18/ring-documentation-walkthrough-10-check-data-types-1/" target="_blank">データ型の検査 1</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/18/ring-documentation-walkthrough-10-1-check-data-types-2/" target="_blank">データ型の検査 2</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/18/ring-documentation-walkthrough-10-2-conversions/" target="_blank">データ型の変換</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/20/ring-documentation-walkthrough-11-math/" target="_blank">算術操作</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/02/25/ring-documentation-walkthrough-12-files/" target="_blank">ファイル</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/03/14/ring-documentation-walkthrough-12-1-advanced-read-write-files/" target="_blank">高度な読み込みと書き込み処理 - ファイル</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/03/14/ring-documentation-walkthrough-13-system-functions/" target="_blank">システム関数</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/03/14/ring-documentation-walkthrough-14-final-eval-error-handling/" target="_blank">Eval() とデバッグ</a>'
-                               ],
-                               [
-                                       '<a href="https://ribdev.wordpress.com/2016/07/04/ring-how-to-download-files/" target="_blank">ファイルをダウンロードするには?</a>'
-                               ]
-                       ]
-             ],
-             ["'Geeks Board' ブログの投稿より",[
-                               [
-                                       '<a href="https://geeksboard.wordpress.com/2016/01/31/helloworld-with-ring-in-linux/" target="_blank">Linux 環境の Ring で HelloWorld</a>'
-                               ],
-                               [
-                                       '<a href="https://geeksboard.wordpress.com/2016/02/01/deep-into-ring/" target="_blank">Ring の深淵へ (リストを偶数で埋める)</a>'
-                               ]
-                       ]
-             ],
-             ["'Thinking in the Ring programming language' ブログの投稿より",[
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/01/29/printing-new-lines-and-other-characters-in-the-ring-programming-language/" target="_blank">改行と文字の表示</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/01/29/comparing-between-strings-in-ring/" target="_blank">文字列同士の比較</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/01/29/writing-the-split-functionmethod-in-the-ring-programming-language/" target="_blank">Split() 関数・メソッドの記述</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/01/29/why-we-dont-use-after-the-qapp-class-name-in-the-ring-programming-language/" target="_blank">qApp クラス名の後に () を使用しない理由</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/01/29/ringqt-the-window-title-bar-is-going-outside-the-screen-the-problem-and-the-solution/" target="_blank">RingQt: ウィンドウのタイトルバーが画面外に移動してしまう – 原因と解決方法</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/01/29/list-of-the-ring-programming-language-keywords-and-functions/" target="_blank">プログラミング言語 Ring のキーワードと関数一覧</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/01/30/inserting-an-item-into-the-first-position-of-the-list-using-the-ring-programming-language/" target="_blank">リストの最初の位置に項目を挿入するには</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/01/30/how-to-update-the-gui-from-threads-in-the-ring-programming-language/" target="_blank">スレッドから GUI を更新するには</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/01/30/array-of-buttons-using-the-ring-programming-language/" target="_blank">ボタンの配列</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/01/30/printing-lists-contains-objects-using-the-ring-programming-language/" target="_blank">オブジェクトのあるリストを表示するには</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/01/30/null-isnull-and-uninitialized-variables-in-the-ring-programming-language/" target="_blank">NULL, ISNULL() と未初期化変数</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/01/31/using-step-with-for-in-and-modifying-lists/" target="_blank">“For In” での Step オプションの使用とリストの変更方法</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/01/31/nl-and-writing-the-print-function/" target="_blank">NL と Print() 関数の記述</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/01/31/closing-a-window-then-displaying-another-one/" target="_blank">ウィンドウを閉じた後に別のウィンドウを表示</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/01/31/creating-a-modal-window/" target="_blank">モーダルウィンドウの作成</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/02/01/using-the-copy-function-to-replicate-strings/" target="_blank">Copy() 関数による文字列の複製</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/02/03/functions-with-optional-parameters-using-list-with-string-index-in-the-ring-programming-langauge/" target="_blank">文字列インデックスのリストを使用したオプション仮引数を関数へ渡すには</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/02/03/writing-string-literal-quickly-using-the-operator-in-the-ring-programming-language/" target="_blank">‘:’ 演算子による文字列リテラルの速記</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/02/05/eval-and-secuirty-how-to-disable-and-change-the-behaviour-of-standard-ring-functions/" target="_blank">Eval() とセキュリティ – Ring 標準関数の動作停止と変更</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/02/09/the-main-function-in-the-ring-programming-language/" target="_blank">Main 関数</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/02/09/the-getchar-function-in-the-ring-programming-language/" target="_blank">GetChar() 関数</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/02/09/using-many-source-files-in-the-ring-programming-language/" target="_blank">複数のソースコードファイルを扱う方法 </a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/02/12/why-the-list-index-start-from-1-in-the-ring-programming-language/" target="_blank">インデックスが 1 から開始する理由</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/02/12/the-output-of-the-strcmp-function-in-the-ring-programming-language/" target="_blank">StrCmp() 関数の実行結果</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/02/13/the-philosophy-behind-data-types-in-ring/" target="_blank">Ring においてデータ型の背景にある哲学</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/02/13/a-difference-between-printing-new-line-with-lists-than-the-normal-behavior/" target="_blank">リストでの改行表示と通常動作との違い</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/02/14/listdictionary-print-keys-only-or-values-only-in-the-ring-programming-language/" target="_blank">リスト/ディクショナリ – キーまたは値のみ表示するには</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/02/14/functions-predefined-parameters-or-optional-parameters-in-the-ring-programming-language/" target="_blank">関数 – 定義済み仮引数またはオプション仮引数</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/03/12/get-the-current-source-file-path/" target="_blank">使用中のソースファイルのパスを取得</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/03/24/boolean-values/" target="_blank">ブール値表現に関する質問</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2016/03/26/get-the-file-size-using-ftell-and-fseek-functions-in-the-ring-programming-language/" target="_blank">ftell() と fseek() 関数を使用したファイルサイズの取得</a>'
-                               ],
-                               [
-                                       '<a href="https://ringlang.wordpress.com/2017/02/05/sample-in-the-ring-programming-language-add-button-after-drawing-the-button-region-using-the-mouse/" target="_blank">マウスでボタン領域を指定した後でボタンを追加するには</a>'
-                               ]
-                       ]
-            ],
-         ["'Watany Dev' ブログの投稿より",[
-                               [
-                                       '<a href="http://watanydev.blogspot.com.eg/2016/02/tutorial-how-to-configure-xampp-to.html" target="_blank">個別指導: XAMPP / Apache で Ring 言語ファイルを取り扱うための設定方法</a>'
-                               ]
-                       ]
-            ],
-                [" Roshan Ali による英語版の入門解説動画 (YouTube)",[
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=qQm5L-S92hk" target="_blank">Ring: Hello World (ダウンロードとインストール: 講義 1)</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=7BqoQldx0Pk&list=PL8SruvH85P0uA8ggijCQUR9tXAXF4bmtu&index=2" target="_blank">プログラミング Ring : 講義 2 - Ring の基礎</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=LO3lEAZOiTk&list=PL8SruvH85P0uA8ggijCQUR9tXAXF4bmtu&index=3" target="_blank">プログラミング Ring : 講義 3 - クラスとオブジェクト</a>'
-                               ]
-                       ]
-            ],
-                 ["Muhammad Aslam Khan による英語版の入門解説動画 (YouTube)",[
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=zjQ6OW_uFnc" target="_blank">プログラミング言語 Ring のインストールと hello world の実行方法</a>'
-                               ]
-                       ]
-            ],
-                       ["英語版の入門解説動画 (YouTube)",[
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=QABSHg4zY6M" target="_blank">プログラミング言語 Ring</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=6MquWkCeft8&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=1" target="_blank">プログラミング言語 Ring へようこそ</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=-wogd8a3RSc&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=2" target="_blank">Hello World - プログラミング言語 Ring - 講義 1 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=RWeYWzcovEo&index=3&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">英数大小文字同一視 - プログラミング言語 Ring - 講義 2 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=JOV8CQj6w3Q&index=4&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">複数行リテラル - プログラミング言語 Ring - 講義 3  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=U4-2G0diGZQ&index=5&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">入力の取得 - プログラミング言語 Ring - 講義 4 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=v1Hr2O7xF9c&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=6" target="_blank">文末終端子は明示不要 - プログラミング言語 Ring - 講義 5  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=bZvAMNFy06o&index=7&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">コメントの記述 - プログラミング言語 Ring - 講義 6 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=nebVb94D42w&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=8" target="_blank">変数 - プログラミング言語 Ring - 講義 7  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=xActq-CSGyk&index=9&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">動的型付け - プログラミング言語 Ring - 講義 8 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=EokBPyWnPkQ&index=10&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">深いコピー - プログラミング言語 Ring - 講義 9 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=sKcbRDBdUlw&index=11&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">弱い型付け - プログラミング言語 Ring - 講義 10 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=MkUHjDRsU_M&index=12&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">算術演算子 - プログラミング言語 Ring - 講義 11 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=kffiGjF9Tb4&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=13" target="_blank">関係演算子 - プログラミング言語 Ring - 講義 12  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=T2USI9jiDY4&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=14" target="_blank">論理演算子 - プログラミング言語 Ring - 講義 13  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=-j3wkEVXDO8&index=15&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">ビット演算子 - プログラミング言語 Ring - 講義 14  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=rcLQzyk6bTQ&index=16&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">代入演算子 - プログラミング言語 Ring - 講義 15  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=GeYkx0M9HU0&index=17&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">そのほかの演算子 - プログラミング言語 Ring - 講義 16  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=NJBrhq7oyhc&index=18&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">演算子の評価優先順位 - プログラミング言語 Ring - 講義 17  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=qAv9pHddKwU&index=19&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">If ステートメント - プログラミング言語 Ring - 講義 18  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ccryRH9UQG4&index=20&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Switch ステートメント - プログラミング言語 Ring - 講義 19  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=hevk4RLCtI0&index=21&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">While ループ - プログラミング言語 Ring - 講義 20  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=-AsKXDwUsxk&index=22&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">For ループ - プログラミング言語 Ring - 講義 21  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=JkCIBVSDm68&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=23" target="_blank">For In ループ - プログラミング言語 Ring - 講義 22  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=YmIZsxU7o2c&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=24" target="_blank">Do Again ループ - プログラミング言語 Ring - 講義 23  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=_w5fJO4Rx3Q&index=25&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Exit 命令 - プログラミング言語 Ring - 講義 24  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=I9sP2oZNhfg&index=26&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">二階層のループからの脱出 - プログラミング言語 Ring - 講義 25  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=QxmaLKV6ApI&index=27&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Loop 命令 - プログラミング言語 Ring - 講義 26  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=y1ENZ2OxgTM&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=28" target="_blank">サブ関数での Exit/Loop ループ - プログラミング言語 Ring - 講義 27  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=FA4WCOn5nHo&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=29" target="_blank">短絡回路評価 - プログラミング言語 Ring - 講義 28  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=qY4hu_Dj1hk&index=30&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">評価についての解説 - プログラミング言語 Ring - 講義 29  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=5FpMmUdqrvA&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=31" target="_blank">Give 命令 - プログラミング言語 Ring - 講義 30  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=gkMK5x-Klew&index=32&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">GetChar() 関数 - プログラミング言語 Ring - 講義 31  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=V2qElnWjNGU&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=33" target="_blank">Input() 関数 - プログラミング言語 Ring - 講義 32  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=XJzH76k5Fjs&index=34&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">関数の定義 - プログラミング言語 Ring - 講義 33  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=6TqvRLWzbvo&index=35&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">関数の呼び出し - プログラミング言語 Ring - 講義 34  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=doeiv_2JdH0&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=36" target="_blank">仮引数の送信 - プログラミング言語 Ring - 講義 35  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=OJPzZSYNxZ4&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=37" target="_blank">Main 関数 - プログラミング言語 Ring - 講義 36  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=GR5tPeh5If0&index=38&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">変数のスコープ - プログラミング言語 Ring - 講義 37  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=6KFyadeKTzg&index=39&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">プログラムの構造 - プログラミング言語 Ring - 講義 38  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ka_1WUODoBE&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=40" target="_blank">返値 - プログラミング言語 Ring - 講義 39  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=tQDM9g6xxUI&index=41&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">再帰処理 - プログラミング言語 Ring - 講義 40  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=MULad6kgO54&index=42&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">リストの作成 - プログラミング言語 Ring - 講義 41  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=tU8BTbaP1aA&index=43&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">リスト項目の追加 - プログラミング言語 Ring - 講義 42  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=CSMqsXpn_2E&index=44&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">リストのサイズ取得 - プログラミング言語 Ring - 講義 43  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=1M_gEtks3Ag&index=45&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">リスト項目の削除 - プログラミング言語 Ring - 講義 44  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=_0fal17sybc&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=46" target="_blank">リスト項目の取得 - プログラミング言語 Ring - 講義 45  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=f9wM6SDbk5M&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=47" target="_blank">リスト項目への代入 - プログラミング言語 Ring - 講義 46  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=pKepKxPmK1k&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=48" target="_blank">検索 - プログラミング言語 Ring - 講義 47  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=aF2v4ve20wU&index=49&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">BinarySearch() 関数 - プログラミング言語 Ring - 講義 48  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=f6xsGKTvhUw&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=50" target="_blank">リストの整列 - プログラミング言語 Ring - 講義 49  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=5v_65q7DgPk&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=51" target="_blank">リストの反転 - プログラミング言語 Ring - 講義 50  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=rOmZBbVeaYk&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=52" target="_blank">項目の挿入 - プログラミング言語 Ring - 講義 51  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=6o6iM487j1w&index=53&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">入れ子リスト - プログラミング言語 Ring - 講義 52  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=I1BKZky7aSg&index=54&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">リストのコピー - プログラミング言語 Ring - 講義 53  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=jnGQmFmVCY8&index=55&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">第一級リスト - プログラミング言語 Ring - 講義 54  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=lsc7moc4_DU&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=56" target="_blank">リストを定義時に使用するには - プログラミング言語 Ring - 講義 55  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=RztnomB0P6Y&index=57&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">リストを関数へ渡すには - プログラミング言語 Ring - 講義 56  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=VgqnUgx8ulI&index=58&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">文字列インデックスによるリストへのアクセス - プログラミング言語 Ring - 講義 57  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=9v-HugkIYEw&index=59&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">リストを使用した仮引数の渡しかた - プログラミング言語 Ring - 講義 58  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=i0bTcW8TAtU&index=60&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">文字列リテラル - プログラミング言語 Ring - 講義 59  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=VLTRh45uYTc&index=61&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">文字のつづりを変換するには - プログラミング言語 Ring - 講義 60  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=3fSJ_-Lt6MQ&index=62&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">文字列にある文字へのアクセス - プログラミング言語 Ring - 講義 61  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ErMbhJyLHJw&index=63&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Left() 関数 - プログラミング言語 Ring - 講義 62  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=fOQoSEkvkpY&index=64&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Right() 関数 - プログラミング言語 Ring - 講義 63  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=3u1rDyT2VEY&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=65" target="_blank">Trim() 関数 - プログラミング言語 Ring - 講義 64  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=qHCNXEKHtxI&index=66&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Copy() 関数 - プログラミング言語 Ring - 講義 65  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=tEsJWm8tSS4&index=67&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Lines() 関数 - プログラミング言語 Ring - 講義 66  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=9qSoXeMRKZE&index=68&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Substr() 関数 - プログラミング言語 Ring - 講義 67  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Q_4YnkMcejM&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=69" target="_blank">指定位置から末尾までの部分文字列を取得するには - プログラミング言語 Ring - 講義 68  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=vlQrDW83Mx4&index=70&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">文字の位置を数値で取得するには - プログラミング言語 Ring - 講義 69  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=uufxRHjpQh8&index=71&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">部分文字列を別の部分文字列へ変換するには - プログラミング言語 Ring - 講義 70  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=1j-SHKEHPHI&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=72" target="_blank">strcmp() 関数 - プログラミング言語 Ring - 講義 71  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Su1MAgf0qK0&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=73" target="_blank">str2list() と list2str() 関数 - プログラミング言語 Ring - 講義 72  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=KodO1bAPPhA&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=74" target="_blank">Clock() 関数 - プログラミング言語 Ring - 講義 73  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=fmVhVzZxqpM&index=75&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Time() 関数 - プログラミング言語 Ring - 講義 74  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=iwlTUtMw_Lw&index=76&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Date() 関数 - プログラミング言語 Ring - 講義 75  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=QHu3KyG3OZg&index=77&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">TimeList() 関数 - プログラミング言語 Ring - 講義 76  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=OC1qNt2M2mc&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=78" target="_blank">AddDays() 関数 - プログラミング言語 Ring - 講義 77  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=6BXfhiDtFwA&index=79&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">DiffDays() 関数 - プログラミング言語 Ring - 講義 78  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Bviec9utrKE&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=80" target="_blank">IsString() 関数 - プログラミング言語 Ring - 講義 79  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=OqUNXwcklSE&index=81&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">IsNumber() 関数 - プログラミング言語 Ring - 講義 80  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Ffsc3kVID2I&index=82&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">IsList() 関数 - プログラミング言語 Ring - 講義 81  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=wTG7iUaBhUM&index=83&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Type() 関数 - プログラミング言語 Ring - 講義 82  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=AvPnqtu3C2s&index=84&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">IsNULL() 関数 - プログラミング言語 Ring - 講義 83  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=sPlbqwyxiKY&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=85" target="_blank">IsAlNum() 関数 - プログラミング言語 Ring - 講義 84  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=_RjrSSS0nos&index=86&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">IsAlpha() 関数 - プログラミング言語 Ring - 講義 85  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=lVXVmbcdW9U&index=87&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">IsCntrl() 関数 - プログラミング言語 Ring - 講義 86 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=FXcraRZiYtA&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=88" target="_blank">IsDigit() 関数 - プログラミング言語 Ring - 講義 87  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ii42nd6h5eI&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=89" target="_blank">IsGraph() 関数 - プログラミング言語 Ring - 講義 88  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ie6USu0L14c&index=90&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">IsLower() 関数 - プログラミング言語 Ring - 講義 89  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Pt51NigU5-8&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=91" target="_blank">IsPrint() 関数 - プログラミング言語 Ring - 講義 90  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=v5_iRoPX0_Y&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=92" target="_blank">IsPunct() 関数 - プログラミング言語 Ring - 講義 91  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=oKtk4R663Ss&index=93&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">IsSpace() 関数 - プログラミング言語 Ring - 講義 92  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=fTJmjho0Ej0&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=94" target="_blank">IsUpper() 関数 - プログラミング言語 Ring - 講義 93  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=VvEgo2Xtcpk&index=95&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">IsXDigit() 関数 - プログラミング言語 Ring - 講義 94  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=3FmiDlsZnIQ&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=96" target="_blank">Number() 関数 - プログラミング言語 Ring - 講義 95  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=3eZQKlo8xQI&index=97&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">String() 関数 - プログラミング言語 Ring - 講義 96  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=eMo99Sm9VDw&index=98&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">ASCII() 関数 - プログラミング言語 Ring - 講義 97  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=c_u3US8NcRk&index=99&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Char() 関数 - プログラミング言語 Ring - 講義 98  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=u_q_hGqBC3o&index=100&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Hex() 関数 - プログラミング言語 Ring - 講義 99  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=yBjoHLiS0kI&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=101" target="_blank">Dec() 関数 - プログラミング言語 Ring - 講義 100  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=cFi96MopYz4&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=102" target="_blank">Str2Hex() 関数 - プログラミング言語 Ring - 講義 101  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=0Uwo8XiPKdo&index=103&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Hex2Str() 関数 - プログラミング言語 Ring - 講義 102  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=EZWIRjRWu6o&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=104" target="_blank">Sin() 関数 - プログラミング言語 Ring - 講義 103  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=9Pat2MOTgCE&index=105&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Cos() 関数 - プログラミング言語 Ring - 講義 104  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=w7-go8nj6h8&index=106&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Tan() 関数 - プログラミング言語 Ring - 講義 105  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=zJ4-DnHlTjU&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=107" target="_blank">asin() 関数 - プログラミング言語 Ring - 講義 106  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=qX25s1pp2Yo&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=108" target="_blank">acos() 関数 - プログラミング言語 Ring - 講義 107  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ziy2psncDWM&index=109&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">atan() 関数 - プログラミング言語 Ring - 講義 108  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=zIQ3vp_tiZA&index=110&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">atan2() 関数 - プログラミング言語 Ring - 講義 109  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=AelyZuhm4d0&index=111&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">sinh() 関数 - プログラミング言語 Ring - 講義 110  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=iuo4_i0Ctd0&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=112" target="_blank">cosh() 関数 - プログラミング言語 Ring - 講義 111  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=y8MDmVTJ2KQ&index=113&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">tanh() 関数 - プログラミング言語 Ring - 講義 112  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=9mFx9YsZp7Q&index=114&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">exp() 関数 - プログラミング言語 Ring - 講義 113  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=0Lg-mCcxN3Q&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=115" target="_blank">log() 関数 - プログラミング言語 Ring - 講義 114  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=KLMHwEPGTiM&index=116&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">log10() 関数 - プログラミング言語 Ring - 講義 115  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=JgFpGm7ZvIU&index=117&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">ceil() 関数 - プログラミング言語 Ring - 講義 116  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=DQUtKYMERNM&index=118&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">floor() 関数 - プログラミング言語 Ring - 講義 117  </a>'
-                               ],
-                               [
-                               '<a href="https://www.youtube.com/watch?v=nLv5iLPBB-M&index=119&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">fabs() 関数 - プログラミング言語 Ring - 講義 118  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=iH8SQVrvBdg&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=120" target="_blank">pow() 関数 - プログラミング言語 Ring - 講義 119  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=iJTkCECbljo&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=121" target="_blank">sqrt() 関数 - プログラミング言語 Ring - 講義 120  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=fzd6bXFI2W0&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=122" target="_blank">random() 関数 - プログラミング言語 Ring - 講義 121  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=8eplclFazMY&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=123" target="_blank">unsigned() 関数 - プログラミング言語 Ring - 講義 122  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=7F9o1-NqdI4&index=124&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">decimals() 関数 - プログラミング言語 Ring - 講義 123  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=VK6h3GdInYg&index=125&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">read() 関数 - プログラミング言語 Ring - 講義 124  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=KLuEejIRXqs&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=126" target="_blank">write() 関数 - プログラミング言語 Ring - 講義 125  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=sQbGtrcBT4I&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=127" target="_blank">dir() 関数 - プログラミング言語 Ring - 講義 126 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=wTAo3MTQOfA&index=128&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">rename() 関数 - プログラミング言語 Ring - 講義 127 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=3_TYYnF9FTs&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=129" target="_blank">remove() 関数 - プログラミング言語 Ring - 講義 128  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=NLlRGbo_TVo&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=130" target="_blank">fopen() 関数 - プログラミング言語 Ring - 講義 129  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=MpqnCoaQVsg&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=131" target="_blank">fclose() 関数 - プログラミング言語 Ring - 講義 130  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=3jB7blxVOfY&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=132" target="_blank">fflush() 関数 - プログラミング言語 Ring - 講義 131  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=d5ZL2QUQHxA&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=133" target="_blank">freopen() 関数 - プログラミング言語 Ring - 講義 132  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=D34Ow6z3oGA&index=134&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">tempfile() 関数 - プログラミング言語 Ring - 講義 133  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=qgZAjV6ExtY&index=135&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">tempname() 関数 - プログラミング言語 Ring - 講義 134   </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=VQ5dbGww2h8&index=136&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">fseek() 関数 - プログラミング言語 Ring - 講義 135 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=VRqPqqHP8PQ&index=137&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">ftell() 関数 - プログラミング言語 Ring - 講義 136 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=2ksOZvI-NHk&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=138" target="_blank">rewind() 関数 - プログラミング言語 Ring - 講義 137  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=pBlkLgCb0lA&index=139&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">fgetpos() 関数 - プログラミング言語 Ring - 講義 138 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=g_5ahtDGTc0&index=140&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&spfreload=5" target="_blank">Fsetpos() 関数 - プログラミング言語 Ring - 講義 139</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=wGnjXwRI7e8&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=141" target="_blank">Clearerr() 関数 - プログラミング言語 Ring - 講義 140</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=cVs10C5DrwI&index=142&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Feof() 関数 - プログラミング言語 Ring - 講義 141</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=yeGz0c5NK2Q&index=143&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Ferror() 関数 - プログラミング言語 Ring - 講義 142</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=nP-os0acdCU&index=144&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Perror() 関数 - プログラミング言語 Ring - 講義 143 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=9IN_SPEjtws&index=145&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">fgetc() 関数 - プログラミング言語 Ring - 講義 144  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=TQ_LODIi2uU&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=146" target="_blank">fgets() 関数 - プログラミング言語 Ring - 講義 145 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=BA9YgIeYIHI&index=147&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">fputc() 関数 - プログラミング言語 Ring - 講義 146 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=WWyPa2n9Ax0&index=148&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">fputs() 関数 - プログラミング言語 Ring - 講義 147  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=_3BaoS-32v0&index=149&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Ungetc() 関数 - プログラミング言語 Ring - 講義 148  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=zZ5be0jmzzs&index=150&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Fread() 関数 - プログラミング言語 Ring - 講義 149   </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=7hF81WUymnQ&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=151 " target="_blank">Fwrite() 関数 - プログラミング言語 Ring - 講義 150 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=McH6s8mZVU0&index=152&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">Fexists() 関数 - プログラミング言語 Ring - 講義 151  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=uBbu4drDaL0&index=153&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">System() 関数 - プログラミング言語 Ring - 講義 152  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=4EcrzkRJwoE&index=154&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">SysGet() 関数 - プログラミング言語 Ring - 講義 153  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=jxMHjLW1CLQ&index=155&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">IsMSDOS() 関数 - プログラミング言語 Ring - 講義 154 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=rUqUqV8yJHE&index=156&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">IsWindows() 関数 - プログラミング言語 Ring - 講義 155   </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=x9bggqfhQ8g&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=157" target="_blank">IsWindows64() 関数 - プログラミング言語 Ring - 講義 156 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Tk_8gEVsRTM&index=158&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">IsUnix() 関数 - プログラミング言語 Ring - 講義 157 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=L79_6NLkP9U&index=159&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">IsMacOSX() 関数 - プログラミング言語 Ring - 講義 158 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=KHQMk-q09KU&index=160&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">IsLinux() 関数 - プログラミング言語 Ring - 講義 159  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=neIwXpO3zro&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=161" target="_blank">IsFreeBSD() 関数 - プログラミング言語 Ring - 講義 160 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=zh8OTpLnbxo&index=162&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank"> IsAndroid() 関数 - プログラミング言語 Ring - 講義 161  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=MD1hoxKDWDY&index=163&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">WindowsNL() 関数 - プログラミング言語 Ring - 講義 162  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=gZPZxxS6UnE&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=164 " target="_blank">コマンドライン引数の取得 - プログラミング言語 Ring - 講義 163  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Fh54Jh1hyrM&index=165&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">使用中のソースファイル名を取得 - プログラミング言語 Ring - 講義 164  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=DIG-T8tq0Xs&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=166 " target="_blank">Try/Catch/Done - プログラミング言語 Ring - 講義 165  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=BwedxYExhNU&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=167 " target="_blank">Eval() 関数 - プログラミング言語 Ring - 講義 166  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=6PAn_Dnd4ds&index=168&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">Raise() 関数 - プログラミング言語 Ring - 講義 167  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=vuOM7QUlCFY&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=169 " target="_blank">Assert() 関数 - プログラミング言語 Ring - 講義 168  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=YfBBcyJRo38&index=170&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">odbc_init() 関数 - プログラミング言語 Ring - 講義 169 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=8QY-u0m1MI8&index=171&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">odbc_drivers() 関数 - プログラミング言語 Ring - 講義 170  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=KjvHEE5t4RI&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=172 " target="_blank">odbc_datasources() 関数 - プログラミング言語 Ring - 講義 171  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=a3_lM63HOJw&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=173 " target="_blank">odbc_close() 関数 - プログラミング言語 Ring - 講義 172  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=AEOwmvv4RM8&index=174&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">odbc_connect() 関数 - プログラミング言語 Ring - 講義 173  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=4HLMUu2owd0&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=175 " target="_blank">odbc_disconnect() 関数 - プログラミング言語 Ring - 講義 174  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=_fyyOsYcHxU&index=176&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&spfreload=10 " target="_blank">odbc_execute() 関数 - プログラミング言語 Ring - 講義 175  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Q1kGkMFX-rI&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=177 " target="_blank">odbc_colcount() 関数 - プログラミング言語 Ring - 講義 176  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=basUTVtoc8Q&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=178 " target="_blank">odbc_fetch() 関数 - プログラミング言語 Ring - 講義 177  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=6XX8BJq0TVA&index=179&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">odbc_getdata() 関数 - プログラミング言語 Ring - 講義 178  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=4CovgWVOj_c&index=180&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">odbc_tables() 関数 - プログラミング言語 Ring - 講義 179  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=5Ac9pVyfmLM&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=181 " target="_blank">odbc_columns() 関数 - プログラミング言語 Ring - 講義 180  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=V2F1WvHjkww&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=182 " target="_blank">odbc_autocommit() 関数 - プログラミング言語 Ring - 講義 181  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=6GMuKpqUsQw&index=183&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">odbc_commit() 関数 - プログラミング言語 Ring - 講義 182  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Pv7PW1FJdRo&index=184&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">odbc_rollback() 関数 - プログラミング言語 Ring - 講義 183  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=rUdaRSDEtHU&index=185&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">MySQL_Info() 関数 - プログラミング言語 Ring - 講義 184  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=-0E8Dcobv4M&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=186 " target="_blank">MySQL_Init() 関数 - プログラミング言語 Ring - 講義 185  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=i9ehOE1drjQ&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=187 " target="_blank">MySQL_Error() 関数 - プログラミング言語 Ring - 講義 186  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=vrrICGgG3Kg&index=188&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">MySQL_Connect() 関数 - プログラミング言語 Ring - 講義 187  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=pz6J_4aB5hQ&index=189&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">MySQL_Close() 関数 - プログラミング言語 Ring - 講義 188  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=I8pLRs6gAcE&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=190" target="_blank">MySQL_Query() 関数 - プログラミング言語 Ring - 講義 189 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=fV04qvDCFxg&index=191&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">MySQL_Insert_ID() 関数 - プログラミング言語 Ring - 講義 190 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=KHhs1bjpsXU&index=192&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">MySQL_Result() 関数 - プログラミング言語 Ring - 講義 191 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=kkIncpTv2mI&index=193&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">MySQL_Next_Result() 関数 - プログラミング言語 Ring - 講義 192 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=GlH0XOhqYZw&index=194&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">MySQL_Columns() 関数 - プログラミング言語 Ring - 講義 193 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=HLGQkAgrOUo&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=195 " target="_blank">MySQL_Result2() 関数 - プログラミング言語 Ring - 講義 194 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=pkjtLUJrIik&index=196&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">MySQL_Escape_String() 関数 - プログラミング言語 Ring - 講義 195 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=HWyak8EkFyI&index=197&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">MySQL_AutoCommit() 関数 - プログラミング言語 Ring - 講義 196 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=57in9ye_iqI&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=198 " target="_blank">MySQL_Commit() 関数 - プログラミング言語 Ring - 講義 197 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=K2m_2JsfvAg&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=199 " target="_blank">MySQL_Rollback() 関数 - プログラミング言語 Ring - 講義 198 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ZDVlfAL6C28&index=200&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">MD5() 関数 - プログラミング言語 Ring - 講義 199 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=b6xPAGrqENU&index=201&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">SHA1() 関数 - プログラミング言語 Ring - 講義 200 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=v7Ks8LnLdm8&index=202&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">SHA256() 関数 - プログラミング言語 Ring - 講義 201 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=E-46_OnVo-I&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=203 " target="_blank">SHA512() 関数 - プログラミング言語 Ring - 講義 202 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=FA1zJ_l1fBA&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=204 " target="_blank">SHA384() 関数 - プログラミング言語 Ring - 講義 203 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=vxXk1PxGHN0&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=205 " target="_blank">SHA224() 関数 - プログラミング言語 Ring - 講義 204 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=DG5cDjUoTz4&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=206 " target="_blank">Encrypt() 関数 - プログラミング言語 Ring - 講義 205 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=qNEEia-0yj0&index=207&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">Decrypt() 関数 - プログラミング言語 Ring - 講義 206 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=y5TwOJm3Di0&index=208&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw " target="_blank">RandBytes() 関数 - プログラミング言語 Ring - 講義 207 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ka371c72H8I&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=209 " target="_blank">Download() 関数 - プログラミング言語 Ring - 講義 208 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=zjINwjX_FVw&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=210 " target="_blank">SendEmail() 関数 - プログラミング言語 Ring - 講義 209 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=tH2WvuLpONg&index=211&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">クラスの作成 - プログラミング言語 Ring - 講義 210 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ISp34b6JfPQ&index=212&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">オブジェクトの作成 - プログラミング言語 Ring - 講義 211 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=R-v-BQW94Uo&index=213&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">括弧を用いたオブジェクトへのアクセス - プログラミング言語 Ring - 講義 212  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=4f2JPOCE1hg&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=214" target="_blank">ドット演算子を用いたオブジェクトへのアクセス - プログラミング言語 Ring - 講義 213 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=BPJcKbf6fkw&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=215" target="_blank">コンポジション - プログラミング言語 Ring - 講義 214 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=UtCMaezbeMY&index=216&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">Setter と Getter - プログラミング言語 Ring - 講義 215 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=rNPhdkuFfCI&index=217&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">プライベート属性とメソッド - プログラミング言語 Ring - 講義 216 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=vIWF8pIS8cI&index=218&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">演算子のオーバーロード - プログラミング言語 Ring - 講義 217 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=0qZM03Cavkk&index=219&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">継承 - プログラミング言語 Ring - 講義 218 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ryfqxmHLqGw&index=220&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">動的属性 - プログラミング言語 Ring - 講義 219 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=KPHLBYEj0gg&index=221&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">パッケージ - プログラミング言語 Ring - 講義 220 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=v8SGTKiJa_s&index=222&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">オブジェクトの表示 - プログラミング言語 Ring - 講義 221 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=JIRUSkKYWIU&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=223" target="_blank">リスト内へオブジェクトを作成するには - プログラミング言語 Ring - 講義 222 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ep12HWd3Vsg&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=224" target="_blank">参照によりオブジェクトとリストを返すには - プログラミング言語 Ring - 講義 223  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ItXccNdqmes&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw&index=225" target="_blank">オブジェクトのアクセス完了後にコードを実行するには - プログラミング言語 Ring - 講義 224  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=YPSpEhvEgdU&index=226&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">自然言語プログラミング - プログラミング言語 Ring - 講義 225  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=LNASNIlCdSw&index=227&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">純粋関数 - プログラミング言語 Ring - 講義 226  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=3C-tZqax0FU&index=228&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">第一級関数 - プログラミング言語 Ring - 講義 227  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=WgOOtvZmas8&index=229&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">高階関数 - プログラミング言語 Ring - 講義 228  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=hF7WI_bKlJY&index=230&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">無名関数と入れ子関数 - プログラミング言語 Ring - 講義 229  </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=4sBbaG6oekE&index=231&list=PLpQiqjcu7CuH063yQeQi0LQcbV4dynHgw" target="_blank">関数の等価性 - プログラミング言語 Ring - 講義 230  </a>'
-                               ]
-                       ]
-               ],
-         ["集団支援 (英語での授業 - YouTube - 一部質問への回答)",[
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=3NS_AmVYhjU&list=PLpQiqjcu7CuGUnhKlYJUk1RpNQkVcaCP-&index=1" target="_blank"> ODBC ドライバで Excel ファイルにある最初の列へアクセスするには</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=A6roiRtcXbQ&list=PLpQiqjcu7CuGUnhKlYJUk1RpNQkVcaCP-&index=2" target="_blank">クラスの使用方法 - 弓括弧と init() メソッド</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=VIoxZnYx_Q8&index=3&list=PLpQiqjcu7CuGUnhKlYJUk1RpNQkVcaCP-" target="_blank">Ring2EXE の使用方法 - による Ring アプリケーションの配布</a>'
-                               ]
-                       ]
-            ],
-                ["'Eng Sara H. Mohammed' による 'Ring Programming For Arab' ブログの投稿より",[
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/02/05/%D8%A3%D9%87%D9%84%D8%A7-%D8%A8%D9%83-%D9%81%D9%89-%D8%B9%D8%A7%D9%84%D9%85-%D8%A7%D9%84%D8%A8%D8%B1%D9%85%D8%AC%D8%A9-%D8%A8%D9%84%D8%BA%D8%A9-%D8%B1%D9%8A%D9%86%D8%AC-welcome-to-ring-programming/" target="_blank">個別指導: ようこそプログラミング言語 Ring 取扱説明書へ!</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/%D8%A7%D9%84%D9%85%D8%AD%D8%AA%D9%88%D9%8A-2/" target="_blank">個別指導: 目次</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/06/03/%d8%a7%d9%84%d8%b7%d8%a8%d8%a7%d8%b9%d8%a9-%d9%81%d9%8a-%d8%a7%d9%84%d9%86%d9%85%d8%b7-%d8%a7%d9%84%d8%a7%d9%88%d9%84/" target="_blank">個別指導: 出入力 - 第一形式</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/06/04/%d8%a7%d9%84%d9%85%d8%aa%d8%ba%d9%8a%d8%b1%d8%a7%d8%aa-variables/" target="_blank">個別指導: 変数</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/06/06/%d8%a7%d9%84%d9%85%d8%b9%d8%a7%d9%85%d9%84%d8%a7%d8%aa-operator/" target="_blank">個別指導: 演算子</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/06/11/%d8%a7%d9%84%d8%af%d9%88%d8%a7%d9%84functions/" target="_blank">個別指導: 関数</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/06/16/%d8%a7%d9%84%d9%82%d9%88%d8%a7%d8%a6%d9%85-lists/" target="_blank">個別指導: リスト</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/06/21/strings/" target="_blank">個別指導: 文字列</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/06/27/1391/" target="_blank">個別指導: 制御構造</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/07/01/%d8%a7%d9%84%d8%a7%d8%af%d8%ae%d8%a7%d9%84-getting-input/" target="_blank">個別指導: 入力の取得</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/07/04/eval-and-debugging/" target="_blank">個別指導: Eval() とデバッグ</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/07/06/date-and-time/" target="_blank">個別指導: 日付と時刻</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/07/07/check-data-type-and-conversion/" target="_blank">個別指導: データ型の検査と変換</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/07/10/mathematical-functions/" target="_blank">個別指導: 算術関数</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/07/16/files/" target="_blank">個別指導: ファイル</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/07/20/system-functions/" target="_blank">個別指導: システム関数</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/07/25/program-structure/" target="_blank">個別指導: プログラムの構造</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/08/03/1object-oriented-programming-oop/" target="_blank">個別指導: オブジェクト指向プログラミング (OOP)</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/08/09/2object-oriented-programming-oop/" target="_blank">個別指導: オブジェクト指向プログラミング (OOP) (2)</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/08/16/declarative-programming/" target="_blank">個別指導: 宣言型プログラミング</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/08/22/reflection-and-meta-programming/" target="_blank">個別指導: リフレクションとメタプログラミング</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/08/29/scope-rules-for-variables-and-attributes/" target="_blank">個別指導: 変数と属性のスコープ規則</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/09/04/scope-rules-for-functions-and-methods/" target="_blank">個別指導: 関数とメソッドのスコープ規則</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/09/11/functional-programming/" target="_blank">個別指導: 関数型プログラミング (FP)</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/09/13/syntax-flexibility/" target="_blank">個別指導: シンタックスの柔軟性</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/09/19/natural-language-programming/" target="_blank">個別指導: 自然言語プログラミング (1)</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/09/27/using-the-natural-library/" target="_blank">個別指導: 自然言語プログラミング (2)</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/10/09/odbc-functions/" target="_blank">個別指導: ODBC 関数</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/10/16/mysql-functions/" target="_blank">個別指導: MySQL 関数</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/10/21/sqlite-functions/" target="_blank">個別指導: SQLite 関数</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/10/31/security-and-internet-functions/" target="_blank">個別指導: セキュリティとインターネット関数</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/10/31/stdlib-functions-and-classes/" target="_blank">個別指導: StdLib 関数とクラス</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2017/11/16/form-applications/" target="_blank">個別指導: ウェブ開発のフォーム</a>'
-                               ],
-                               [
-                                       '<a href="https://ringprogramming4arab.wordpress.com/2018/01/27/generating-web-pages-using-functions/" target="_blank">個別指導: 関数によるウェブページの生成</a>'
-                               ]
-                       ]
-            ],
-            ["Sofy Abbas によるアラビア語版の入門解説動画 (YouTube)",[
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=OWGaUQFrjAc" target="_blank">Ring のダウンロードと Hello, World! の表示</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ncGW3zPoWME" target="_blank">入門講座</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=JaMbe47oAr4" target="_blank">変数の使用方法</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=QhqB2A9H_f8" target="_blank">変数の使用方法 (2) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=pjm6FfE6uuk" target="_blank">算術演算子</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ZSEbmNBkZuA" target="_blank">関係演算子</a>'
-                               ]
-                       ]
-             ],
-             ["Ali Aliraqi によるアラビア語版の入門解説動画 (YouTube)",[
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=lCh-n90q_dM&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=1" target="_blank">はじめに</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=FOYgAp330Yo&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=2" target="_blank">Ring 開発者について</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Fsvq9MtS7IM&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=3" target="_blank">Ring ってなんだ?</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=GdwL5kti8kQ&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=4" target="_blank">初歩のプログラム</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ZyBxHTBKO28&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=5" target="_blank">変数</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=O-sBpOTqhPI&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=6" target="_blank">データ型</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=opoKtaif6qg&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=7" target="_blank">文字列</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ZGUrfHowGxc&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=8" target="_blank">文字列 (2)</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=IQYDL29FiXg&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=9" target="_blank">数値</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=CbEmf-WtTDM&list=PLGuernz43q4TOELXsWkXvESxXShvJ9X8P&index=10" target="_blank">数値 (2)</a>'
-                               ],
-                               [
-                                       '<a href="https://youtu.be/FmyyzYhH_vg" target="_blank">演算子 </a>'
-
-                               ],
-                               [
-                                       '<a href="https://youtu.be/6T5t77sJPns" target="_blank">関係演算子 </a>'
-
-                               ]
-                       ]
-                       ],
-             ["Omar Selim によるアラビア語版の入門解説動画 (YouTube)",[
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=8N9A0rg5gIU&list=PLNMim060_nUIwr2EEw4AF9La6v8XOjut0&index=1" target="_blank">プログラミング言語 Ring - 講義 1</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=yeIDgjWK1-k&list=PLNMim060_nUIwr2EEw4AF9La6v8XOjut0&index=2" target="_blank">プログラミング言語 Ring - 講義 2</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=wHovvwWlfxw&list=PLNMim060_nUIwr2EEw4AF9La6v8XOjut0&index=3" target="_blank">プログラミング言語 Ring - 講義 3</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=biR6S0WJ6xs&index=4&list=PLNMim060_nUIwr2EEw4AF9La6v8XOjut0" target="_blank">プログラミング言語 Ring - 講義 4</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=hYp3_fuAtoI&list=PLNMim060_nUIwr2EEw4AF9La6v8XOjut0&index=5" target="_blank">プログラミング言語 Ring - 講義 5</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ScDAjHbsOec&list=PLNMim060_nUIwr2EEw4AF9La6v8XOjut0&index=6" target="_blank">プログラミング言語 Ring - 講義 6</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ob0WTiPnK2o&list=PLNMim060_nUIwr2EEw4AF9La6v8XOjut0&index=7" target="_blank">プログラミング言語 Ring - 講義 7</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=e7xij30Ienw&index=8&list=PLNMim060_nUIwr2EEw4AF9La6v8XOjut0" target="_blank">プログラミング言語 Ring - 講義 8</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Cwd7C3aGhAM&list=PLNMim060_nUIwr2EEw4AF9La6v8XOjut0&index=9" target="_blank">プログラミング言語 Ring - 講義 9</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=bVJVbIVZNj8&list=PLNMim060_nUIwr2EEw4AF9La6v8XOjut0&index=10" target="_blank">プログラミング言語 Ring - 講義 10</a>'
-                               ]
-                       ]
-                       ],
-
-                       ["Mr. Alaa Mohammed によるアラビア語版の入門解説動画 (YouTube) ", [
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=uSv5rJp6snw" target="_blank"> 01 プログラミング Ring - アラビア語での紹介</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Ip29yXhHJg0" target="_blank"> 02 プログラミング Ring - セットアップ</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=CGNQMcZMxSk" target="_blank"> 03 プログラミング Ring - Qt と Ring</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ux8b15AkNfk" target="_blank"> 04 プログラミング Ring - 初歩の GUI プログラムの構築</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ARVCf3-T3I0" target="_blank"> 05 プログラミング Ring - hello world</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=FovfkqEj1kg" target="_blank"> 06 プログラミング Ring - 入門講座 part1</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=SGFY__KNfDE" target="_blank"> 07 プログラミング Ring - 入門講座 part2</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Bvb1VVunlis" target="_blank"> 08 プログラミング Ring - 変数の動的型付け</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=XG4uO-m3SZg" target="_blank"> 09 プログラミング Ring - 変数の深いコピー</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=6E_OSkmUhLU" target="_blank"> 10 プログラミング Ring - 弱い型付け</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=bfC-Uaz0NS4" target="_blank"> 11 プログラミング Ring - 算術演算子</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=LELDebethmg" target="_blank"> 12 プログラミング Ring - 関係演算子</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=qclB9xuaI0Y" target="_blank"> 13 プログラミング Ring - 論理演算子</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=CMTFs2TB7_w" target="_blank"> 14 プログラミング Ring - ビット演算子: 二進数 AND</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=j7N3pYDrItg&feature=youtu.be" target="_blank"> 15 プログラミング Ring - ビット演算子: 二進数 OR</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=1wrrfeVUk8o&feature=youtu.be" target="_blank"> 16 プログラミング Ring - ビット演算子: 二進数 XOR</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=x7bVMpfVY40&feature=youtu.be" target="_blank"> 17 プログラミング Ring - ビット演算子: 二進数 NOT</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=FRT_g5SeKiA&feature=youtu.be" target="_blank"> 18 プログラミング Ring - ビット演算子: 二進数による左シフト</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=SqiMjwyCKmY&feature=youtu.be" target="_blank"> 19 プログラミング Ring - ビット演算子: による右シフト</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ToGQrmWpZPY&index=19&list=PLgc0fyJgivssosIJu4kJGk5avIjaMzYHK" target="_blank"> 20 プログラミング Ring - 代入演算子 part 1</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=bZGjQYkFlBA&feature=youtu.be" target="_blank"> 21 プログラミング Ring - 代入演算子 part 2</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=A0gpMP0ZVjU&feature=youtu.be" target="_blank"> 22 プログラミング Ring - その他の演算子 </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=fHtwTV3GOC0" target="_blank"> 23 プログラミング Ring - 演算子の評価優先順位 </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=2bdtWkr39w4&feature=youtu.be" target="_blank"> 24 プログラミング Ring - If ステートメント</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=XYIOWDTsxXI&feature=youtu.be" target="_blank"> 25 プログラミング Ring - Switch ステートメント</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=iUUGSWk8_KY&feature=youtu.be" target="_blank"> 26 プログラミング Ring - While ループ</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=bu4uln1gDE8&feature=youtu.be" target="_blank"> 27 プログラミング Ring - For ループ </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ot024yBnzFA&feature=youtu.be" target="_blank"> 28 プログラミング Ring - For In ループ </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=nFZoq5yI5Jw&feature=youtu.be" target="_blank"> 29 プログラミング Ring - For in での Step オプションの使用方法</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=lVYMylObJoM&feature=youtu.be" target="_blank"> 30 プログラミング Ring - For in でのリスト変更方法</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ngxCbYh-oUE&feature=youtu.be" target="_blank"> 31 プログラミング Ring - Do Again ループ</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Tvo3RqOZE2k&feature=youtu.be" target="_blank"> 32 プログラミング Ring - Exit 命令</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=HA1PxqcoI-M" target="_blank"> 33 プログラミング Ring - 二階層のループからの脱出</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=JHvOMSpRqtc&feature=youtu.be" target="_blank"> 34 プログラミング Ring - Loop 命令</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=xFwDXJOZAFA&feature=youtu.be" target="_blank"> 35 プログラミング Ring - サブ関数での Exit/Loop ループ</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=bJuy555_3wc&feature=youtu.be" target="_blank"> 36 プログラミング Ring - 短絡回路評価 (1)</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=PO3QA4eLoqU&feature=youtu.be" target="_blank"> 37 プログラミング Ring - 評価についての解説 (1)</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=bJuy555_3wc&feature=youtu.be" target="_blank"> 38 プログラミング Ring - 短絡回路評価 (2)</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=PO3QA4eLoqU&feature=youtu.be" target="_blank"> 39 プログラミング Ring - 評価についての解説 (2)</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=rPpiievNGjY" target="_blank"> 40 プログラミング Ring - 入力の取得: Give 命令</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=pezFjtJQOfw&feature=youtu.be" target="_blank"> 41 プログラミング Ring - 入力の取得: GetChar() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=L9Gq6nXM9oQ&feature=youtu.be" target="_blank"> 42 プログラミング Ring - 入力の取得: Input() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Dz3Xfir1liA&feature=youtu.be" target="_blank"> 43 プログラミング Ring - 関数入門 </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=u9n0qfi7Fpk&feature=youtu.be" target="_blank"> 44 プログラミング Ring - 関数の定義</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=64oAkFMgg8w&feature=youtu.be" target="_blank"> 45 プログラミング Ring - 関数の呼び出し</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=tBr77n1Kbg8&feature=youtu.be" target="_blank"> 46 プログラミング Ring -仮引数の宣言と送信 </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=uIuBvuorzPo&feature=youtu.be" target="_blank"> 47 プログラミング Ring - Main 関数 </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=yL8AFmxwdJI&feature=youtu.be" target="_blank"> 48 プログラミング Ring - 変数のスコープ </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=nDHA6bUje20&feature=youtu.be" target="_blank"> 49 プログラミング Ring - プログラムの取得 </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=cTw7D6xXHSQ&feature=youtu.be" target="_blank"> 50 プログラミング Ring - 返値 </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=a8tkXoDaraU&feature=youtu.be" target="_blank"> 51 プログラミング Ring - 再帰処理 </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=J5z9O1SIylk&feature=youtu.be" target="_blank"> 52 プログラミング Ring - リストの作成 </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=be4OTOMxmS0&feature=youtu.be" target="_blank"> 53 プログラミング Ring - リスト項目の追加 </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=3TZKe5wCcEc&feature=youtu.be" target="_blank"> 54 プログラミング Ring - リストのサイズ取得 </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=5vo3VyGDaaM&feature=youtu.be" target="_blank"> 55 プログラミング Ring - リスト項目の削除 </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=MwZ8y5FrZ8w&feature=youtu.be" target="_blank"> 56 プログラミング Ring - リスト項目の取得</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=-1ae8E50Ivg&feature=youtu.be" target="_blank"> 57 プログラミング Ring - リスト項目への代入</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=MbgNdOWPc08&feature=youtu.be" target="_blank"> 58 プログラミング Ring - Find() 関数によるリストの検索</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Q1_QeeB9IEI&feature=youtu.be" target="_blank"> 59 プログラミング Ring - BinarySearch() 関数によるリストの検索</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=gacAdb1s9N0&feature=youtu.be" target="_blank"> 60 プログラミング Ring - リストの整列</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=NPKSjoFKkfI&feature=youtu.be" target="_blank"> 61 プログラミング Ring - リストの反転</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=DK3PV5ciKwY&feature=youtu.be" target="_blank"> 62 プログラミング Ring - リストの項目の挿入</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ppK-HcLF-vw&feature=youtu.be" target="_blank"> 63 プログラミング Ring - 入れ子リスト</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=XVplL7JQiEk&feature=youtu.be" target="_blank"> 64 プログラミング Ring - リストのコピー</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=yKZw80gId44&feature=youtu.be" target="_blank"> 65 プログラミング Ring - 第一級リスト</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=oGLS3Syvekc&feature=youtu.be" target="_blank"> 66 プログラミング Ring - リストを定義時に使用するには </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=jzadaJNR1jg&feature=youtu.be" target="_blank"> 67 プログラミング Ring - リストを関数へ渡すには</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=pQ66WhnJ3VI&feature=youtu.be" target="_blank"> 68 プログラミング Ring - 文字列インデックスによるリストへのアクセス</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=hPxTV3YwIWs&feature=youtu.be" target="_blank"> 69 プログラミング Ring - リストを使用した仮引数の渡しかた</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=nBYFstD1hOo&feature=youtu.be" target="_blank"> 70 プログラミング Ring - 文字列リテラル</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=1cHKKvlfIN4&feature=youtu.be" target="_blank"> 71 プログラミング Ring - 文字列の長さを取得するには</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=_MHh8zyARiI&feature=youtu.be" target="_blank"> 72 プログラミング Ring - 文字のつづりを変換するには</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=PW6FycTF92k&feature=youtu.be" target="_blank"> 73 プログラミング Ring - 文字列にある文字へのアクセス</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=lrOfSnKi92Y&feature=youtu.be" target="_blank"> 74 プログラミング Ring - Left() と Right() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=GSLVrXmUE94&feature=youtu.be" target="_blank"> 75 プログラミング Ring - Trim() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=pyX4RKRmLNg&feature=youtu.be" target="_blank"> 76 プログラミング Ring - Copy() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=DTRICkgUbdE&feature=youtu.be" target="_blank"> 77 プログラミング Ring - Lines() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=edSssGxvMR0&feature=youtu.be" target="_blank"> 78 プログラミング Ring - 部分文字列の検索</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=vs2Kvzw1lHw&feature=youtu.be" target="_blank"> 79 プログラミング Ring - 指定位置から末尾までの部分文字列を取得するには</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=3nYd6MaZ1yk&feature=youtu.be" target="_blank"> 80 プログラミング Ring - 文字の位置を数値で取得するには</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=1_fVoxHxpNo&feature=youtu.be" target="_blank"> 81 プログラミング Ring - 部分文字列を別の部分文字列へ変換するには</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=YowowhSij8w&feature=youtu.be" target="_blank"> 82 プログラミング Ring - strcmp() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=2DxAe-2XiMs&feature=youtu.be" target="_blank"> 83 プログラミング Ring - str2list() と list2str() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                                ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=aBXu7lL0JwU&feature=youtu.be" target="_blank"> 84 プログラミング Ring - clock() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=AlqjgTpISCk&feature=youtu.be" target="_blank"> 85 プログラミング Ring - Time () と Date() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=s9lIDBefOyw&feature=youtu.be" target="_blank"> 86 プログラミング Ring - TimeList() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=wuOhNd19dTM&feature=youtu.be" target="_blank"> 87 プログラミング Ring - Adddays()関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=b65ivW4MsbI&feature=youtu.be" target="_blank"> 88 プログラミング Ring - DiffDays () 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                                ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=6R_e-7NHtEo&feature=youtu.be" target="_blank"> 89 プログラミング Ring - データ型の検査: Isstring() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=0a0dQbJ7NIY&feature=youtu.be" target="_blank"> 90 プログラミング Ring - データ型の検査: IsNumber() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=OBsjgK8SSCY&feature=youtu.be" target="_blank"> 91 プログラミング Ring - データ型の検査: IsList() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=_c4marwcp58&feature=youtu.be" target="_blank"> 92 プログラミング Ring - データ型の検査: Type() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=A4bi2gAI8yo&feature=youtu.be" target="_blank"> 93 プログラミング Ring - データ型の検査: IsNULL() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=slae6N2w2Kw&feature=youtu.be" target="_blank"> 94 プログラミング Ring - 文字の検査: IsAlNum() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=-Bf-HYfcvZI&feature=youtu.be" target="_blank"> 95 プログラミング Ring - 文字の検査: IsAlpha() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=-7k8aHrtfHc&feature=youtu.be" target="_blank"> 96 プログラミング Ring - 文字の検査: IsCntrl() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=HUnEEuUB1Cs&feature=youtu.be" target="_blank"> 97 プログラミング Ring - 文字の検査: IsDigit() 関数と IsXDigit() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=RXdKTC518w0&feature=youtu.be" target="_blank"> 98 プログラミング Ring - 文字の検査: IsGraph() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=H94f2xFeF_s&feature=youtu.be" target="_blank"> 99 プログラミング Ring - 文字の検査: IsLower() と IsUpper() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=BPrxi1JAZd8&feature=youtu.be" target="_blank"> 100 プログラミング Ring - 文字の検査: IsPrint() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=LYCeI17k3aI&feature=youtu.be" target="_blank"> 101 プログラミング Ring - 文字の検査: IsPunct() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=fp-8nRoYyZI&feature=youtu.be" target="_blank"> 102 プログラミング Ring - 文字の検査: IsSpace() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=OoZy1TSYwb0&feature=youtu.be" target="_blank"> 103 プログラミング Ring - データ型の変換: Number() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=aWdLf9vSke8&feature=youtu.be" target="_blank"> 104 プログラミング Ring - データ型の変換: String() 関数 </a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=oj4lMYBjYTg&feature=youtu.be" target="_blank"> 105 プログラミング Ring - データ型の変換: Ascii() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=fHtq4MA7NiE&feature=youtu.be" target="_blank"> 106 プログラミング Ring - データ型の変換: Char() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=cQWdfjTtBT0&feature=youtu.be" target="_blank"> 107 プログラミング Ring - データ型の変換: Hex() と Dec() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=tR79cjCFtgc&feature=youtu.be" target="_blank"> 108 プログラミング Ring - データ型の変換: Str2hex() と Hex2str() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                                ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=mL6Sqj3wYP4&feature=youtu.be"> 109 プログラミング Ring - 算術関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                                ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=cWeSyBci2do&feature=youtu.be"> 110 プログラミング Ring - ファイル操作: Read() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                                ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=6050rTHKooo&feature=youtu.be"> 111 プログラミング Ring - ファイル操作: Write() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                                ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=hk6e-WEc8aA&feature=youtu.be"> 112 プログラミング Ring - ファイル操作: Dir() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                              ] ,
-                                                         [
-                                       '<a href="https://www.youtube.com/watch?v=E343q9AxGoo"> 113 プログラミング Ring - ファイル操作: Rename() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                              ] ,
-                                                         [
-                                       '<a href="https://www.youtube.com/watch?v=l_qluT4LRvk"> 114 プログラミング Ring - ファイル操作: Remove() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                              ] ,
-                                                         [
-                                       '<a href="https://www.youtube.com/watch?v=IiZ_G7FGw2E"> 115 プログラミング Ring - ファイル操作: Fopen() 関数</a>',
-                                       '<img src="mralaa.png" width="60%">'
-                              ]
-                       ]
-               ],
-                       ["Mr. Ahmed Hassouna - Hassouna Academy によるアラビア語版の入門解説動画 (YouTube) ※基礎、オブジェクト指向、フォーム ♥",[
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=3YsdVicFv3Q" target="_blank">01 プログラミング言語 Ring のご紹介</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ThPcTPyTkXc" target="_blank">02 プログラミング言語 Ring - ダウンロードとインストール</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=nvgzIfuOnFo&index" target="_blank">03 プログラミング言語 Ring - ダウンロードと Ubuntu Linux へのインストール</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ibdTtHm_61I&index" target="_blank">04 プログラミング言語 Ring - ダウンロードと Mac OS X へのインストール</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=q09Or4KTzQs&index" target="_blank">05 プログラミング言語 Ring - 特徴</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=k2vx3elMq2k&index" target="_blank">06 プログラミング言語 Ring - see() による出力</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=xw3rX33obGM&index" target="_blank">07 プログラミング言語 Ring - give() による入力</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Tezj0Rqi3Hk&index" target="_blank">08 プログラミング Ring - Notepad++ のダウンロードと言語定義ファイルの追加</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=EDvde6hTG8s&index" target="_blank">09 プログラミング Ring - 変数</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=v0rkrg1hBOY&index" target="_blank">10 プログラミング Ring - コメント</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=s2bQK3dTPsc&index" target="_blank">11 プログラミング Ring - 算術演算子</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=fcduGjbJSL8&index" target="_blank">12 プログラミング Ring - 論理演算子</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=jWoSCijesaY&index" target="_blank">13 プログラミング Ring - 比較または関係演算子</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=LASgs4ppOsA&index" target="_blank">14 プログラミング Ring - 代入演算子</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=WJe8rLBU7tQ&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=15" target="_blank">15 プログラミング Ring - 配列ではなくリスト</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=eJi5_OkOaeg&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=16" target="_blank">16 プログラミング Ring - リスト配列の範囲</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=h5LUDUgYClA&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=17" target="_blank">17 プログラミング Ring - リスト Part 1</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=FPVx45VoWYw&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=18" target="_blank">18 プログラミング Ring - リスト Part 2</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Ru_J4lFE76c&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=19" target="_blank">19 プログラミング Ring - 入れ子リスト</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=JZxwsWP7GeE" target="_blank">20 プログラミング Ring - 文字列から数値への変換</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=lxLL53jS3nE&index=21&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">21 プログラミング Ring - IF ステートメントと OK</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=fwlqsiLmbK8&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=22" target="_blank">22 プログラミング Ring - IF ~ OK ステートメントと ELSE & BUT</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=AqpBs8bTDIc&index=23&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">23 プログラミング Ring - SWITCH  ~ ON  ~ OFF ステートメントと OTHER</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=_SiDLi5H1mM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=24" target="_blank">24 プログラミング Ring - FOR LOOP ステートメント</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=NvFxaED2-vo&index=25&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">25 プログラミング Ring - Ring 1.3</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=NQOMFasiGqE&index=26&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">26 プログラミング Ring - 入れ子ループ</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=vTskzVew7aI&index=27&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">27 プログラミング Ring - While ループ</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=OXoIdq75hwM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=28" target="_blank">28 プログラミング Ring - Do ~ Again ループ</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=WZiKi_waL9o&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=29" target="_blank">29 プログラミング Ring - Exit</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=USY0s6n4Mpw&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=30" target="_blank">30 プログラミング Ring - Loop</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="" target="_blank"><strike>31 プログラミング Ring - 日付と時刻の表示</strike> (リンク切れ)</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=-OLP4QUJ9KQ&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=32" target="_blank">32 プログラミング Ring - TimeList</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=y7ngyXt3sBY&index=33&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">33 プログラミング Ring - Date() 関数の詳細</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=4-jO3sFFq34&index=34&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">34 プログラミング Ring - 誕生日の計算</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=zqZZae2uIgA&index=35&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">35 プログラミング Ring - 実行性能の計算</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=WU349fkNbbg&index=36&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">36 プログラミング Ring - 待機時間</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=dUu1no_Dq1Q&index=37&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">37 プログラミング Ring - 曜日</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=_48gXq3K3EQ&index=38&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">38 プログラミング Ring - 大文字と小文字</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=WZwWj75XaUk&index=39&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">39  プログラミング Ring - 文字列の長さ</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=4yQBrwi7uCM&index=40&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">40 プログラミング Ring - 通常の部分文字列</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=bSwL38pg2dQ&index=41&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">41 プログラミング Ring - 部分文字列の始点と終点</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=8cB2Zu31smw&index=42&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">42 プログラミング Ring - 文字列の置換</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=7qtlUe56CbE&index=43&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">43 プログラミング Ring - 文字列の分割</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=5uOEyK-Zw3Q&index=44&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">44 プログラミング Ring - 文字列の反転</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=d393r6xOFec&index=45&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">45 プログラミング Ring - get() と put()</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=1PSmbDkw8d4&index=46&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">46 プログラミング Ring - 文字列の左右操作</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=82bpoDgdj6g&index=47&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">47 プログラミング Ring - 空白文字の除去と文字列か空の空白文字であるかの確認</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=MOlgwvxeOCg&index=48&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">48 プログラミング Ring - 複写</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Htn1jMYXKeY&index=49&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">49 プログラミング Ring - StrCmp() による文字列の比較</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=O3jqq_4XJps&index=50&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">50 プログラミング Ring - 行番号または行数の総計</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=UneJvlJnDl0&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=52" target="_blank">51 プログラミング Ring - 任意変数の型</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=eHRLTjesnQ0&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=53" target="_blank">52 プログラミング Ring - 文字列からリストおよびリストから文字列への変換</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=YXKS-bTco-c&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=54" target="_blank">53 プログラミング Ring - 型の検査関数</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=69hRSl6i2Cg&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=55" target="_blank">54 プログラミング Ring - 文字の検査</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=vJ2tRyx1g3s&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=56" target="_blank">55 プログラミング Ring - データ型の変換</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=oo3l9StITAY&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=57" target="_blank">56 プログラミング Ring - 乱数</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=2dpOk7ppJsI&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=58" target="_blank">57 プログラミング Ring - 新規テキストファイルの作成</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=1uuk_JMZA-c&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=59" target="_blank">58 プログラミング Ring - テキストファイルの読み込み</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=skP1AYrAXto&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=60" target="_blank">59 プログラミング Ring - ファイルとフォルダの取得</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=PvCRjFSfxiE&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=61" target="_blank">60 プログラミング Ring - ファイルとフォルダの名称変更</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=V8ueE4vOGHM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=62" target="_blank">61 プログラミング Ring - ファイルとフォルダの削除</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=zwMeq5qE-w4&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=63" target="_blank">62 プログラミング Ring - ファイルの読み込み</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=KpfgNeQFSSo&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=64" target="_blank">63 プログラミング Ring - ファイルの書き込み</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Iq5bMVYT5xE&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=65" target="_blank">64 プログラミング Ring - ファイルの追記書き込み</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=8mqcKAiHt_A&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=66" target="_blank">65 プログラミング Ring - ファイルの更新</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=rvo7pt3Ebso&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=67" target="_blank">66 プログラミング Ring - fseek() 関数</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=FtFc94fhle4&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=68" target="_blank">67 プログラミング Ring - フォルダの作成</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=VHSKaZBsft4&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=69" target="_blank">68 プログラミング Ring - exe ファイルの実行</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=3hT-00Ub-ug&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=70" target="_blank">69 プログラミング Ring - HTML の実行</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=7vRpC68Bwco&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=71" target="_blank">70 プログラミング Ring - Try と Catch</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Rhtg_CSzyqg&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=72" target="_blank">71 プログラミング Ring - 関数: 第一形式</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=dW1IhSeHZbg&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=73" target="_blank">72 プログラミング Ring - 関数: 第二形式</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=w_hR6PuOek4&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=74" target="_blank">73 プログラミング Ring - Main 関数の作成</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=dnOQq0YRSYM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=75" target="_blank">74 プログラミング Ring - 仮引数の送信</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=E9p8k5TcIKs&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=76" target="_blank">75 プログラミング Ring - 電卓の生成</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=CyZAhqMGOM8&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=77" target="_blank">76 プログラミング Ring - 仮引数として配列を送信</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=UYgQEf7PJG0&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=78" target="_blank">77 プログラミング Ring - 返値</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=oegLea_JILU&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=79" target="_blank">78 プログラミング Ring - フォルダ作成関数の開発</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=el3zmTg_y08&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=80" target="_blank">79 プログラミング Ring - フォルダ削除関数の開発</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=7wqFrGAObSw&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=81" target="_blank">80 プログラミング Ring - 乱数生成関数の開発</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=xxa0eIXh9uU&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=82" target="_blank">81 プログラミング Ring - ファイル全削除関数の開発</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ymDVpNvzxpY&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=83" target="_blank">82 プログラミング Ring - フォルダ全削除関数の開発</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=QZDBvxjZm7s&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=84" target="_blank">83 プログラミング Ring - 平均と総数計算関数の開発</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=A_VvCSZCfD0&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=85" target="_blank">84 プログラミング Ring - 数値と文字列確認関数の開発</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=xIYFfvsng68&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=86" target="_blank">85 プログラミング Ring - Ring でのライブラリ生成</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=C97ZhvC0v6c&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=87" target="_blank">86 プログラミング Ring - オブジェクト指向プログラミングの概念</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=nOBxSYbBkX0&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=88" target="_blank">87 プログラミング Ring - クラスの作成</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=K1leIc-Focc&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=89" target="_blank">88 プログラミング Ring - オブジェクトの作成</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=lpy2Xlr1Mdo&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=90" target="_blank">89 プログラミング Ring - パッケージの概念</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=H6uu9beqomc&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=91" target="_blank">90 プログラミング Ring - パッケージとクラス</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=zVAGtE9_vH8&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=92" target="_blank">91 プログラミング Ring - 入れ子のパッケージ</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=1suIuRk_NhE&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=93" target="_blank">92 プログラミング Ring - Ring でのインポート</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=KmWRZywUmdY&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=94" target="_blank">93 プログラミング Ring - 基本文法、ステートメント、関数、クラス、パッケージ</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=1waX_VMoigU&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=95" target="_blank">94 プログラミング Ring - 属性値の設定</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ba-ULJJRcNM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=96" target="_blank">95 プログラミング Ring - クラスからの関数呼び出し</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=6y1FE_W6wrM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=97" target="_blank">96 プログラミング Ring - Ring でのコンストラクタ (init 関数)</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=AWzFO3dfkF8&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=98" target="_blank">97 プログラミング Ring - コンストラクタへの仮引数送信</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=z9XITOKleeU&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=99" target="_blank">98 プログラミング Ring - 同一変数名を有するクラスで This を使用</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=NOFAdfdh2Ig&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=100" target="_blank">99 プログラミング Ring - 仮引数値の変更</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=90hNLr8jKb4&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=101" target="_blank">100 プログラミング Ring - コンポジション (クラスとオブジェクト)</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=2V3mO7QpUDE&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=102" target="_blank">101 プログラミング Ring - プライベートアクセス修飾子</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=T3I0UqoOPQE&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=103" target="_blank">102 プログラミング Ring - カプセル化の概念</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=JGSiA9ifU0g&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=104" target="_blank">103 プログラミング Ring - Ring におけるカプセル化</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=u1LCo6UQv6o&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=105" target="_blank">104 プログラミング Ring - 継承の概念</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=3xJgL1T_Pes&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=106" target="_blank">105 プログラミング Ring - 継承の用例</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=rFSPHERWmtg&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=107" target="_blank">106 プログラミング Ring - オーバーロードの概念</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=CMr5gX6U_a0&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=108" target="_blank">107 プログラミング Ring - オーバーロードの代用 (0)</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=a6TjSU18XVI&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=109" target="_blank">108 プログラミング Ring - オーバーロードの代用 (1)</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=1_5uFnVKTXY&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=110" target="_blank">109 プログラミング Ring - オーバーロードの代用 (2)</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=KodV2Fq33dM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=111" target="_blank">110 プログラミング Ring - オーバーロードの代用 (3)</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=9lr81MQjZ2Q&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=112" target="_blank">111 プログラミング Ring - オーバーロードの代用 (4)</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Fy8X0MELS4I&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=113" target="_blank">112 プログラミング Ring - オーバーロードの代用 (5)</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Q2hgfGT-g1k&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=114" target="_blank">113 プログラミング Ring - オーバーロードの用例 (1)</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=YLcRSLY6F-A&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=115" target="_blank">114 プログラミング Ring - オーバーライド</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=6aC-8-ANRR4&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=116" target="_blank">115 プログラミング Ring - オーバーライドの用例</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=cx-0Av2G4Tc&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=117" target="_blank">116 プログラミング Ring - コンストラクタの継承</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=tLuS2UYOqSY&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=118" target="_blank">117 プログラミング Ring - 多態性の概念</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=a8bL3HYQHcY&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=119" target="_blank">118 プログラミング Ring - 多態性の用例</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=9geg-48jqTQ&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=120" target="_blank">119 プログラミング Ring - オブジェクト指向プログラミングの用例 (My Note)</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=cyj2GpwK3mo&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=121" target="_blank">120 プログラミング Ring - オブジェクト指向プログラミングの用例 (Employee Data)</a>',
-                                       '<img src="ahpart2.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=gY6ybUam7Yc&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=122" target="_blank">121 プログラミング Ring - デスクトップアプリケーション開発入門</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=aw5eft0RJIY&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=123" target="_blank">122 プログラミング Ring - フォームの新規作成</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=eFQtWPn_XqY&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=124" target="_blank">123 プログラミング Ring - フォームの位置と寸法設定</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=lekIyMdFqa8&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=125" target="_blank">124 プログラミング Ring - テキストボックスの挿入と中央揃え</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=6Mpa8_YRRkE&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=126" target="_blank">125 プログラミング Ring - コントロールへの新規フォント作成</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=eTsN9fRk2dU&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=127" target="_blank">126 プログラミング Ring - ラベルまたはヘッダフォームの挿入</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=gLrznRwWNbc&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=128" target="_blank">127 プログラミング Ring - フォームへのボタン追加</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=mwpnplAWzHk&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=129" target="_blank">128 プログラミング Ring - ボタンへクリックイベントを追加 (押されたときのプログラムを追加)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=3M5UDPoHHDY&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=130" target="_blank">129 プログラミング Ring - フォームへアイコンを追加</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=UV0y57ohVyw&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=131" target="_blank">130 プログラミング Ring - コントロールへ CSS スタイルを設定</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=KB-zUFE2bSE&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=131" target="_blank">131 プログラミング Ring - 電卓</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=mLS0E215nZk&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=131" target="_blank">132 プログラミング Ring - フォームデザイナ - Say Hello</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=K_Dtxk6Owkk&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=132" target="_blank">133 プログラミング Ring - FormTools クラス</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=hf5xecCju20&index=135&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">134 プログラミング Ring - FormTools クラス - Center() メソッド</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=7nBnmaCzo0I&index=136&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">135 プログラミング Ring - Ring フォームでの MVC</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=l_A0uLZcSZw&index=137&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">136 プログラミング Ring - フォーム - Load イベント</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=e6SB8YPai78&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=138" target="_blank">137 プログラミング Ring - フォーム - ウィンドウの状態</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=1g1szYzcNUU&index=139&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">138 プログラミング Ring - フォーム - ウィンドウの状態ボタン</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=IWqFSTBHa2o&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=140" target="_blank">139 プログラミング Ring - フォーム - メッセージボックス</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=v84WRfNY4UI&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=141" target="_blank">140 プログラミング Ring - フォーム - インプットボックス</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=W400Uhrs8AM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=142" target="_blank">141 プログラミング Ring - フォーム - フォームツールクラスへのメソッド追加</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=gSHI6xxyFPg&index=143&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">142 プログラミング Ring - フォーム - フォームツールクラス - メッセージボックス</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=cr7FGEhX8vk&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=144" target="_blank">143 プログラミング Ring - フォーム - フォームツールクラス - インプットボックス</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=xIUF0DO9faU&index=145&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">144 プログラミング Ring - ゲーム - Gold Magic 800</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Hhsf1yaHjgQ&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=146" target="_blank">145 プログラミング Ring - フォームツール - 新規フォーム - フォームの取得</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=3m2rULmcSq8&index=147&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">146 プログラミング Ring - 複数のフォーム</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=x-smlk0WoB8&index=148&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">147 プログラミング Ring - TextEdit</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=EcH7ExbwzBw&index=149&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">148 プログラミング Ring - フォームツール - TextEdit</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=pwjmaMvK9LQ&index=150&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">149 プログラミング Ring - フォームツール - ListWidget</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=wXRMyCpbzFQ&index=151&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">150 プログラミング Ring - フォームツール - ListWidget - 選択済み項目の取得</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=p8kn9YOUwD4&index=152&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">151 プログラミング Ring - フォームツール - ListWidget - 項目の挿入</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=bMnZ8JYlt1Y&index=153&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">152 プログラミング Ring - フォームツール - ListWidget - 項目の削除と項目のカウント</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=lynUy-hzNos&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=154" target="_blank">153 プログラミング Ring - フォームツール - ListWidget - 項目テキストの取得</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=UEhcvw_cel4&index=155&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">154 プログラミング Ring - フォームツール - ListWidget - 項目の編集</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=38rptARVG5E&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=156" target="_blank">155 プログラミング Ring - フォームツール - ListWidget - 複数項目の選択</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=1gT26vuGE8w&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=157" target="_blank">156 プログラミング Ring - フォームツール - ListWidget - 選択項目の取得</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=4oujvcTT1PI&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=158" target="_blank">157 プログラミング Ring - フォームツール - ListWidget - リスト項目の補填</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=b6079OGsIYg&index=159&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">158 プログラミング Ring - フォームツール - ListWidget - リスト項目の補填 - part (2)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=QxKTswMFjRM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=160" target="_blank">159 プログラミング Ring - フォームツール - ListWidget - 項目変更イベント</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=c3nEyGXzby8&index=161&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">160 プログラミング Ring - フォームツール - ListWidget - チェックボックス</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=H2ozr_IXv1w&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=162" target="_blank">161 プログラミング Ring - フォームツール - チェックボックス - 変更イベント</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=YthTtiBw8oI&index=163&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT" target="_blank">162 プログラミング Ring - フォームツール - チェックボックス - ツリーの状態</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=-2_GG_Qn9s4&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=164" target="_blank">163 プログラミング Ring - フォームツール - 画像</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Pinqw2pNvrI&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=165" target="_blank">164 プログラミング Ring - フォームツール - 画像 - コードでの表示</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=RIjZ-Aixmho&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=166" target="_blank">165 プログラミング Ring - 「ファイルを開く」ダイアログの表示</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=O5hPR59SovY&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=167" target="_blank">166 プログラミング Ring - 「ファイルを開く」ダイアログで画像を開く</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=FmbZcTUba58&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=168" target="_blank">167 プログラミング Ring - 「ファイルの保存」ダイアログの表示</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=t6H0_G0XfQE&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=169" target="_blank">168 「ファイルの保存」ダイアログの表示 - Part 2</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=VrOtIYrLcL4&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=170" target="_blank">169 プログラミング Ring - ファイルダイアログを開く</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=O4brBt4-ABM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=171" target="_blank">170 プログラミング Ring - 画面の印刷</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=BezztC8JXGE&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=172" target="_blank">171 プログラミング Ring - 画面の印刷 - Part (2)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=pJ4VrVU6wqs&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=173" target="_blank">172 プログラミング Ring -  画面の印刷 - Part (3)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=kbUE7Uh8rT8&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=174" target="_blank">173 プログラミング Ring -  画面の印刷 - Part (4)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Kt7Wi4OSFuI&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=175" target="_blank">174 プログラミング Ring -  画面の印刷 - Part (5)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=bTDuPQ_8ygs&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=176" target="_blank">175 プログラミング Ring - スライダー</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=o3xXe6LbZbk&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=177" target="_blank">176 プログラミング Ring - プログレスバー</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=CzElgLoornk&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=178" target="_blank">177 プログラミング Ring - スピンボックス</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=vM5arLfhoJ0&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=179" target="_blank">178 プログラミング Ring - コンボボックス - アイテムの追加と削除</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=S5Ac9NQNH0Q&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=180" target="_blank">179 プログラミング Ring - コンボボックス - 現在のアイテム</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=NAcrsuX2980&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=181" target="_blank">180 プログラミング Ring - QDateTime</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=1Qsl8AZJfUw&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=182" target="_blank">181プログラミング Ring -  QDateTimeEdit</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=2rM7srtxuIA&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=183" target="_blank">182 プログラミング Ring - QTime</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=LFrUK1D2VPU&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=184" target="_blank">183 プログラミング Ring - QTime - Part 2</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=M7GvkMO2aFQ&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=185" target="_blank">184 プログラミング Ring - QTableWidget</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=4CEZ0_dxNpM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=186" target="_blank">185 プログラミング Ring - QTableWidget - Part 2</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=fawUhgVkLXg&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=187" target="_blank">186 プログラミング Ring - QTableWidget - Part 3</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=PZNzG6DoG3U&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=188" target="_blank">187 プログラミング Ring - DataTable クラス</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=enRF-3fQmdI&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=189" target="_blank">188 プログラミング Ring - DataTable クラス - Part 2</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=zaZ_drMk7fg&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=190" target="_blank">189 プログラミング Ring - QTableWidget - 選択項目の取得</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=G9Y1LMMfIq0&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=191" target="_blank">190 プログラミング Ring - QTreeWidget</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=xXtiP-CNCJk&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=192" target="_blank">191 プログラミング Ring - QTreeWidget - 項目の編集</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=hNVQbWcsv7Y&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=193" target="_blank">192 プログラミング Ring - QTreeWidget - 選択項目の取得</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=_asTKvDLOE0&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=194" target="_blank">193 プログラミング Ring - QRadioButton</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=7YW_oVELO1Q&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=195" target="_blank">194 プログラミング Ring - QTreeWidget - 現在の子の親を取得</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=mFroqg4grgg&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=196" target="_blank">195 プログラミング Ring - QWebView - ウェブサイトを開く</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=aNxyJ2rJLm4&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=197" target="_blank">196 プログラミング Ring -  QWebView - Part (2)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=9CjC97sMXoM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=198" target="_blank">197 プログラミング Ring - ダイアルスライダー</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=jJuUK6_v5CQ&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=199" target="_blank">198 プログラミング Ring - Video ウィジェット</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=MK6o52gPfOY&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=200" target="_blank">199 プログラミング Ring - Form コントロール - デザインオプション</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ave95TWa2hI&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=201" target="_blank">200 プログラミング Ring - ツールバー</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Xyqsjz5r41M&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=202" target="_blank">201 プログラミング Ring - カラーダイアログ</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=eFjuYjD8oRY&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=203" target="_blank">202 プログラミング Ring - メディアプレイヤー - サウンドの再生</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=MhpABZBAnxg&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=204" target="_blank">203 プログラミング Ring - カスタムメッセージボックス</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=wD8u3PPzeB4&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=205" target="_blank">204 プログラミング Ring - カスタムメッセージボックス - Part (2)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=2mCrWGKSqeg&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=206" target="_blank">205 プログラミング Ring - カスタムメッセージボックス - Part (3)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=8SFc8njMkM0&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=207" target="_blank">206 プログラミング Ring - カスタムメッセージボックス - Part (4)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=HkbQULDSiro&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=208" target="_blank">207 プログラミング Ring - QLineEdit - エコーモード</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=VY7qWYKDi20&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=209" target="_blank">208 プログラミング Ring - Input ダイアログ - エコーモード</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=coBMZVpdHJA&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=210" target="_blank">209 プログラミング Ring - 正規表現</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=yuTxWHduYQw&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=211" target="_blank">210 プログラミング Ring - 正規表現 - Part (2)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=geq-orOilio&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=212" target="_blank">211 プログラミング Ring - QVBoxLayout</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=VkNfILnIWj0&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=213" target="_blank">212 プログラミング Ring - QStatusBar</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=0loPwJxwskM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=214" target="_blank">213 プログラミング Ring - QLCDNumber</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=MW7foecknsU&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=215" target="_blank">214 プログラミング Ring - ハイパーリング</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=16Bv62ktU9o&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=216" target="_blank">215 プログラミング Ring - QTabWidget</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=vFjzoKNrJfQ&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=217" target="_blank">216 プログラミング Ring - QTabWidget イベント</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=5kdFm6DOCAo&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=218" target="_blank">217 プログラミング Ring - QTabWidget - タブの追加と削除</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=EKkZr2amrPM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=219" target="_blank">218 プログラミング Ring - QTabWidget - コントロールの追加</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=R2X4-xI7bXA&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=220" target="_blank">219 プログラミング Ring - QTimer</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=KnII-CDu6xE&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=221" target="_blank">220 プログラミング Ring - QTimer - Part (2)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=8tyaAQ4MQWM&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=222" target="_blank">221 プログラミング Ring - QTimer - Part (3)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=y3bl2fh4vo4&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=223" target="_blank">222 プログラミング Ring - デジタル式時計</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=nOvy89us9I4&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=224" target="_blank">223 プログラミング Ring - デジタル式時計 - Part (2)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=XIjva-MODvk&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=225" target="_blank">224 プログラミング Ring - デジタル式時計 - Part (3)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=FtUNDzmuPhc&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=226" target="_blank">225 プログラミング Ring - デジタル式時計 - Part (4)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=arUNb0dKEis&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=227" target="_blank">226 プログラミング Ring - デジタル式時計 - Part (5)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=sy-lKt93ADU&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=228" target="_blank">227 プログラミング Ring - デジタル式時計 - Part (6)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=R33bkfKrLGk&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=229" target="_blank">228 プログラミング Ring - デジタル式時計 - Part (7)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=CqgdcQE5ru8&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=230" target="_blank">229 プログラミング Ring - ロケットレース - Part (1)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Y7IvQUrVW2s&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=231" target="_blank">230 プログラミング Ring - ロケットレース - Part (2)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=s6Eohy7hw1I&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=232" target="_blank">231 プログラミング Ring - ロケットレース - Part (3)</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=sVV1qfyXkkQ&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=233" target="_blank">232 プログラミング Ring - 宇宙船の用例</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=JEE7cYFJZCQ&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=234" target="_blank">233 プログラミング Ring - 花を動かす用例</a>',
-                                       '<img src="ahpart3.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=rOwOEFTVvg0" target="_blank">番外編 プログラミング Ring - 1.5 時間でわかる Ring 入門!</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ZMUvgVnwoiw&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=235" target="_blank">234 プログラミング Ring - データベースプログラミング - Lesson 1</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=DonQyg3IqRY&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=236" target="_blank">235 プログラミング Ring - データベースプログラミング - Lesson 2</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=UYTwVCvujMU&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=237" target="_blank">236 プログラミング Ring - データベースプログラミング - Lesson 3</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=NbuySwYC_-Y&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=238" target="_blank">237 プログラミング Ring - データベースプログラミング - Lesson 4</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=YB2hvJZxY84&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=239" target="_blank">238 プログラミング Ring - データベースプログラミング - Lesson 5</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=NWUG0dyX1DA&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=240" target="_blank">239 プログラミング Ring - データベースプログラミング - Lesson 6</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=SwnOB_v5NzE&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=241" target="_blank">240 プログラミング Ring - データベースプログラミング - Lesson 7</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Ag702r5f6GQ&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=242" target="_blank"241 プログラミング Ring - データベースプログラミング - Lesson 8</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=zqAm0l_GzVo&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=243" target="_blank">242 プログラミング Ring - データベースプログラミング - Lesson 9</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=hVE4Wzveq34&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=244" target="_blank">243 プログラミング Ring - データベースプログラミング - Lesson 10</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=bZDpgBkFmPE&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=245" target="_blank">244 プログラミング Ring - データベースプログラミング - Lesson 11</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=syYICMNsWyg&list=PLHIfW1KZRIfl6KzfLziFl650MmThnQ0jT&index=246" target="_blank">245 プログラミング Ring - データベースプログラミング - Lesson 12</a>',
-                                       '<img src="ahpart1.jpg" width="60%">'
-                               ],
-
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=c3jDXO57p8s" target="_blank">次回の講義にご期待ください!</a>'
-                               ]
-                       ]
-                       ],
-
-             ["Mahmoud Fayed によるアラビア語版の入門解説動画 (YouTube)",[
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=UCoXewxgvbI&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC" target="_blank">プログラミング言語 Ring - 講義 1 - はじめに</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=XNpbuz0SPmM&index=2&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC" target="_blank">プログラミング言語 Ring - 講義 2 - 出入力</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=6duxGi78Qyo&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC&index=3" target="_blank">プログラミング言語 Ring - 講義 3 - 文字列</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=LhUXYS3BsB8&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC&index=4" target="_blank">プログラミング言語 Ring - 講義 4 - リスト</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Hu9lKrYTSvg&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC&index=5" target="_blank">プログラミング言語 Ring - 講義 5 - 制御構造</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=PB1feNRRfqw&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC&index=6" target="_blank">プログラミング言語 Ring - 講義 6 - 関数 </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=xAH4OTASbDQ&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC&index=7" target="_blank">プログラミング言語 Ring - 講義 7 - データ型</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=8TyfzmUlrDc&index=8&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC" target="_blank">プログラミング言語 Ring - 講義 8 - Eval() とスコープ</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=KXLQRHgti3w&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC&index=9" target="_blank">プログラミング言語 Ring - 講義 9 - セキュリティとインターネット関数</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Z68Bi3zNqEM&index=10&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC" target="_blank">プログラミング言語 Ring - 講義 10 - データベース (ODBC, SQLite および MySQL)</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=kZRqCL-dmio&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC&index=11" target="_blank">プログラミング言語 Ring - 講義 11 - オブジェクト指向プログラミング</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=ryhlKHaBp2c&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC&index=12" target="_blank">プログラミング言語 Ring - 講義 12 - オブジェクト指向プログラミング (Part 2) と宣言型プログラミング</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Okt2JKOhCIA&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC&index=13" target="_blank">プログラミング言語 Ring - 講義 13 - 自然言語プログラミング</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=wTiZPonemFU&index=14&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC" target="_blank">プログラミング言語 Ring - 講義 14 - 自然言語プログラミング (Part 2)</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=AW9aYYARHG0&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC&index=15" target="_blank">プログラミング言語 Ring - 講義 15 - 関数型プログラミング (FP) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Zd6wP9CYu-E&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC&index=16" target="_blank">プログラミング言語 Ring - 講義 16 - リフレクションとメタプログラミング</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=XXhd9TkoaZs&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC&index=17" target="_blank">プログラミング言語 Ring - 講義 17 - 変数のスコープ</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=XvIIxPYmpmc&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC&index=18" target="_blank">プログラミング言語 Ring - 講義 18 - 関数のスコープ規則、型ヒントライブラリと Trace ライブラリ</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=xgaohQdrZcg&index=19&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC" target="_blank">プログラミング言語 Ring - 講義 19 - Ring 1.7 の新機能!</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=uDGeHq_gJPI&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC&index=20" target="_blank">プログラミング言語 Ring - 講義 20 - Ring 1.8 の新機能!</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=48Mv774RS2g&list=PLpQiqjcu7CuFc027iGHaBLPCZHuzCHkBC&index=21" target="_blank">プログラミング言語 Ring - 講義 21 - Ring 1.9  の新機能!</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=bxVFEH3lgfU&list=PLpQiqjcu7CuFfKz4WYANZCLQTzPESpl6a" target="_blank">プログラミング言語 Ring - デスクトップとモバイル開発 - 講義 1 - はじめてのアプリケーション (ボタンとイベント)</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=jcU6XaduLUA&index=2&list=PLpQiqjcu7CuFfKz4WYANZCLQTzPESpl6a" target="_blank">プログラミング言語 Ring - デスクトップとモバイル開発 - 講義 2 - Textbox の使用方法 (LineEdit コントロール)</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=s1DxFaiFCIo&list=PLpQiqjcu7CuFfKz4WYANZCLQTzPESpl6a&index=3" target="_blank">プログラミング言語 Ring - デスクトップとモバイル開発 - 講義 3 - 数値の合計 (ListWidget コントロール)</a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=EDyrgo-0BIg&index=1&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (1) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=RWlo8Eiyo0s&index=2&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (2) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=EGoVTIbw8M0&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn&index=3" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (3) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=uBToCd6bYeE&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn&index=4" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (4) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=l3QebGntG4g&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn&index=5" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (5) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=Re4lxETIdm8&index=6&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (6) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=r_JX5Lw3U54&index=7&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (7) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=IQ1Q_9nvVCE&index=8&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (8) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=qPtMe4f9y9w&index=9&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (9) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=hpinzzgkBKk&index=10&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (10) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=3bSwT28aP1w&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn&index=11" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (11) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=B7pfTYsiPqg&index=12&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (12) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=_WLo-d0WdCs&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn&index=13" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (13) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=YW7EXpa11h4&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn&index=14" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (14) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=UDMkECTl3RU&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn&index=15" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (15) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=fFsbyFLS0sU&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn&index=16" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (16) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=aRnsWOi_euE&index=17&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (17) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=c_LLHjWnUg4&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn&index=18" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (18) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=w8r7BP96rgQ&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn&index=19" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (19) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=urxUIb35EDI&index=20&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (20) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=nPSyNdLJZ2U&index=21&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (21) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=MjHRQgGFxbk&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn&index=22" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (22) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=sT5r4O4I6FY&index=23&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (23) </a>'
-                               ],
-                               [
-                                       '<a href="https://www.youtube.com/watch?v=yTjwi55u0iA&list=PLpQiqjcu7CuFiv-Fa8M8wx-MrKvLmMnbn&index=24" target="_blank">プログラミング言語 Ring - パッケージ管理プログラム (RingPM) の開発 - Part (24) </a>'
-                               ]
-                       ]
-                       ]
-]
diff --git a/website-obsoleted/resources.template b/website-obsoleted/resources.template
deleted file mode 100644 (file)
index 346e05c..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-  <%  eval(read("resources.data"))  %>
-
-  <div id="resources" class="panel-group">
-    <div class="panel panel-default">
-      <div class="panel-heading"><h4>リソース <span class="badge"><%= len(aResources) %></span></h4></div>
-      <div class="panel-body">
-
-               <% for aGroup in aResources %>
-
-               <div class="panel panel-primary" id="samples">
-                     <div class="panel-heading"><%= aGroup[1] %> <span class="badge"><%= len(aGroup[2]) %></span></div>
-                     <div class="panel-body">
-
-                       <table class="table table-striped">
-
-                               <% if len(aGroup[2][1]) = 2  %>
-                                       <thead>
-                                               <tr>
-                                                       <th width="80%">説明  </th>
-                                                       <th width="20%">画像 </th>
-                                               </tr>
-                                       </thead>
-                               <% ok %>
-
-                               <tbody>
-                               <% for aItem in aGroup[2] %>
-                                 <tr>
-                                       <% for aData in aItem %>
-                                                <th>
-                                                       <%= aData %>
-                                                </th>
-                                       <% next %>
-                                 </tr>
-                               <% next %>
-                               </tbody>
-                       </table>
-
-                     </div>
-               </div>  
-
-               <% next %>
-
-       </div>
-     </div>  
-  </div>  
-
-
-
diff --git a/website-obsoleted/team.data b/website-obsoleted/team.data
deleted file mode 100644 (file)
index 6a7dbf1..0000000
+++ /dev/null
@@ -1,9 +0,0 @@
-aTeam = [
-                                 [
-                                       'isVowel (本名非公開)',
-                                       'isvowel_translator-service×jp.co.yahoo',
-                                       '翻訳・サイト管理',
-                                       '不定期',
-                                       ''
-                                 ]
-]
diff --git a/website-obsoleted/team.template b/website-obsoleted/team.template
deleted file mode 100644 (file)
index e480458..0000000
+++ /dev/null
@@ -1,33 +0,0 @@
-  <% eval(read("team.data"))  %>
-  <div id="team" class="panel-group">
-    <div class="panel panel-default">
-      <div class="panel-heading"><h4>Ring チーム (日本) <span class="badge"><%= len(aTeam) %></span></h4></div>
-      <div class="panel-body">
-
-                       <table class="table table-striped">
-                               <thead>
-                                 <tr>
-                                       <th>名前</th>
-                                       <th>電子メール</th>
-                                       <th>担当</th>
-                                       <th>活動状況</th>
-                                       <th></th>
-                                 </tr>
-
-                               </thead>
-                               <tbody>
-                                 <% for x in aTeam %>
-                                 <tr>
-                                       <% for x2 in x %>
-                                               <th><%= x2 %></th>                                      
-                                       <% next %>
-                                 </tr>
-                                 <% next %>
-                               </tbody>
-                       </table>
-
-      </div>
-     </div>  
-  </div>  
-
-