Customize file index, add meta viewport
This commit is contained in:
		
							parent
							
								
									73eaee7c6d
								
							
						
					
					
						commit
						def456d7e2
					
				
							
								
								
									
										24
									
								
								Copy.HC
									
									
									
									
									
								
							
							
						
						
									
										24
									
								
								Copy.HC
									
									
									
									
									
								
							| @ -2,13 +2,13 @@ | ||||
| 
 | ||||
| U8 *FilenameToURL(U8 *filename, I64 line) | ||||
| { | ||||
|   filename[StrLen(filename) - 2] = NULL; | ||||
|   filename[StrLen(filename) - 2] = NULL; | ||||
| 
 | ||||
|   U8 *htmlext = ""; | ||||
|   if (StrMatch(".DD", filename)) | ||||
|     htmlext = ".HTML"; | ||||
| 
 | ||||
|   return MStrPrint("/src%s%s#l%d", filename + 2, htmlext, line); | ||||
|   return MStrPrint("/Wb%s%s#l%d", filename + 2, htmlext, line); | ||||
| } | ||||
| 
 | ||||
| U8 *LinkCvt(U8 *link_st) | ||||
| @ -48,22 +48,27 @@ U8 *LinkCvt(U8 *link_st) | ||||
| } | ||||
| 
 | ||||
| CDirEntry *start_entry = FilesFind( | ||||
|   "/*.HC.Z;*.DD.Z;!/Home/*", | ||||
|   "/*.HC.Z;*/.HH.Z;*.DD.Z;!/Home/*", | ||||
|   FUF_RECURSE | FUF_JUST_FILES | ||||
| ); | ||||
| 
 | ||||
| 
 | ||||
| CDirEntry *entry = start_entry; | ||||
| 
 | ||||
| U8 *header = | ||||
| U8 *html_header = | ||||
|   "<!DOCTYPEhtml>\n" | ||||
|   "<html lang=\"en\">\n" | ||||
|   "<head>\n" | ||||
|   "<meta charset=\"UTF-8\">\n" | ||||
|   "<meta name=\"generator\" content=\"TempleOS V5.03\">\n" | ||||
|   "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n" | ||||
|   "<link rel=\"stylesheet\" href=\"/style/templeos.css\">\n" | ||||
|   "<script src=\"/script/templeos.js\"></script>\n"; | ||||
| 
 | ||||
| U8 *body_header =  | ||||
|   "<body>\n" | ||||
|   "<pre style=\"font-family: courier, monospace; font-size: 10pt;\">\n"; | ||||
| 
 | ||||
| Del("C:/Home/Src", FALSE, TRUE); | ||||
| 
 | ||||
| do { | ||||
| @ -86,9 +91,12 @@ do { | ||||
|     ToHtml( | ||||
|       entry->full_name, | ||||
|       new_name, | ||||
|       header, | ||||
|       NULL, NULL, NULL, | ||||
|       80, TRUE, | ||||
|       html_header, | ||||
|       body_header, | ||||
|       NULL, | ||||
|       NULL, | ||||
|       80, | ||||
|       TRUE, | ||||
|       &LinkCvt, | ||||
|     ); | ||||
|   else | ||||
| @ -96,4 +104,4 @@ do { | ||||
|    | ||||
| } while (entry = entry->next); | ||||
| 
 | ||||
| DirTreeDel(start_entry); | ||||
| DirTreeDel(start_entry); | ||||
							
								
								
									
										50
									
								
								file_index.xslt
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										50
									
								
								file_index.xslt
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,50 @@ | ||||
| <?xml version="1.0" encoding="UTF-8"?> | ||||
| <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | ||||
| 	<xsl:param name="directory"/> | ||||
| 
 | ||||
|     <xsl:template match="/"> | ||||
| 		<html lang="en"> | ||||
| 			<head> | ||||
| 				<meta charset="UTF-8"/> | ||||
| 				<meta name="viewport" content="width=device-width, initial-scale=1"/> | ||||
| 				<title>TempleOS files</title> | ||||
| 				<link rel="stylesheet" href="/style/templeos.css"/> | ||||
| 			</head> | ||||
| 			<body> | ||||
| 				<pre style="font-family: courier, monospace; font-size: 10pt; width: 700px; max-width: 100%;"> | ||||
| 					<p>Index of <script>document.write(location.pathname.substr(3));</script></p> | ||||
| 
 | ||||
| 					<a href=".." style="color: #aa00aa;">..</a> | ||||
| 					<br/> | ||||
| 
 | ||||
| 					<xsl:for-each select="list/*"> | ||||
| 						<xsl:variable name="name"> | ||||
| 							<xsl:value-of select="."/> | ||||
| 						</xsl:variable> | ||||
| 
 | ||||
| 						<xsl:choose> | ||||
| 							<xsl:when test="contains($name, '.DD.HTML')"> | ||||
| 								<a href="{$name}" style="color: #5555ff;"><xsl:value-of select="substring-before($name, '.HTML')"/></a> | ||||
| 							</xsl:when> | ||||
| 
 | ||||
| 							<xsl:otherwise> | ||||
| 								<xsl:choose> | ||||
| 									<xsl:when test="contains($name, '.')"> | ||||
| 										<a href="{$name}" style="color: #5555ff;"><xsl:value-of select="."/></a> | ||||
| 									</xsl:when> | ||||
| 
 | ||||
| 									<xsl:otherwise> | ||||
| 										<a href="{$name}" style="color: #aa00aa;">+] <xsl:value-of select="."/></a> | ||||
| 									</xsl:otherwise> | ||||
| 								</xsl:choose> | ||||
| 							</xsl:otherwise> | ||||
| 						</xsl:choose> | ||||
| 
 | ||||
| 						<br/> | ||||
| 					</xsl:for-each> | ||||
| 				</pre> | ||||
| 			</body> | ||||
| 		</html> | ||||
|     </xsl:template> | ||||
| </xsl:stylesheet> | ||||
| 
 | ||||
							
								
								
									
										
											BIN
										
									
								
								public/Wb/Adam/AutoComplete/ACDefs.DATA
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/Wb/Adam/AutoComplete/ACDefs.DATA
									
									
									
									
									
										Executable file
									
								
							
										
											Binary file not shown.
										
									
								
							| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
							
								
								
									
										3169
									
								
								public/Wb/Demo/WebLogDemo/access_170622.log
									
									
									
									
									
										Executable file
									
								
							
							
						
						
									
										3169
									
								
								public/Wb/Demo/WebLogDemo/access_170622.log
									
									
									
									
									
										Executable file
									
								
							
										
											
												File diff suppressed because it is too large
												Load Diff
											
										
									
								
							| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
| @ -3,6 +3,7 @@ | ||||
| <head> | ||||
| <meta charset="UTF-8"> | ||||
| <meta name="generator" content="TempleOS V5.03"> | ||||
| <meta name="viewport" content="width=device-width, initial-scale=1"> | ||||
| <link rel="stylesheet" href="/style/templeos.css"> | ||||
| <script src="/script/templeos.js"></script> | ||||
| <style type="text/css"> | ||||
|  | ||||
Some files were not shown because too many files have changed in this diff Show More
		Loading…
	
		Reference in New Issue
	
	Block a user