visuddhinanda преди 5 години
родител
ревизия
e127876236

+ 0 - 0
app/install/_FILE_DB_PALITEXT_


+ 1 - 1
app/install/db_collact_para_bookid.php

@@ -25,7 +25,7 @@ $to=$_GET["to"];
 $filelist=array();
 $fileNums=0;
 $log="";
-$dirLog="log/";
+$dirLog=_DIR_LOG_."/";
 $dirDb="db/";
 
 

+ 1 - 1
app/install/db_create.php

@@ -38,7 +38,7 @@ $FileName=$filelist[$from][1].".htm";
 $fileId=$filelist[$from][0];
 $fileId=$filelist[$from][0];
 
-$dirLog="log/";
+$dirLog=_DIR_LOG_."/";
 
 $dirDb="db/$res/";
 $inputFileName=$FileName;

+ 1 - 1
app/install/db_insert_commantry.php

@@ -38,7 +38,7 @@ $FileName=$filelist[$from][1].".htm";
 $fileId=$filelist[$from][0];
 $fileId=$filelist[$from][0];
 
-$dirLog="log/";
+$dirLog=_DIR_LOG_."/";
 
 $dirDb="db/";
 $inputFileName=$FileName;

+ 4 - 3
app/install/db_insert_index.php

@@ -7,11 +7,12 @@
 <p><a href="index.php">Home</a></p>
 <?php
 include "./_pdo.php";
