forked from adobe/brackets-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add error page if brackets index.html can't be found.
- Loading branch information
Showing
5 changed files
with
81 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
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,35 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" | ||
"http://www.w3.org/TR/html4/strict.dtd"> | ||
|
||
<html> | ||
<head> | ||
<style> | ||
body { | ||
font-family: helvetica, sans-serif; | ||
} | ||
li { | ||
margin-top: 5px; | ||
} | ||
.small { | ||
font-size: small; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h2>Oops! I can't find the brackets index.html file</h2> | ||
<p>The "brackets" folder that contains the HTML/CSS/JS source code for Brackets might be missing. Here are some tips for troubleshooting:</p> | ||
<ul> | ||
<li>If you downloaded Brackets from GitHub, you might have clicked the "Download as ZIP" button, which doesn't work. Instead, go to https://github.com/adobe/brackets/downloads and choose the newest ZIP file link under "Download Packages".</li> | ||
<li>If you cloned the brackets-app repo from GitHub, make sure your submodules are updated by running <br/><code>git submodule update --init --recursive</code> inside the brackets-app folder.</li> | ||
<li>Don't move the Brackets.app file out of the bin/mac directory. (We'll make this a real package eventually.)</li> | ||
<li>If all else fails, contact us at: | ||
<ul> | ||
<li>Twitter: @brackets</li> | ||
<li>IRC: #brackets on freenode</li> | ||
<li>Developer mailing list: http://groups.google.com/group/brackets-dev</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
<p class="small">Sorry about the inconvenience. We're still really early in development and haven't had time to build an installer.</p> | ||
</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
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
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,35 @@ | ||
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" | ||
"http://www.w3.org/TR/html4/strict.dtd"> | ||
|
||
<html> | ||
<head> | ||
<style> | ||
body { | ||
font-family: helvetica, sans-serif; | ||
} | ||
li { | ||
margin-top: 5px; | ||
} | ||
.small { | ||
font-size: small; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h2>Oops! I can't find the brackets index.html file</h2> | ||
<p>The "brackets" folder that contains the HTML/CSS/JS source code for Brackets might be missing. Here are some tips for troubleshooting:</p> | ||
<ul> | ||
<li>If you downloaded Brackets from GitHub, you might have clicked the "Download as ZIP" button, which doesn't work. Instead, go to https://github.com/adobe/brackets/downloads and choose the newest ZIP file link under "Download Packages".</li> | ||
<li>If you cloned the brackets-app repo from GitHub, make sure your submodules are updated by running <br/><code>git submodule update --init --recursive</code> inside the brackets-app folder.</li> | ||
<li>Don't move the Brackets.app file out of the bin/mac directory. (We'll make this a real package eventually.)</li> | ||
<li>If all else fails, contact us at: | ||
<ul> | ||
<li>Twitter: @brackets</li> | ||
<li>IRC: #brackets on freenode</li> | ||
<li>Developer mailing list: http://groups.google.com/group/brackets-dev</li> | ||
</ul> | ||
</li> | ||
</ul> | ||
<p class="small">Sorry about the inconvenience. We're still really early in development and haven't had time to build an installer.</p> | ||
</body> | ||
</html> |