Skip to content

Commit 75f3fb2

Browse files
committed
2 parents 1abd6b1 + 53424e0 commit 75f3fb2

File tree

11 files changed

+724
-536
lines changed

11 files changed

+724
-536
lines changed

404.html

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="pt-br" xmlns:fb="http://ogp.me/ns/fb#" prefix="og: https://ogp.me/ns#">
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>Range Engine</title>
7+
<meta name="description" content="Range Engine Is a Light And Powerful Game Engine And 3D Software"/>
8+
<meta property="og:type" content="website" />
9+
<meta property="og:title" content="Range Engine"/>
10+
<meta property="og:description" content="Range Engine Is a Light And Powerful Game Engine And 3D Software"/>
11+
<meta property="og:site_name" content="Range Engine"/>
12+
<meta property="og:image" content="https://rangeengine.tech//img/RanGEs.png"/>
13+
<link rel="shortcut icon" href="/img/favicon.png" type="x-png"/>
14+
</head>
15+
<body>
16+
<h1 style="text-align: center;">404 Error - Page not found</h1>
17+
</body>
18+
</html>

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
11
![](GitHub_Readme.png)
2+
23
# Range Engine Site
34
Official Range Engine Website
5+
6+
# Instructions
7+
* Open `Run_Localhost.cmd` in a text-editor and set both `PATH` & `PY_SCRIPT` variables to fit your local structure.
8+
* Run `Run_Localhost.cmd` by double-clicking it.
9+
* Go to your browser and enter `localhost` as your URL address.
10+
* If this doesn't work try `localhost:80` instead - `80` stands for port 80, which is the default port on most computers.
11+
* If the port is already being used by some other service, open `Run_Localhost.py` and modify the `PORT` variable to state a different port.

Run_Localhost.cmd

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
@echo off
2+
3+
SET PATH=python;D:\RangeEngine\2.79\python\bin
4+
SET PY_SCRIPT="Run_Localhost.py"
5+
6+
python %PY_SCRIPT%
7+
8+
pause

Run_Localhost.py

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import http.server, socketserver, subprocess
2+
3+
IP = "localhost"
4+
PORT = 80
5+
sections = ["/404", "/aboutus", "/changelog", "/downloadpage"]
6+
7+
class HTTPRequestHandler(http.server.SimpleHTTPRequestHandler):
8+
def do_GET(self):
9+
if self.path == "" or self.path == "/":
10+
self.path = "index.html"
11+
elif self.path in sections:
12+
self.path += ".html"
13+
return http.server.SimpleHTTPRequestHandler.do_GET(self)
14+
def send_error(self, code, message=False):
15+
if code == 404:
16+
self.path = "404.html"
17+
return http.server.SimpleHTTPRequestHandler.do_GET(self)
18+
19+
if __name__ == "__main__":
20+
web_server = socketserver.TCPServer((IP, PORT), HTTPRequestHandler)
21+
try:
22+
web_server.serve_forever()
23+
except KeyboardInterrupt:
24+
pass
25+
web_server.server_close()

aboutus.html

