소스 검색

Tidy ups for viewing docs locally via browser.

Mark Sibly 8 년 전
부모
커밋
bf156200f6
9개의 변경된 파일91개의 추가작업 그리고 8개의 파일을 삭제
  1. 1 0
      .gitignore
  2. 0 4
      docs/docs_page_template.html
  3. 0 4
      docs/docs_template.html
  4. BIN
      docs/img/Monkey2-logo-48.png
  5. BIN
      docs/img/btn_donate_SM.gif
  6. BIN
      docs/img/heart.png
  7. BIN
      docs/img/monkey2logo_32.png
  8. BIN
      docs/img/patreon_20.png
  9. 90 0
      docs/index.html

+ 1 - 0
.gitignore

@@ -36,6 +36,7 @@ __MANPAGES__/
 /modules/png2polygon
 /modules/png2polygon
 /modules/linq
 /modules/linq
 /modules/spine
 /modules/spine
+/modules/pyro-framework
 
 
 /modules/module-manager/backups
 /modules/module-manager/backups
 
 

+ 0 - 4
docs/docs_page_template.html

@@ -34,16 +34,12 @@
 
 
 <body class="docs_body">
 <body class="docs_body">
 
 
-<div class="docs_content">
-
 <!-- CONTENT -->
 <!-- CONTENT -->
 
 
 ${CONTENT}
 ${CONTENT}
 
 
 <!-- END -->
 <!-- END -->
 
 
-</div>
-
 </body>
 </body>
 
 
 </html>
 </html>

+ 0 - 4
docs/docs_template.html

@@ -50,8 +50,6 @@
 
 
 <body class="page_body">
 <body class="page_body">
 
 
-<div class="modules_content">
-
 <!-- CONTENT -->
 <!-- CONTENT -->
 
 
 <div class="modules_nav_wrapper">
 <div class="modules_nav_wrapper">
@@ -113,8 +111,6 @@ jQuery( function($){
 
 
 <!-- END -->
 <!-- END -->
 
 
-</div>
-
 </body>
 </body>
 
 
 </html>
 </html>

BIN
docs/img/Monkey2-logo-48.png


BIN
docs/img/btn_donate_SM.gif


BIN
docs/img/heart.png


BIN
docs/img/monkey2logo_32.png


BIN
docs/img/patreon_20.png


+ 90 - 0
docs/index.html

@@ -0,0 +1,90 @@
+<!doctype html>
+
+<html>
+
+<head>
+
+<title>Monkey2 Documentation</title>
+
+<link rel="stylesheet" href="js-treeview/treeview.css">
+
+<link rel="stylesheet" href="style.css">
+
+<script type="text/javascript">
+
+function navto( url ){
+	document.getElementById( 'content' ).src=url;
+	return false;
+}
+
+window.onload=function(){
+	navto( 'docs.html' );
+}
+
+</script>
+
+</head>
+
+<body class="page_body">
+
+<!-- fixed header -->
+<div class="page_header">
+
+	<span class="header_title_strip">
+
+		<span class="header_logo">
+			<a href="http://monkey2.monkey-x.com"><img src="img/monkey2logo_32.png"></a>
+		</span>
+
+		<span class="header_text">Monkey 2</span>
+		
+	</span>
+
+	<span class="header_button_strip">
+
+		<a class="header_button" href="http://monkey2.monkey-x.com">Blog</a></button>
+		<a class="header_button" href="http://monkey2.monkey-x.com/monkey2-files">Files</a>
+		<a class="header_button" href="http://monkey2.monkey-x.com/forums">Forums</a>
+		<a class="header_button" href="http://monkey2.monkey-x.com/about-monkey-2">About</a>
+	
+	</span>
+	
+	<span class="header_donate_strip">
+	
+		<form class="header_paypal" action='https://www.paypal.com/cgi-bin/webscr' method='post' target='_top'>
+			<input type='hidden' name='cmd' value='_s-xclick'>
+			<input type='hidden' name='hosted_button_id' value='SEPSTY3L7J6B6'>
+			<input type='image' class="header_paypal_button" src="img/btn_donate_SM.gif" border='0' name='submit' alt='PayPal - The safer, easier way to pay online!' style='vertical-align:middle'>
+		</form>
+	
+		<a class="header_patreon" href="https://www.patreon.com/monkey2">
+			<img src="img/patreon_20.png">
+		</a>
+
+	</span>
+
+</div>
+<!-- end header -->
+
+<div style="
+	position:relative;
+	top: 40px;
+	width:100%;
+	height: calc( 100% - 40px );
+	">
+
+<iframe id="content" name="content" href="docs.html" style="
+	display:block;
+	width:100%;
+	height:100%;
+	padding:0;
+	border:0;
+	margin:0;">
+</iframe>
+
+</div>
+	
+</body>
+
+</html>
+