-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
9 changed files
with
261 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Auto detect text files and perform LF normalization | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# invoke rewrite engine | ||
RewriteEngine On | ||
RewriteBase / | ||
|
||
Options -Indexes | ||
<IfModule mod_negotiation.c> | ||
Options -MultiViews | ||
</IfModule> | ||
|
||
#Redirect 400,401,403,404,500 to main website | ||
ErrorDocument 400 http://opencad.io | ||
ErrorDocument 401 http://opencad.io | ||
ErrorDocument 403 http://opencad.io | ||
ErrorDocument 404 http://opencad.io | ||
ErrorDocument 500 http://opencad.io |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
<meta name="description" content=""> | ||
<meta name="author" content=""> | ||
<script src="../cdn-cgi/apps/head/_fCMIjQcIulPoBmifNpLMyCCLgE.js"></script><link rel="apple-touch-icon" sizes="180x180" href="../assets/apple-touch-icon.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="../assets/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="192x192" href="../assets/android-chrome-192x192.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="../assets/favicon-16x16.png"> | ||
<link rel="manifest" href="https://www.opencad.io/site.webmanifest"> | ||
<link rel="mask-icon" href="https://www.opencad.io/safari-pinned-tab.svg" color="#5bbad5"> | ||
<meta name="msapplication-TileColor" content="#2b5797"> | ||
<meta name="theme-color" content="#ffffff"> | ||
<title>OpenCAD: Downloads</title> | ||
<!-- Bootstrap core CSS --> | ||
<link rel="stylesheet" href="../bootstrap/4-0-0/css/bootstrap.min.css" anonymous"> | ||
<!-- FontAwesome CSS --> | ||
<link rel="stylesheet" href="../releases/v5-2-0/css/all.css" anonymous"> | ||
<!-- Custom styles for this template --> | ||
<link href="../css/jumbotron.css" rel="stylesheet"> | ||
</head> | ||
<body> | ||
<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark"> | ||
<a class="navbar-brand" href="#">OpenCAD</a> | ||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault" aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="navbar-toggler-icon"></span> | ||
</button> | ||
<div class="collapse navbar-collapse" id="navbarsExampleDefault"> | ||
<ul class="navbar-nav mr-auto"> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="../index_php/">Home</a> | ||
</li> | ||
<li class="nav-item active"> | ||
<a class="nav-link" href="../download/">Download <span class="sr-only">(current)</span></a> | ||
</li> | ||
</ul> | ||
<div class="my-2 my-lg-0"> | ||
<a href="http://discord.io/opencad" rel="nofollow"><i class="fab fa-discord fa-sm blackiconcolor" style="color:gray;"></i></a> | ||
<a href="https://github.com/StormlightTech/OpenCAD-php" rel="nofollow"><i class="fab fa-github fa-sm blackiconcolor" style="color:gray;"></i></a> | ||
<a href="https://gitlab.com/opencad/opencad-php" rel="nofollow"><i class="fab fa-gitlab fa-sm blackiconcolor" style="color:gray;"></i></a> | ||
</div> | ||
</div> | ||
</nav> | ||
<main role="main"> | ||
<div class="container"> | ||
<!-- Example row of columns --> | ||
<div class="row"> | ||
<div class="col-md-4"> | ||
<h2>Stable Release (Recommended)</h2> | ||
<div class="markdown-body"> | ||
<p>Release Version: 0.2.2.8</p> | ||
<p><strong>Bug</strong></p> | ||
<ul> | ||
<li>[<a href="../jira_subdomain/browse/OCPHP-365/">OCPHP-365</a>] - Fixed vairous associated A_I absences..</li> | ||
</ul> | ||
<p><a class="btn btn-secondary" role="button" href="https://api.github.com/repos/StormlightTech/OpenCAD-php/tarball/0.2.2.8">Download Release »</a></p> | ||
</div> | ||
<div class="col-md-4"> | ||
<h2>Development Build</h2> | ||
<p>We are currently not showing developmental releases on our site.<br>If needed, you can get this release directly from Bitbucket.</p> | ||
</div> | ||
</div> | ||
<hr/> | ||
</div> <!-- /container --> | ||
</main> | ||
<footer class="container"> | ||
<p>© OpenCAD 2017-2018</p> | ||
</footer> | ||
<!-- Bootstrap core JavaScript | ||
================================================== --> | ||
<!-- Placed at the end of the document so the pages load faster --> | ||
<script src="../jquery-3.3.1.slim.min.js" anonymous"></script> | ||
<script src="../ajax/libs/popper-js/1-14-0/umd/popper.min.js" anonymous"></script> | ||
<script src="../bootstrap/4-1-0/js/bootstrap.min.js" anonymous"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?xml version="1.0"?> | ||
<pagescount> | ||
<html_total>238</html_total> | ||
<html_done>114</html_done> | ||
<img>15</img> | ||
<js>35</js> | ||
<css>16</css> | ||
<pdf/> | ||
<doc/> | ||
<xls/> | ||
<ppt/> | ||
<swf/> | ||
<mp3/> | ||
<mp4/> | ||
<xml/> | ||
<json/> | ||
<txt>4</txt> | ||
<fonts>17</fonts> | ||
<scraping_reload>1</scraping_reload> | ||
<is_pretty_url>true</is_pretty_url> | ||
<is_ebn>false</is_ebn> | ||
<email>[email protected]</email> | ||
<theme_name>q70h4czkv2uobfevsbedo120965</theme_name> | ||
<server_url_front_page>https://www.waybackmachinedownloader.com/scraping/files/live/opencad.io_michael_spears.io_tmksbrw497/</server_url_front_page> | ||
<no_www_url>opencad.io</no_www_url> | ||
<hosted_domain/> | ||
<original_archive_url>https://web.archive.org/web/20200508120408/https://opencad.io/</original_archive_url> | ||
<final_archive_url>https://web.archive.org/web/20200508120408/https://opencad.io/</final_archive_url> | ||
<front_page_code_date>20200508120408</front_page_code_date> | ||
<total_urls_from_api/> | ||
<max_reached_live>level</max_reached_live> | ||
<scrape_other_captures>search_ended</scrape_other_captures> | ||
<total_size>12432</total_size> | ||
</pagescount> |
Oops, something went wrong.