Lines changed: 110 additions & 103 deletions
Original file line numberDiff line numberDiff line change
@@ -1,105 +1,112 @@
11
<!DOCTYPE html>
22
<html lang="pt-br" xmlns:fb="http://ogp.me/ns/fb#" prefix="og: https://ogp.me/ns#">
3-
<head>
4-
<meta charset="UTF-8">
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Range Engine</title>
7-
<meta name="description" content="Range Engine Is a Light And Powerfull 3D Software"/>
8-
<meta property="og:type" content="website" />
9-
<meta property="og:title" content="Range Engine"/>
10-
<meta property="og:description" content="Range Engine Is a Light And Powerfull 3D Software"/>
11-
<meta property="og:site_name" content="Range Engine"/>
12-
<meta property="og:image" content="https://rangeengine.tech/img/RanGEs.png"/>
13-
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web&display=swap" rel="stylesheet">
14-
<link rel="stylesheet" href="css/rangecss.css"/>
15-
<link rel="shortcut icon" href="img/favicon.png" type="x-png"/>
16-
<script src="https://code.jquery.com/jquery-1.9.1.js"></script>
17-
<script src="js/responsivenav.js" defer></script>
18-
<script src="js/headercolor.js"></script>
19-
</head>
20-
<body>
21-
<header class="header">
22-
<h1 class="title"><a href="index.html"><img class="logo" src="img/RGE.png" alt="RanGELogo"/></a></h1>
23-
<a href="#" class="togglebutton">
24-
<span class="bar"></span>
25-
<span class="bar"></span>
26-
<span class="bar"></span>
27-
</a>
28-
<nav class="headerlinks">
29-
<ul class="heaul">
30-
<li class="headerlis"><a class="healinks" href="index.html">Home</a></li>
31-
<li class="headerlis"><a class="healinks" href="downloadpage.html">Download</a></li>
32-
<li class="headerlis"><a class="healinks" href="changelog.html">Changelog</a></li>
33-
<li class="headerlis"><a class="healinks" href="RangeDoc_Build/html/index.html">API</a></li>
34-
<li class="headerlis"><a class="healinks" href="aboutus.html">Learn More</a></li>
35-
<li class="headerlis"><a class="suppus" target=”_blank” href="https://www.patreon.com/user?u=62478788">Support</a></li>
36-
</ul>
37-
</nav>
38-
</header>
39-
<section class="downsec">
40-
<div class="apresentacao">
41-
<div class="sobreoprojeto">
42-
<h2><hr>What's Range Engine?<hr></h2>
43-
<p class="whatsxbge">Let Us Show You a Bit About <strong>Range Engine</strong></p>
44-
</div>
45-
</div>
46-
</section>
47-
<article>
48-
<div class="articledownload">
49-
<div class="artigoscontrib">
50-
<h3>About Range Engine:</h3>
51-
<p>Range Engine Is a Light And Powerfull 3D Software, Made Based On Blender Game Engine
52-
With Improvements From <a class="linksites" target=”_blank” href="https://upbge.org/#/">UPBGE</a>.</p>
53-
<br>
54-
<h3>Why Should I Use Range Engine?</h3>
55-
<p>Range Engine Brings a Ton Of New Features And Is Under Constant Updates That
56-
Will Make The Software Better and Updated.
57-
</p>
58-
<br>
59-
<h3>Is Range Engine Free?</h3>
60-
<p>Range Engine Is Free And Open Source, But At The Start We're Doing a Collaboration Campaign<br>
61-
On Patreon To Make RanGE Keep Updating, So Range Engine Is Only Available For Supporters At The Moment.
62-
</p>
63-
<br>
64-
<h3>Want To Clear Your Doubts?</h3>
65-
<p>Join Our Discord Server:</p>
66-
<div class="dclink">
67-
<img src="img/discord.PNG" alt="Discord Server">
68-
<br>
69-
<a class="joindc" href="https://discord.gg/PV6bAvUFq3">Join In</a>
70-
</div>
71-
<br>
72-
<br>
73-
<h3>Check Our YouTube Channel</h3>
74-
<p>More Content About RanGE</p>
75-
<br>
76-
<a class="downnow" target="_blank" href="https://www.youtube.com/channel/UCWLwYxekuvOVaMsquS3OgPg">YouTube Channel</a>
77-
</div>
78-
</div>
79-
</article>
80-
<footer>
81-
<div class="footerobjs">
82-
<div class="spanrange">
83-
<span class="ftlink">&copy; <span id="copyright-year"></span> - Range Engine</span>
84-
<script>
85-
$(document).ready(function() {
86-
document.getElementById('copyright-year').appendChild(
87-
document.createTextNode(
88-
new Date().getFullYear()
89-
)
90-
);
91-
});
92-
</script>
93-
</div>
94-
<div class="ftlinks">
95-
<ul>
96-
<li><a class="ftlink" target=”_blank” href="https://github.com/RafaelTavars/Range-Engine-Wiki/wiki/Release-notes-version-1.0">Wiki</a></li>
97-
<li><a class="ftlink" target=”_blank” href="https://www.patreon.com/user?u=62478788">Patreon</a></li>
98-
<li><a class="ftlink" target=”_blank” href="https://discord.gg/PV6bAvUFq3">Discord</a></li>
99-
<li><a class="ftlink" target=”_blank” href="https://www.youtube.com/channel/UCWLwYxekuvOVaMsquS3OgPg">YouTube</a></li>
100-
</ul>
101-
</div>
102-
</div>
103-
</footer>
104-
</body>
105-
</html>
3+
<head>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1">
6+
<title>Range Engine</title>
7+
<meta name="description" content="Range Engine Is a Light And Powerful Game Engine And 3D Software"/>
8+
<meta property="og:type" content="website" />
9+
<meta property="og:title" content="Range Engine"/>
10+
<meta property="og:description" content="Range Engine Is a Light And Powerful Game Engine And 3D Software"/>
11+
<meta property="og:site_name" content="Range Engine"/>
12+
<meta property="og:image" content="https://rangeengine.tech//img/RanGEs.png"/>
13+
<link href="https://fonts.googleapis.com/css2?family=Titillium+Web&display=swap" rel="stylesheet">
14+
<link rel="stylesheet" href="/css/rangecss.css"/>
15+
<link rel="shortcut icon" href="/img/favicon.png" type="x-png"/>
16+
<script src="https://code.jquery.com/jquery-1.9.1.js"></script>
17+
<script src="/js/responsivenav.js" defer></script>
18+
<script src="/js/headercolor.js"></script>
19+
</head>
20+
<body>
21+
<header class="header">
22+
<h1 class="title"><a href="/"><img class="logo" src="/img/RGE.png" alt="RanGELogo"/></a></h1>
23+
<a class="togglebutton">
24+
<span class="bar"></span>
25+
<span class="bar"></span>
26+
<span class="bar"></span>
27+
</a>
28+
<nav class="headerlinks">
29+
<ul class="heaul">
30+
<li class="headerlis"><a class="healinks" href="/">Home</a></li>
31+
<li class="headerlis"><a class="healinks" href="downloadpage">Download</a></li>
32+
<li class="headerlis"><a class="healinks" href="changelog">Changelog</a></li>
33+
<li class="headerlis"><a class="healinks" href="/RangeDoc_Build/html">API</a></li>
34+
<li class="headerlis"><a class="healinks" href="aboutus">Learn More</a></li>
35+
<li class="headerlis"><a class="suppus" target=”_blank” href="https://patreon.com/user?u=62478788">Support</a></li>
36+
</ul>
37+
</nav>
38+
</header>
39+
<section class="downsec">
40+
<div class="apresentacao">
41+
<div class="sobreoprojeto">
42+
<hr>
43+
<h2 class="titsece">What's Range Engine?</h2>
44+
<p class="whatsxbge">Let Us Describe a Bit About <strong>Range Engine</strong></p>
45+
<hr>
46+
</div>
47+
</div>
48+
</section>
49+
<article>
50+
<div class="articledownload">
51+
<div class="artigoschanges">
52+
<h3>About Range Engine:</h3>
53+
<p>Range Engine Is a Light And Powerful Game Engine And 3D Software, Made Based On Blender Game Engine
54+
With Improvements From <a class="linksites" target=”_blank” href="https://upbge.org">UPBGE</a>.</p>
55+
<br>
56+
<h3>Why Should I Use Range Engine?</h3>
57+
<p>Range Engine Brings a Ton Of New Features And Is Under Constant Updates That
58+
Will Make The Software Better and Updated.
59+
</p>
60+
<br>
61+
<h3>Can I Switch My UPBGE 2x Game To RanGE?</h3>
62+
<p>For Sure! RanGE Engine Is Fully Compatible With UPBGE 2x<br>
63+
(It's Recommended To Make a Backup Of Your Project<br>
64+
And Change The <strong>.blend</strong> Extension From <strong>.range</strong> Before Switch Your Project To RanGE.)</p>
65+
<br>
66+
<h3>Is Range Engine Free?</h3>
67+
<p>Range Engine Is Free And Open Source, But At The Start We're Doing a Collaboration Campaign<br>
68+
On Patreon To Make RanGE Keep Updating, So Range Engine Is Only Available For Supporters At The Moment.
69+
</p>
70+
<br>
71+
<h3>Want To Clear Your Doubts?</h3>
72+
<p>Join Our Discord Server:</p>
73+
<div class="dclink">
74+
<img src="/img/discord.PNG" alt="Discord Server">
75+
<br>
76+
<a class="joindc" href="https://discord.gg/PV6bAvUFq3">Join In</a>
77+
</div>
78+
<br>
79+
<br>
80+
<h3>Check Our YouTube Channel</h3>
81+
<p>More Content About RanGE</p>
82+
<br>
83+
<a class="downnow" target="_blank" href="https://youtube.com/channel/UCWLwYxekuvOVaMsquS3OgPg">YouTube Channel</a>
84+
</div>
85+
</div>
86+
</article>
87+
<footer>
88+
<div class="footerobjs">
89+
<div class="spanrange">
90+
<span id="no_underline" class="ftlink">&copy; <span id="copyright-year"></span> - Range Engine</span>
91+
<script>
92+
$(document).ready(function() {
93+
document.getElementById('copyright-year').appendChild(
94+
document.createTextNode(
95+
new Date().getFullYear()
96+
)
97+
);
98+
});
99+
</script>
100+
</div>
101+
<div class="ftlinks">
102+
<ul>
103+
<li><a class="ftlink" target=”_blank” href="https://github.com/rangeengine/Range-Engine-Wiki/wiki/Release-notes-version-1.0">Wiki</a></li>
104+
<li><a class="ftlink" target=”_blank” href="https://patreon.com/user?u=62478788">Patreon</a></li>
105+
<li><a class="ftlink" target=”_blank” href="https://discord.gg/PV6bAvUFq3">Discord</a></li>
106+
<li><a class="ftlink" target=”_blank” href="https://youtube.com/channel/UCWLwYxekuvOVaMsquS3OgPg">YouTube</a></li>
107+
</ul>
108+
</div>
109+
</div>
110+
</footer>
111+
</body>
112+
</html>

0 commit comments

Comments
 (0)