+include "../path.php";
 if(isset($_GET["from"])==false){
 ?>
 <form action="db_insert_index.php" method="get">
-From: <input type="text" name="from"><br>
-To: <input type="text" name="to"><br>
+From: <input type="text" name="from" value="0"><br>
+To: <input type="text" name="to" value="216"><br>
 <input type="submit">
 </form>
 <?php
@@ -26,7 +27,7 @@ $g_wordIndexCounter=0;
 $iAllWordIndex=array();
 $sAllWord=array();
 
-$dirLog="log/";
+$dirLog=_DIR_LOG_."/";
 $dirDb="db/";
 $dirXmlBase="xml/";
 

+ 21 - 31
app/install/db_insert_palitext.php

@@ -6,12 +6,13 @@
 <h2>Insert Pali Text To DB</h2>
 <p><a href="index.php">Home</a></p>
 <?php
-include "./_pdo.php";
+require_once "./_pdo.php";
+require_once "../path.php";
 if(isset($_GET["from"])==false){
 ?>
 <form action="db_insert_palitext.php" method="get">
-From: <input type="text" name="from"><br>
-To: <input type="text" name="to"><br>
+From: <input type="text" name="from" value="0"><br>
+To: <input type="text" name="to" value="216"><br>
 <input type="submit">
 </form>
 <?php
@@ -36,17 +37,16 @@ $FileName=$filelist[$from][1].".htm";
 $fileId=$filelist[$from][0];
 $fileId=$filelist[$from][0];
 
-$dirLog="log/";
+$dirLog=_DIR_LOG_."/";
 
-$dirDb="db/templet/";
 $inputFileName=$FileName;
 $outputFileNameHead=$filelist[$from][1];
 $bookId=$filelist[$from][2];
 $vriParNum=0;
 $wordOrder=1;
 
-$dirXmlBase="xml/";
-$dirPaliTextBase="pali-text/";
+$dirXmlBase=_DIR_PALI_CSV_."/";
+$dirPaliTextBase=_DIR_PALI_HTML_."/";
 $dirXml=$outputFileNameHead."/";
 
 
@@ -56,26 +56,10 @@ echo "doing:".$xmlfile."<br>";
 $log=$log."$from,$FileName,open\r\n";
 
 $arrInserString=array();
-$db_file = $dirDb.$bookId.'_pali.db3';
+$db_file =_FILE_DB_PALITEXT_;
 PDO_Connect("sqlite:$db_file");
 
-$query="CREATE TABLE 'data' ('id' INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL , 'paragraph' INTEGER, 'language' TEXT, 'anchor' TEXT, 'text' TEXT, 'author' TEXT, 'editor' TEXT, 'revision' TEXT, 'edition' INTEGER, 'subver' INTEGER,'time' DATETIME DEFAULT CURRENT_TIMESTAMP)";
-    $stmt = @PDO_Execute($query);
-    if (!$stmt || ($stmt && $stmt->errorCode() != 0)) {
-        $error = PDO_ErrorInfo();
-        print_r($error[2]);
-        break;
-    }
-
-	$query="CREATE INDEX 'search' ON \"data\" (\"paragraph\",\"language\",\"author\", \"editor\", \"revision\", \"edition\", \"subver\" , \"time\" )";
-    $stmt = @PDO_Execute($query);
-    if (!$stmt || ($stmt && $stmt->errorCode() != 0)) {
-        $error = PDO_ErrorInfo();
-        print_r($error[2]);
-        $log=$log."$from, $FileName, error, $error[2] \r\n";
-    }
-
-// 打开文件并读取数据
+// 打开vri html文件并读取数据
 $pali_text_array=array();
 if(($fpPaliText=fopen($dirPaliTextBase.$xmlfile, "r"))!==FALSE){
 	while(($data=fgets($fpPaliText))!==FALSE){
@@ -87,15 +71,15 @@ if(($fpPaliText=fopen($dirPaliTextBase.$xmlfile, "r"))!==FALSE){
 else{
 	echo "can not pali text file. filename=".$dirPaliTextBase.$xmlfile;
 }
+
 $inputRow=0;
 if(($fp=fopen($dirXmlBase.$dirXml.$outputFileNameHead."_pali.csv", "r"))!==FALSE){
-	while(($data=fgetcsv($fp,0,','))!==FALSE){
+	while(($data=fgetcsv($fp , 0 , ',' )) !== FALSE ){
 		if($inputRow>0){
 		if(($inputRow-1)<count($pali_text_array)){
-			$data[6]=$pali_text_array[$inputRow-1];
+			$data[5]=$pali_text_array[$inputRow-1];
 		}
-		$params=$data;
-		$arrInserString[count($arrInserString)]=$params;
+		$arrInserString[]=$data;
 		}
 		$inputRow++;
 	}
@@ -113,10 +97,16 @@ $log=$log."$from, $FileName,error,文件行数不匹配 inputRow=$inputRow pali_
 // 开始一个事务,关闭自动提交
 $PDO->beginTransaction();
 
-$query="INSERT INTO data ('id','paragraph','language','anchor','text','author','editor','revision','edition','subver') VALUES (NULL,?,?,?,?,?,?,?,?,?)";
+$query="INSERT INTO pali_text ('id', 'book','paragraph','level','class','toc','text','html','lenght') VALUES (NULL, ? , ? , ? , ? , ? , ? , ?,? )";
 $stmt = $PDO->prepare($query);
 foreach($arrInserString as $oneParam){
-	$newData=array($oneParam[2],"pali","",$oneParam[6],"PCSD","PCSD","","1","0");
+	if($oneParam[3]<100){
+		$toc = $oneParam[6];
+	}
+	else{
+		$toc = "";
+	}
+	$newData=array($from+1, $oneParam[2], $oneParam[3], $oneParam[4], $toc , $oneParam[6], $oneParam[5], mb_strlen($oneParam[6],"UTF-8"));
 	$stmt->execute($newData);
 }
 // 提交更改 

+ 4 - 8
app/install/db_insert_sentence.php

@@ -9,7 +9,8 @@
 <?php
 include "./_pdo.php";
 require_once '../path.php';
-$db_file = _DIR_TEMP_."/pali_sent.db3";
+
+$db_file =_FILE_DB_PALI_SENTENCE_;
 $thisfile = '.'.mb_substr(__FILE__,mb_strlen(__DIR__));
 if(isset($_GET["from"])==false){
 ?>
@@ -19,12 +20,7 @@ To: <input type="text" value="216" name="to"><br>
 <input type="submit">
 </form>
 <?php
-if(file_exists($db_file)){
-	if(!unlink($db_file)){
-		echo "error: can not delete file "._DIR_TEMP_."/pali_sent.db3";
-		return;
-	}
-}
+
 		PDO_Connect("sqlite:$db_file");
 
 		
@@ -79,7 +75,7 @@ $FileName=$filelist[$from][1].".htm";
 $fileId=$filelist[$from][0];
 $fileId=$filelist[$from][0];
 
-$dirLog="log/";
+$dirLog=_DIR_LOG_."/";
 
 $dirDb="db/";
 $inputFileName=$FileName;

+ 1 - 1
app/install/db_insert_toc.php

@@ -36,7 +36,7 @@ $FileName=$filelist[$from][1].".htm";
 $fileId=$filelist[$from][0];
 $fileId=$filelist[$from][0];
 
-$dirLog="log/";
+$dirLog=_DIR_LOG_."/";
 
 $dirDb="db/";
 $inputFileName=$FileName;

+ 5 - 5
app/install/db_update_palitext.php

@@ -10,8 +10,8 @@ include "../public/_pdo.php";
 if(isset($_GET["from"])==false){
 ?>
 <form action="db_update_palitext.php" method="get">
-From: <input type="text" name="from"><br>
-To: <input type="text" name="to"><br>
+From: <input type="text" name="from" value="0"><br> 
+To: <input type="text" name="to" value="216"><br>
 <input type="submit">
 </form>
 <?php
@@ -36,9 +36,9 @@ $FileName=$filelist[$from][1].".htm";
 $fileId=$filelist[$from][0];
 $fileId=$filelist[$from][0];
 
-$dirLog="log/";
+$dirLog=_DIR_LOG_."/";
 
-$dirDb="db/";
+$dirDb="/";
 $inputFileName=$FileName;
 $outputFileNameHead=$filelist[$from][1];
 $bookId=$filelist[$from][2];
@@ -103,7 +103,7 @@ echo $query;
 $Fetch_old = PDO_FetchAll($query);
 
 
-$db_file = $dirDb.'pali_text.db3';
+$db_file =_FILE_DB_PALITEXT_;
 PDO_Connect("sqlite:$db_file");
 // 开始一个事务,关闭自动提交
 $PDO->beginTransaction();

+ 1 - 1
app/install/getbookname.php

@@ -23,7 +23,7 @@ if(($handle=fopen("filelist.csv",'r'))!==FALSE){
 		$FileName=$htmlFileName[1].".htm";
 		$fileId=$htmlFileName[0];
 
-		$dirLog="log/";
+		$dirLog=_DIR_LOG_."/";
 		$dirHtml="pali/";
 		$inputFileName=$dirHtml.$FileName;
 

+ 63 - 0
app/install/nav_bar.php

@@ -0,0 +1,63 @@
+<style>
+.card {
+    box-shadow: 0 0 10px rgba(0,0,0,0.15);
+    font-size: 1em;
+    line-height: 1.3;
+    margin:1em;
+    padding:1em;
+    max-width:60em;
+    margin-left:auto;
+    margin-right:auto;
+}
+.nav_card{
+    margin-left:1em;
+    margin-right:1em;
+    flex:1;
+}
+</style>
+
+<div style="display:flex;">
+
+<div class="card nav_card">
+    <h3>欢迎</h3>
+    <div class="content">
+    开始安装PCD Suite
+    </div>
+</div>
+
+<div id = "step1" class="card nav_card">
+    <h3>1.建立目录</h3>
+    <div class="content">
+   
+    </div>
+</div>
+
+<div  id = "step2" class="card nav_card">
+    <h3>2-用户数据存储库</h3>
+    <div class="content">
+    
+    </div>
+</div>
+
+<div  id = "step3" class="card nav_card">
+    <h3>3-字典数据库</h3>
+    <div class="content">
+    
+    </div>
+</div>
+
+<div  id = "step4" class="card nav_card">
+    <h3>4-语料库数据库文件</h3>
+    <div class="content">
+    
+    </div>
+</div>
+
+<div  id = "step5" class="card nav_card">
+    <h3>建立三藏语料数据库</h3>
+    <div class="content">
+    Build Pali Canon Database
+    </div>
+</div>
+
+</div>

+ 27 - 0
app/install/palicanon_db/pali_sent.sql

@@ -0,0 +1,27 @@
+--
+-- 由SQLiteStudio v3.1.1 产生的文件 周一 8月 3 14:23:47 2020
+--
+-- 文本编码:UTF-8
+--
+PRAGMA foreign_keys = off;
+BEGIN TRANSACTION;
+
+-- 表:pali_sent
+DROP TABLE IF EXISTS pali_sent;
+
+CREATE TABLE pali_sent (
+    id        INTEGER PRIMARY KEY AUTOINCREMENT,
+    book      INTEGER,
+    paragraph INTEGER,
+    [begin]   INTEGER,
+    [end]     INTEGER,
+    length    INTEGER,
+    count     INTEGER,
+    text      TEXT,
+    real      TEXT,
+    real_en   TEXT
+);
+
+
+COMMIT TRANSACTION;
+PRAGMA foreign_keys = on;

+ 2 - 1
app/install/palicanon_db/pali_text.sql

@@ -34,7 +34,8 @@ CREATE TABLE pali_text (
     chapter_len  INTEGER,
     next_chapter INTEGER,
     prev_chapter INTEGER,
-    parent       INTEGER
+    parent       INTEGER,
+    chapter_strlen       INTEGER
 );
 
 

+ 6 - 2
app/install/readme.md

@@ -12,8 +12,12 @@ html --> A[xmlmaker.php]
   A -->f(sandhi)
   A -->g(sandhi 组分)
   B -->|db_insert_templet.php| h{模板库}
-  B --> j{单词索引}
+  B -->|db_index.php| j{单词索引}
    e --> i
    html --> i{巴利原文<br>pali_text}
-
+  j --> 总单词索引-index.db3
+  j --> 单独单词表
+  j --> 三藏单词
+  j --> 书单词索引
+  toc-手工维护 --> |升级程序|i
 ```

+ 11 - 2
app/install/step4.php

@@ -5,6 +5,14 @@ require_once '../path.php';
 <head>
 </head>
 <body>
+<style>
+#step4{
+	background-color:#f1e7a4;
+}
+</style>
+<?php
+require_once 'nav_bar.php';
+?>
 <h3>Step 4 三藏语料库</h3>
 <div style="margin:1em;background-color:#f1e7a4;">
 	生成三藏语料库
@@ -13,11 +21,12 @@ require_once '../path.php';
 <h4>生成数据库文件</h4>
 <?php
 $dbfile[]=array(_FILE_DB_BOLD_,"bold.sql");
-$dbfile[]=array(_FILE_DB_BOOK_WORD_,"bookword.sql");
 $dbfile[]=array(_FILE_DB_INDEX_,"index.sql");
-$dbfile[]=array(_FILE_DB_PALITEXT_,"pali_text.sql");
+$dbfile[]=array(_FILE_DB_BOOK_WORD_,"bookword.sql");
 $dbfile[]=array(_FILE_DB_PALI_INDEX_,"paliindex.sql");
 $dbfile[]=array(_FILE_DB_WORD_INDEX_,"wordindex.sql");
+$dbfile[]=array(_FILE_DB_PALI_SENTENCE_,"pali_sent.sql");
+$dbfile[]=array(_FILE_DB_PALITEXT_,"pali_text.sql");
 $dir="./palicanon_db/";
 
 if(isset($_GET["index"])){

+ 15 - 12
app/install/step5.php

@@ -6,17 +6,13 @@ require_once '../path.php';
 </head>
 <body>
 <style>
-.card {
-    box-shadow: 0 0 10px rgba(0,0,0,0.15);
-    font-size: 1em;
-    line-height: 1.3;
-    margin:1em;
-    padding:1em;
-    max-width:60em;
-    margin-left:auto;
-    margin-right:auto;
+#step5{
+	background-color: #f1e7a4;
 }
 </style>
+<?php
+require_once 'nav_bar.php';
+?>
 <h3>Step 4 Build Pali Canon Database 建立三藏语料数据库</h3>
 
 <div class="card" style="background-color:#f1e7a4;">
@@ -69,10 +65,17 @@ else{
 </div>
 
 <div class="card">
-<h4>黑体字数据库</h4>
-<div class="contence">
-<a href="db_insert_bold.php" target="_blank">生成</a>
+	<h4>单词索引表</h4>
+	<div class="contence">
+	<a href="db_insert_bold.php" target="_blank">生成</a>
+	</div>
 </div>
+
+<div class="card">
+	<h4>黑体字数据库</h4>
+	<div class="contence">
+	<a href="db_insert_bold.php" target="_blank">生成</a>
+	</div>
 </div>
 
 <div class="card">

+ 19 - 6
app/install/xmlmaker.php

@@ -60,7 +60,7 @@ $g_wordCounter=0;
 $arrUnWords[0]=array("id","word","type","gramma","parent","mean","note","part","partmean","cf","state","delete","tag","len");
 $g_unWordCounter=0;
 
-$arrToc[0]=array("id","book","par_num","level","class","language","title","author","editor","revision","edition","sub_ver");
+$arrToc[0]=array("id","book","par_num","level","class","title","text");
 $g_TocCounter=0;
 
 $arrUnPart[0]="word";
@@ -401,7 +401,7 @@ foreach ($values as $child)
 					$vriParNum++;
 					$wordOrder=1;
 					$g_TocCounter++;
-					$arrToc[$g_TocCounter]=array('NULL',$bookId,$vriParNum,"0",$class,"pali","","PCDS","PCDS","","1","0");					
+					$arrToc[$g_TocCounter]=array('NULL',$bookId,$vriParNum,"0",$class,"","");					
 					splitWords(getChildNodeValue($child,"value"));
 					$parBegin=true;
 					break;
@@ -415,7 +415,7 @@ foreach ($values as $child)
 					$wordOrder=1;
 					$parText=getChildNodeValue($child,"value");	
 					$g_TocCounter++;
-					$arrToc[$g_TocCounter]=array('NULL',$bookId,$vriParNum,"0",$class,"pali","","PCDS","PCDS","","1","0");
+					$arrToc[$g_TocCounter]=array('NULL',$bookId,$vriParNum,"0",$class,"","");
 					splitWords($parText);
 					$parBegin=false;
 					break;
@@ -498,8 +498,9 @@ foreach ($values as $child)
 
 //Toc
 $counter=0;
-//$fpCombinToc=fopen($dirDbBase."combin_toc.csv", "a");
-
+if(($fptitle=fopen($dirXmlBase.$dirXml."/".($from+1)."_title.csv", "w")) === FALSE){
+	echo "error: can not open output file toc .";
+}
 if(($fp=fopen($dirXmlBase.$dirXml.$outputFileNameHead."_toc.csv", "w"))!==FALSE){
 	$fpPaliText=fopen($dirXmlBase.$dirXml.$outputFileNameHead."_pali.csv", "w");
 	foreach($arrToc as $xWord){
@@ -507,31 +508,42 @@ if(($fp=fopen($dirXmlBase.$dirXml.$outputFileNameHead."_toc.csv", "w"))!==FALSE)
 		switch($xWord[4]){
 			case "book":
 				$xWord[3]=1;
+				$xPali[3] = 1;
 				break;
 			case "chapter":
 				$xWord[3]=2;
+				$xPali[3] = 2;
 				break;
 			case "title":
 				$xWord[3]=3;
+				$xPali[3] = 3;
 				break;
 			case "subhead":
 				$xWord[3]=4;
+				$xPali[3] = 4;
 				break;
 			case "subsubhead":
 				$xWord[3]=5;
+				$xPali[3] = 5;
 				break;
 			case "hangnum":
 				$xWord[3]=8;
+				$xPali[3] = 8;
 				break;
 			default:
-				$xWord[3]=0;
+				$xWord[3]=100;
+				$xPali[3] = 100;
 				break;
 		}
 		
+		if($xWord[3] < 100){
+			$xWord[5] = $xWord[6];
+		}
 		
 		
 		fputcsv($fpPaliText,$xPali);
 		fputcsv($fp,$xWord);
+		fputcsv($fptitle,$xWord);
 		if($counter>0){
 			//fputcsv($fpCombinToc,$xWord);
 		}
@@ -540,6 +552,7 @@ if(($fp=fopen($dirXmlBase.$dirXml.$outputFileNameHead."_toc.csv", "w"))!==FALSE)
 	}
 	fclose($fpPaliText);
 	fclose($fp);
+	fclose($fptitle);
 	//fclose($fpCombinToc);
 	echo "TOC 表导出到:".$dirXmlBase.$dirXml.$outputFileNameHead."_toc.csv<br>";
 }

+ 0 - 217
loginsert_bold.log

@@ -1,217 +0,0 @@
-0,e0601n.nrf.htm,open
-1,e0602n.nrf.htm,open
-2,e0603n.nrf.htm,open
-3,e0604n.nrf.htm,open
-4,e0605n.nrf.htm,open
-5,e0606n.nrf.htm,open
-6,e0607n.nrf.htm,open
-7,e0608n.nrf.htm,open
-8,e0810n.nrf.htm,open
-9,e0811n.nrf.htm,open
-10,e0812n.nrf.htm,open
-11,e0813n.nrf.htm,open
-12,e0801n.nrf.htm,open
-13,e0802n.nrf.htm,open
-14,e0803n.nrf.htm,open
-15,e0804n.nrf.htm,open
-16,e0805n.nrf.htm,open
-17,e0806n.nrf.htm,open
-18,e0807n.nrf.htm,open
-19,e0808n.nrf.htm,open
-20,e0809n.nrf.htm,open
-21,e0201n.nrf.htm,open
-22,e0301n.nrf.htm,open
-23,e0401n.nrf.htm,open
-24,e0501n.nrf.htm,open
-25,e1010n.nrf.htm,open
-26,e1001n.nrf.htm,open
-27,e1002n.nrf.htm,open
-28,e1003n.nrf.htm,open
-29,e1004n.nrf.htm,open
-30,e1005n.nrf.htm,open
-31,e1006n.nrf.htm,open
-32,e1007n.nrf.htm,open
-33,e1008n.nrf.htm,open
-34,e1009n.nrf.htm,open
-35,e1101n.nrf.htm,open
-36,e1102n.nrf.htm,open
-37,e1103n.nrf.htm,open
-38,e0901n.nrf.htm,open
-39,e0902n.nrf.htm,open
-40,e0903n.nrf.htm,open
-41,e0904n.nrf.htm,open
-42,e0905n.nrf.htm,open
-43,e0906n.nrf.htm,open
-44,e0907n.nrf.htm,open
-45,e1210n.nrf.htm,open
-46,e1211n.nrf.htm,open
-47,e1212n.nrf.htm,open
-48,e1213n.nrf.htm,open
-49,e1214n.nrf.htm,open
-50,e1215n.nrf.htm,open
-51,e1201n.nrf.htm,open
-52,e1202n.nrf.htm,open
-53,e1203n.nrf.htm,open
-54,e1204n.nrf.htm,open
-55,e1205n.nrf.htm,open
-56,e1206n.nrf.htm,open
-57,e1207n.nrf.htm,open
-58,e1208n.nrf.htm,open
-59,e1209n.nrf.htm,open
-60,e0701n.nrf.htm,open
-61,e0702n.nrf.htm,open
-62,e0703n.nrf.htm,open
-63,e0101n.mul.htm,open
-64,e0102n.mul.htm,open
-65,e0103n.att.htm,open
-66,e0104n.att.htm,open
-67,e0105n.nrf.htm,open
-68,abh03m8.mul.htm,open
-69,abh03m9.mul.htm,open
-70,abh03m10.mul.htm,open
-71,abh03m11.mul.htm,open
-72,abh01m.mul.htm,open
-73,abh02m.mul.htm,open
-74,abh03m1.mul.htm,open
-75,abh03m2.mul.htm,open
-76,abh03m3.mul.htm,open
-77,abh03m4.mul.htm,open
-78,abh03m5.mul.htm,open
-79,abh03m6.mul.htm,open
-80,abh03m7.mul.htm,open
-81,s0404m3.mul.htm,open
-82,s0404m4.mul.htm,open
-83,s0401m.mul.htm,open
-84,s0402m1.mul.htm,open
-85,s0402m2.mul.htm,open
-86,s0402m3.mul.htm,open
-87,s0403m1.mul.htm,open
-88,s0403m2.mul.htm,open
-89,s0403m3.mul.htm,open
-90,s0404m1.mul.htm,open
-91,s0404m2.mul.htm,open
-92,s0101m.mul.htm,open
-93,s0102m.mul.htm,open
-94,s0103m.mul.htm,open
-95,abh01a.att.htm,open
-96,abh02a.att.htm,open
-97,abh03a.att.htm,open
-98,s0401a.att.htm,open
-99,s0402a.att.htm,open
-100,s0403a.att.htm,open
-101,s0404a.att.htm,open
-102,s0101a.att.htm,open
-103,s0102a.att.htm,open
-104,s0103a.att.htm,open
-105,s0509a.att.htm,open
-106,s0510a.att.htm,open
-107,s0511a.att.htm,open
-108,s0512a.att.htm,open
-109,s0513a1.att.htm,open
-110,s0513a2.att.htm,open
-111,s0513a3.att.htm,open
-112,s0513a4.att.htm,open
-113,s0514a1.att.htm,open
-114,s0514a2.att.htm,open
-115,s0501a.att.htm,open
-116,s0514a3.att.htm,open
-117,s0515a.att.htm,open
-118,s0516a.att.htm,open
-119,s0517a.att.htm,open
-120,s0519a.att.htm,open
-121,s0502a.att.htm,open
-122,s0503a.att.htm,open
-123,s0504a.att.htm,open
-124,s0505a.att.htm,open
-125,s0506a.att.htm,open
-126,s0507a.att.htm,open
-127,s0508a1.att.htm,open
-128,s0508a2.att.htm,open
-129,s0201a.att.htm,open
-130,s0202a.att.htm,open
-131,s0203a.att.htm,open
-132,s0301a.att.htm,open
-133,s0302a.att.htm,open
-134,s0303a.att.htm,open
-135,s0304a.att.htm,open
-136,s0305a.att.htm,open
-137,vin01a.att.htm,open
-138,vin02a1.att.htm,open
-139,vin02a2.att.htm,open
-140,vin02a3.att.htm,open
-141,vin02a4.att.htm,open
-142,s0510m1.mul.htm,open
-143,s0510m2.mul.htm,open
-144,s0511m.mul.htm,open
-145,s0512m.mul.htm,open
-146,s0514m.mul.htm,open
-147,s0513m.mul.htm,open
-148,s0515m.mul.htm,open
-149,s0516m.mul.htm,open
-150,s0517m.mul.htm,open
-151,s0518m.nrf.htm,open
-152,s0519m.mul.htm,open
-153,s0501m.mul.htm,open
-154,s0520m.nrf.htm,open
-155,s0502m.mul.htm,open
-156,s0503m.mul.htm,open
-157,s0504m.mul.htm,open
-158,s0505m.mul.htm,open
-159,s0506m.mul.htm,open
-160,s0507m.mul.htm,open
-161,s0508m.mul.htm,open
-162,s0509m.mul.htm,open
-163,s0201m.mul.htm,open
-164,s0202m.mul.htm,open
-165,s0203m.mul.htm,open
-166,s0301m.mul.htm,open
-167,s0302m.mul.htm,open
-168,s0303m.mul.htm,open
-169,s0304m.mul.htm,open
-170,s0305m.mul.htm,open
-171,abh01t.tik.htm,open
-172,abh02t.tik.htm,open
-173,abh03t.tik.htm,open
-174,abh04t.nrf.htm,open
-175,abh05t.nrf.htm,open
-176,abh06t.nrf.htm,open
-177,abh07t.nrf.htm,open
-178,abh08t.nrf.htm,open
-179,abh09t.nrf.htm,open
-180,s0401t.tik.htm,open
-181,s0402t.tik.htm,open
-182,s0403t.tik.htm,open
-183,s0404t.tik.htm,open
-184,s0101t.tik.htm,open
-185,s0102t.tik.htm,open
-186,s0103t.tik.htm,open
-187,s0104t.nrf.htm,open
-188,s0105t.nrf.htm,open
-189,s0519t.tik.htm,open
-190,s0501t.nrf.htm,open
-191,s0201t.tik.htm,open
-192,s0202t.tik.htm,open
-193,s0203t.tik.htm,open
-194,s0301t.tik.htm,open
-195,s0302t.tik.htm,open
-196,s0303t.tik.htm,open
-197,s0304t.tik.htm,open
-198,s0305t.tik.htm,open
-199,vin10t.nrf.htm,open
-200,vin11t.nrf.htm,open
-201,vin12t.nrf.htm,open
-202,vin13t.nrf.htm,open
-203,vin01t1.tik.htm,open
-204,vin01t2.tik.htm,open
-205,vin02t.tik.htm,open
-206,vin04t.nrf.htm,open
-207,vin05t.nrf.htm,open
-208,vin06t.nrf.htm,open
-209,vin07t.nrf.htm,open
-210,vin08t.nrf.htm,open
-211,vin09t.nrf.htm,open
-212,vin01m.mul.htm,open
-213,vin02m1.mul.htm,open
-214,vin02m2.mul.htm,open
-215,vin02m3.mul.htm,open
-216,vin02m4.mul.htm,open

+ 0 - 434
loginsert_db.log

@@ -1,434 +0,0 @@
-0,e0601n.nrf.htm,open
-1,e0602n.nrf.htm,open
-2,e0603n.nrf.htm,open
-3,e0604n.nrf.htm,open
-4,e0605n.nrf.htm,open
-5,e0606n.nrf.htm,open
-6,e0607n.nrf.htm,open
-7,e0608n.nrf.htm,open
-8,e0810n.nrf.htm,open
-9,e0811n.nrf.htm,open
-10,e0812n.nrf.htm,open
-11,e0813n.nrf.htm,open
-12,e0801n.nrf.htm,open
-13,e0802n.nrf.htm,open
-14,e0803n.nrf.htm,open
-15,e0804n.nrf.htm,open
-16,e0805n.nrf.htm,open
-17,e0806n.nrf.htm,open
-18,e0807n.nrf.htm,open
-19,e0808n.nrf.htm,open
-20,e0809n.nrf.htm,open
-21,e0201n.nrf.htm,open
-22,e0301n.nrf.htm,open
-23,e0401n.nrf.htm,open
-24,e0501n.nrf.htm,open
-25,e1010n.nrf.htm,open
-26,e1001n.nrf.htm,open
-27,e1002n.nrf.htm,open
-28,e1003n.nrf.htm,open
-29,e1004n.nrf.htm,open
-30,e1005n.nrf.htm,open
-31,e1006n.nrf.htm,open
-32,e1007n.nrf.htm,open
-33,e1008n.nrf.htm,open
-34,e1009n.nrf.htm,open
-35,e1101n.nrf.htm,open
-36,e1102n.nrf.htm,open
-37,e1103n.nrf.htm,open
-38,e0901n.nrf.htm,open
-39,e0902n.nrf.htm,open
-40,e0903n.nrf.htm,open
-41,e0904n.nrf.htm,open
-42,e0905n.nrf.htm,open
-43,e0906n.nrf.htm,open
-44,e0907n.nrf.htm,open
-45,e1210n.nrf.htm,open
-46,e1211n.nrf.htm,open
-47,e1212n.nrf.htm,open
-48,e1213n.nrf.htm,open
-49,e1214n.nrf.htm,open
-50,e1215n.nrf.htm,open
-51,e1201n.nrf.htm,open
-52,e1202n.nrf.htm,open
-53,e1203n.nrf.htm,open
-54,e1204n.nrf.htm,open
-55,e1205n.nrf.htm,open
-56,e1206n.nrf.htm,open
-57,e1207n.nrf.htm,open
-58,e1208n.nrf.htm,open
-59,e1209n.nrf.htm,open
-60,e0701n.nrf.htm,open
-61,e0702n.nrf.htm,open
-62,e0703n.nrf.htm,open
-63,e0101n.mul.htm,open
-64,e0102n.mul.htm,open
-65,e0103n.att.htm,open
-66,e0104n.att.htm,open
-67,e0105n.nrf.htm,open
-68,abh03m8.mul.htm,open
-69,abh03m9.mul.htm,open
-70,abh03m10.mul.htm,open
-71,abh03m11.mul.htm,open
-72,abh01m.mul.htm,open
-73,abh02m.mul.htm,open
-74,abh03m1.mul.htm,open
-75,abh03m2.mul.htm,open
-76,abh03m3.mul.htm,open
-77,abh03m4.mul.htm,open
-78,abh03m5.mul.htm,open
-79,abh03m6.mul.htm,open
-80,abh03m7.mul.htm,open
-81,s0404m3.mul.htm,open
-82,s0404m4.mul.htm,open
-83,s0401m.mul.htm,open
-84,s0402m1.mul.htm,open
-85,s0402m2.mul.htm,open
-86,s0402m3.mul.htm,open
-87,s0403m1.mul.htm,open
-88,s0403m2.mul.htm,open
-89,s0403m3.mul.htm,open
-90,s0404m1.mul.htm,open
-91,s0404m2.mul.htm,open
-92,s0101m.mul.htm,open
-93,s0102m.mul.htm,open
-94,s0103m.mul.htm,open
-95,abh01a.att.htm,open
-96,abh02a.att.htm,open
-97,abh03a.att.htm,open
-98,s0401a.att.htm,open
-99,s0402a.att.htm,open
-100,s0403a.att.htm,open
-101,s0404a.att.htm,open
-102,s0101a.att.htm,open
-103,s0102a.att.htm,open
-104,s0103a.att.htm,open
-105,s0509a.att.htm,open
-106,s0510a.att.htm,open
-107,s0511a.att.htm,open
-108,s0512a.att.htm,open
-109,s0513a1.att.htm,open
-110,s0513a2.att.htm,open
-111,s0513a3.att.htm,open
-112,s0513a4.att.htm,open
-113,s0514a1.att.htm,open
-114,s0514a2.att.htm,open
-115,s0501a.att.htm,open
-116,s0514a3.att.htm,open
-117,s0515a.att.htm,open
-118,s0516a.att.htm,open
-119,s0517a.att.htm,open
-120,s0519a.att.htm,open
-121,s0502a.att.htm,open
-122,s0503a.att.htm,open
-123,s0504a.att.htm,open
-124,s0505a.att.htm,open
-125,s0506a.att.htm,open
-126,s0507a.att.htm,open
-127,s0508a1.att.htm,open
-128,s0508a2.att.htm,open
-129,s0201a.att.htm,open
-130,s0202a.att.htm,open
-131,s0203a.att.htm,open
-132,s0301a.att.htm,open
-133,s0302a.att.htm,open
-134,s0303a.att.htm,open
-135,s0304a.att.htm,open
-136,s0305a.att.htm,open
-137,vin01a.att.htm,open
-138,vin02a1.att.htm,open
-139,vin02a2.att.htm,open
-140,vin02a3.att.htm,open
-141,vin02a4.att.htm,open
-142,s0510m1.mul.htm,open
-143,s0510m2.mul.htm,open
-144,s0511m.mul.htm,open
-145,s0512m.mul.htm,open
-146,s0514m.mul.htm,open
-147,s0513m.mul.htm,open
-148,s0515m.mul.htm,open
-149,s0516m.mul.htm,open
-150,s0517m.mul.htm,open
-151,s0518m.nrf.htm,open
-152,s0519m.mul.htm,open
-153,s0501m.mul.htm,open
-154,s0520m.nrf.htm,open
-155,s0502m.mul.htm,open
-156,s0503m.mul.htm,open
-157,s0504m.mul.htm,open
-158,s0505m.mul.htm,open
-159,s0506m.mul.htm,open
-160,s0507m.mul.htm,open
-161,s0508m.mul.htm,open
-162,s0509m.mul.htm,open
-163,s0201m.mul.htm,open
-164,s0202m.mul.htm,open
-165,s0203m.mul.htm,open
-166,s0301m.mul.htm,open
-167,s0302m.mul.htm,open
-168,s0303m.mul.htm,open
-169,s0304m.mul.htm,open
-170,s0305m.mul.htm,open
-171,abh01t.tik.htm,open
-172,abh02t.tik.htm,open
-173,abh03t.tik.htm,open
-174,abh04t.nrf.htm,open
-175,abh05t.nrf.htm,open
-176,abh06t.nrf.htm,open
-177,abh07t.nrf.htm,open
-178,abh08t.nrf.htm,open
-179,abh09t.nrf.htm,open
-180,s0401t.tik.htm,open
-181,s0402t.tik.htm,open
-182,s0403t.tik.htm,open
-183,s0404t.tik.htm,open
-184,s0101t.tik.htm,open
-185,s0102t.tik.htm,open
-186,s0103t.tik.htm,open
-187,s0104t.nrf.htm,open
-188,s0105t.nrf.htm,open
-189,s0519t.tik.htm,open
-190,s0501t.nrf.htm,open
-191,s0201t.tik.htm,open
-192,s0202t.tik.htm,open
-193,s0203t.tik.htm,open
-194,s0301t.tik.htm,open
-195,s0302t.tik.htm,open
-196,s0303t.tik.htm,open
-197,s0304t.tik.htm,open
-198,s0305t.tik.htm,open
-199,vin10t.nrf.htm,open
-200,vin11t.nrf.htm,open
-201,vin12t.nrf.htm,open
-202,vin13t.nrf.htm,open
-203,vin01t1.tik.htm,open
-204,vin01t2.tik.htm,open
-205,vin02t.tik.htm,open
-206,vin04t.nrf.htm,open
-207,vin05t.nrf.htm,open
-208,vin06t.nrf.htm,open
-209,vin07t.nrf.htm,open
-210,vin08t.nrf.htm,open
-211,vin09t.nrf.htm,open
-212,vin01m.mul.htm,open
-213,vin02m1.mul.htm,open
-214,vin02m2.mul.htm,open
-215,vin02m3.mul.htm,open
-216,vin02m4.mul.htm,open
-0,e0601n.nrf.htm,open
-1,e0602n.nrf.htm,open
-2,e0603n.nrf.htm,open
-3,e0604n.nrf.htm,open
-4,e0605n.nrf.htm,open
-5,e0606n.nrf.htm,open
-6,e0607n.nrf.htm,open
-7,e0608n.nrf.htm,open
-8,e0810n.nrf.htm,open
-9,e0811n.nrf.htm,open
-10,e0812n.nrf.htm,open
-11,e0813n.nrf.htm,open
-12,e0801n.nrf.htm,open
-13,e0802n.nrf.htm,open
-14,e0803n.nrf.htm,open
-15,e0804n.nrf.htm,open
-16,e0805n.nrf.htm,open
-17,e0806n.nrf.htm,open
-18,e0807n.nrf.htm,open
-19,e0808n.nrf.htm,open
-20,e0809n.nrf.htm,open
-21,e0201n.nrf.htm,open
-22,e0301n.nrf.htm,open
-23,e0401n.nrf.htm,open
-24,e0501n.nrf.htm,open
-25,e1010n.nrf.htm,open
-26,e1001n.nrf.htm,open
-27,e1002n.nrf.htm,open
-28,e1003n.nrf.htm,open
-29,e1004n.nrf.htm,open
-30,e1005n.nrf.htm,open
-31,e1006n.nrf.htm,open
-32,e1007n.nrf.htm,open
-33,e1008n.nrf.htm,open
-34,e1009n.nrf.htm,open
-35,e1101n.nrf.htm,open
-36,e1102n.nrf.htm,open
-37,e1103n.nrf.htm,open
-38,e0901n.nrf.htm,open
-39,e0902n.nrf.htm,open
-40,e0903n.nrf.htm,open
-41,e0904n.nrf.htm,open
-42,e0905n.nrf.htm,open
-43,e0906n.nrf.htm,open
-44,e0907n.nrf.htm,open
-45,e1210n.nrf.htm,open
-46,e1211n.nrf.htm,open
-47,e1212n.nrf.htm,open
-48,e1213n.nrf.htm,open
-49,e1214n.nrf.htm,open
-50,e1215n.nrf.htm,open
-51,e1201n.nrf.htm,open
-52,e1202n.nrf.htm,open
-53,e1203n.nrf.htm,open
-54,e1204n.nrf.htm,open
-55,e1205n.nrf.htm,open
-56,e1206n.nrf.htm,open
-57,e1207n.nrf.htm,open
-58,e1208n.nrf.htm,open
-59,e1209n.nrf.htm,open
-60,e0701n.nrf.htm,open
-61,e0702n.nrf.htm,open
-62,e0703n.nrf.htm,open
-63,e0101n.mul.htm,open
-64,e0102n.mul.htm,open
-65,e0103n.att.htm,open
-66,e0104n.att.htm,open
-67,e0105n.nrf.htm,open
-68,abh03m8.mul.htm,open
-69,abh03m9.mul.htm,open
-70,abh03m10.mul.htm,open
-71,abh03m11.mul.htm,open
-72,abh01m.mul.htm,open
-73,abh02m.mul.htm,open
-74,abh03m1.mul.htm,open
-75,abh03m2.mul.htm,open
-76,abh03m3.mul.htm,open
-77,abh03m4.mul.htm,open
-78,abh03m5.mul.htm,open
-79,abh03m6.mul.htm,open
-80,abh03m7.mul.htm,open
-81,s0404m3.mul.htm,open
-82,s0404m4.mul.htm,open
-83,s0401m.mul.htm,open
-84,s0402m1.mul.htm,open
-85,s0402m2.mul.htm,open
-86,s0402m3.mul.htm,open
-87,s0403m1.mul.htm,open
-88,s0403m2.mul.htm,open
-89,s0403m3.mul.htm,open
-90,s0404m1.mul.htm,open
-91,s0404m2.mul.htm,open
-92,s0101m.mul.htm,open
-93,s0102m.mul.htm,open
-94,s0103m.mul.htm,open
-95,abh01a.att.htm,open
-96,abh02a.att.htm,open
-97,abh03a.att.htm,open
-98,s0401a.att.htm,open
-99,s0402a.att.htm,open
-100,s0403a.att.htm,open
-101,s0404a.att.htm,open
-102,s0101a.att.htm,open
-103,s0102a.att.htm,open
-104,s0103a.att.htm,open
-105,s0509a.att.htm,open
-106,s0510a.att.htm,open
-107,s0511a.att.htm,open
-108,s0512a.att.htm,open
-109,s0513a1.att.htm,open
-110,s0513a2.att.htm,open
-111,s0513a3.att.htm,open
-112,s0513a4.att.htm,open
-113,s0514a1.att.htm,open
-114,s0514a2.att.htm,open
-115,s0501a.att.htm,open
-116,s0514a3.att.htm,open
-117,s0515a.att.htm,open
-118,s0516a.att.htm,open
-119,s0517a.att.htm,open
-120,s0519a.att.htm,open
-121,s0502a.att.htm,open
-122,s0503a.att.htm,open
-123,s0504a.att.htm,open
-124,s0505a.att.htm,open
-125,s0506a.att.htm,open
-126,s0507a.att.htm,open
-127,s0508a1.att.htm,open
-128,s0508a2.att.htm,open
-129,s0201a.att.htm,open
-130,s0202a.att.htm,open
-131,s0203a.att.htm,open
-132,s0301a.att.htm,open
-133,s0302a.att.htm,open
-134,s0303a.att.htm,open
-135,s0304a.att.htm,open
-136,s0305a.att.htm,open
-137,vin01a.att.htm,open
-138,vin02a1.att.htm,open
-139,vin02a2.att.htm,open
-140,vin02a3.att.htm,open
-141,vin02a4.att.htm,open
-142,s0510m1.mul.htm,open
-143,s0510m2.mul.htm,open
-144,s0511m.mul.htm,open
-145,s0512m.mul.htm,open
-146,s0514m.mul.htm,open
-147,s0513m.mul.htm,open
-148,s0515m.mul.htm,open
-149,s0516m.mul.htm,open
-150,s0517m.mul.htm,open
-151,s0518m.nrf.htm,open
-152,s0519m.mul.htm,open
-153,s0501m.mul.htm,open
-154,s0520m.nrf.htm,open
-155,s0502m.mul.htm,open
-156,s0503m.mul.htm,open
-157,s0504m.mul.htm,open
-158,s0505m.mul.htm,open
-159,s0506m.mul.htm,open
-160,s0507m.mul.htm,open
-161,s0508m.mul.htm,open
-162,s0509m.mul.htm,open
-163,s0201m.mul.htm,open
-164,s0202m.mul.htm,open
-165,s0203m.mul.htm,open
-166,s0301m.mul.htm,open
-167,s0302m.mul.htm,open
-168,s0303m.mul.htm,open
-169,s0304m.mul.htm,open
-170,s0305m.mul.htm,open
-171,abh01t.tik.htm,open
-172,abh02t.tik.htm,open
-173,abh03t.tik.htm,open
-174,abh04t.nrf.htm,open
-175,abh05t.nrf.htm,open
-176,abh06t.nrf.htm,open
-177,abh07t.nrf.htm,open
-178,abh08t.nrf.htm,open
-179,abh09t.nrf.htm,open
-180,s0401t.tik.htm,open
-181,s0402t.tik.htm,open
-182,s0403t.tik.htm,open
-183,s0404t.tik.htm,open
-184,s0101t.tik.htm,open
-185,s0102t.tik.htm,open
-186,s0103t.tik.htm,open
-187,s0104t.nrf.htm,open
-188,s0105t.nrf.htm,open
-189,s0519t.tik.htm,open
-190,s0501t.nrf.htm,open
-191,s0201t.tik.htm,open
-192,s0202t.tik.htm,open
-193,s0203t.tik.htm,open
-194,s0301t.tik.htm,open
-195,s0302t.tik.htm,open
-196,s0303t.tik.htm,open
-197,s0304t.tik.htm,open
-198,s0305t.tik.htm,open
-199,vin10t.nrf.htm,open
-200,vin11t.nrf.htm,open
-201,vin12t.nrf.htm,open
-202,vin13t.nrf.htm,open
-203,vin01t1.tik.htm,open
-204,vin01t2.tik.htm,open
-205,vin02t.tik.htm,open
-206,vin04t.nrf.htm,open
-207,vin05t.nrf.htm,open
-208,vin06t.nrf.htm,open
-209,vin07t.nrf.htm,open
-210,vin08t.nrf.htm,open
-211,vin09t.nrf.htm,open
-212,vin01m.mul.htm,open
-213,vin02m1.mul.htm,open
-214,vin02m2.mul.htm,open
-215,vin02m3.mul.htm,open
-216,vin02m4.mul.htm,open