Skip to content

Commit bcf157c

Browse files
committed
More HaxeDevelop stuff integrated...
1 parent c478cd6 commit bcf157c

File tree

8 files changed

+318
-6
lines changed

8 files changed

+318
-6
lines changed

CI/build.cmd

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,12 @@ if %errorlevel% neq 0 goto :error
4343

4444
:haxedevelop
4545

46-
:: Copy distro files
47-
xcopy Distros\HaxeDevelop /s /e /y
48-
4946
:: Remove bad files
5047
del FlashDevelop\Bin\Debug\FlashDevelop.exe.config
48+
del FlashDevelop\Bin\Debug\StartPage\images\*.*
49+
50+
:: Copy distro files
51+
xcopy Distros\HaxeDevelop /s /e /y
5152

5253
:: Build the PluginCore
5354
msbuild PluginCore\PluginCore.csproj /p:Configuration=Release /p:Platform=x86

CI/buildl.cmd

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,12 @@ if %errorlevel% neq 0 goto :error
4848

4949
:haxedevelop
5050

51-
:: Copy distro files
52-
xcopy Distros\HaxeDevelop /s /e /y
53-
5451
:: Remove bad files
5552
del FlashDevelop\Bin\Debug\FlashDevelop.exe.config
53+
del FlashDevelop\Bin\Debug\StartPage\images\*.*
54+
55+
:: Copy distro files
56+
xcopy Distros\HaxeDevelop /s /e /y
5657

5758
:: Build the PluginCore
5859
msbuild PluginCore\PluginCore.csproj /p:Configuration=Release /p:Platform=x86
5.98 KB
Loading
1.01 KB
Loading
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
3+
<head>
4+
<title>Start Page</title>
5+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6+
<link href="styles.css" rel="stylesheet" type="text/css" title="styles" media="all" />
7+
<script type="text/javascript" language="JavaScript" src="javascript/localization.js"></script>
8+
<script type="text/javascript" language="JavaScript" src="javascript/startpage.js"></script>
9+
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400,700,700italic,400italic" rel="stylesheet" type="text/css"/>
10+
</head>
11+
<body>
12+
<div id="tooltip"></div>
13+
<div id="wrapper">
14+
<div id="title"></div>
15+
<div id="links">
16+
<a href="javascript:window.external.ShowHome();"><script type="text/javascript">document.write(getLocaleString("mainLinkHome"));</script></a>
17+
<a href="javascript:window.external.ShowDocumentation();"><script type="text/javascript">document.write(getLocaleString("mainLinkDocs"));</script></a>
18+
<a href="javascript:window.external.ShowReleaseNotes();"><script type="text/javascript">document.write(getLocaleString("mainLinkNotes"));</script></a>
19+
<a href="javascript:window.external.ShowAbout();"><script type="text/javascript">document.write(getLocaleString("mainLinkAbout"));</script></a>
20+
</div>
21+
22+
<div class="section-gray clearfix">
23+
<div id="header">
24+
<div class="innerContent"><img src="images/haxedevelop.gif" border="0" /></div>
25+
</div>
26+
<div id="projects">
27+
<div class="innerContent">
28+
<h2>
29+
<script type="text/javascript">document.write(getLocaleString("recentProjectsTitle"));</script>
30+
</h2>
31+
<button onclick="javascript:window.external.OpenProjectDialog()" class="button">
32+
<script type="text/javascript">document.write(getLocaleString("openProjectDialog"));</script>
33+
</button>
34+
<button onclick="javascript:window.external.NewProject()" class="button">
35+
<script type="text/javascript">document.write(getLocaleString("createNewProject"));</script>
36+
</button>
37+
38+
<div id="version">
39+
<h2><script type="text/javascript">document.write(getLocaleString("versionInfoTitle"));</script></h2>
40+
<div id="versionContent">
41+
<script type="text/javascript">document.write(getLocaleString("loadingVersionInfo"));</script>
42+
</div>
43+
</div>
44+
45+
</div>
46+
</div>
47+
48+
<div id="projectslist">
49+
<div class="innerContent">
50+
<div id="projectsContent">
51+
<script type="text/javascript">document.write(getLocaleString("loadingRecentProjects"));</script>
52+
</div>
53+
</div>
54+
</div>
55+
56+
</div>
57+
<div id="news">
58+
<div class="innerContent">
59+
<h2><div id="rssTitle"></div></h2>
60+
<div id="rssContent">
61+
<script type="text/javascript">document.write(getLocaleString("loadingRssFeed"));</script>
62+
</div>
63+
</div>
64+
</div>
65+
</div>
66+
<script type="text/javascript">
67+
window.external.PageReady();
68+
</script>
69+
</body>
70+
</html>
71+
Lines changed: 239 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,239 @@
1+
html,body
2+
{
3+
width:100%;
4+
height:100%;
5+
}
6+
7+
body
8+
{
9+
background:#257fc2 url(images/pattern.png) center top;
10+
font-size:14px;
11+
font-family:"Segoe UI", "Trebuchet MS", Georgia, Arial, sans-serif;
12+
color:#fff;
13+
box-shadow:inset 0 0 50px rgba(0,0,0,0.35);
14+
margin:0;
15+
padding:0;
16+
}
17+
18+
.clearfix:after {
19+
visibility: hidden;
20+
display: block;
21+
font-size: 0;
22+
content: " ";
23+
clear: both;
24+
height: 0;
25+
}
26+
27+
* html .clearfix { zoom: 1; } /* IE6 */
28+
*:first-child+html .clearfix { zoom: 1; } /* IE7 */
29+
30+
h1,h2,h3
31+
{
32+
border-bottom:1px dashed rgba(255,255,255,.5);
33+
font-weight:400;
34+
padding:10px;
35+
margin:0 0 0 0;
36+
}
37+
38+
#header
39+
{
40+
text-align:center;
41+
}
42+
43+
#links
44+
{
45+
background:#333;
46+
padding:10px;
47+
text-align:right;
48+
}
49+
50+
#links a
51+
{
52+
color:#fff;
53+
font:normal 14px "Segoe UI", arial, sans-serif;
54+
margin-right:5px;
55+
}
56+
57+
#news
58+
{
59+
background:#fbfbfb;
60+
color:#333;
61+
}
62+
63+
.button
64+
{
65+
font-size:14px;
66+
display:inline-block;
67+
margin-right:5px;
68+
margin-bottom:5px;
69+
border-radius:3px;
70+
text-decoration:none;
71+
padding:7px 7px;
72+
}
73+
#projects .button {
74+
width:48%;
75+
}
76+
77+
#version .button {
78+
width:99%;
79+
}
80+
81+
img,a img
82+
{
83+
border:none;
84+
outline:none;
85+
}
86+
87+
a
88+
{
89+
color:#ff9;
90+
text-decoration:none;
91+
display:inline-block;
92+
}
93+
94+
a:hover
95+
{
96+
color:#ee6;
97+
text-decoration:underline;
98+
}
99+
100+
div#tooltip
101+
{
102+
top:0;
103+
left:0;
104+
z-index:2;
105+
visibility:hidden;
106+
position:absolute;
107+
background-color:#333;
108+
border:1px solid #999;
109+
padding:4px 7px 3px;
110+
color:#fff;
111+
font-size:14px;
112+
}
113+
114+
table#holder
115+
{
116+
text-align:left;
117+
position:absolute;
118+
width:100%;
119+
top:115px;
120+
padding:1px;
121+
}
122+
123+
td.holderSpacer
124+
{
125+
width:15px;
126+
}
127+
128+
td.smallWindowHolder
129+
{
130+
width:280px;
131+
}
132+
133+
div#tasksContent
134+
{
135+
padding-bottom:10px;
136+
padding-left:5px;
137+
}
138+
139+
#projectsContent li
140+
{
141+
background:#257fc2 url(images/iconProject.gif) no-repeat 9px center;
142+
display:block;
143+
padding: 5px 5px 5px 32px;
144+
margin-bottom:2px;
145+
border:1px solid #7db3db;
146+
border-radius:3px;
147+
cursor:pointer;
148+
}
149+
#projectsContent li:hover {
150+
background-color:#333;
151+
border:1px solid #b2d1e8;
152+
}
153+
154+
#rssContent li
155+
{
156+
margin:0;
157+
padding:0;
158+
}
159+
160+
.rssItemTitle
161+
{
162+
display:block;
163+
}
164+
165+
.rssItemContent
166+
{
167+
color:#111;
168+
}
169+
170+
.rssItemContent a
171+
{
172+
font-weight:700;
173+
}
174+
175+
#rssContent a
176+
{
177+
color:#257fc2;
178+
text-decoration:none;
179+
}
180+
181+
#rssContent a:hover
182+
{
183+
color:#257fc2;
184+
text-decoration:underline;
185+
}
186+
187+
188+
#social a:hover img
189+
{
190+
opacity:.8;
191+
}
192+
193+
.greyedOut
194+
{
195+
color:#ccc;
196+
}
197+
198+
.alertRed
199+
{
200+
color:red;
201+
}
202+
203+
.section-gray
204+
{
205+
background:#141419;
206+
background:#257fc2 url(images/pattern.png) center top;
207+
}
208+
209+
#header
210+
{
211+
width:33%;
212+
}
213+
214+
#projects
215+
{
216+
width:33%;
217+
}
218+
219+
#projectslist
220+
{
221+
width:33%;
222+
}
223+
224+
#projectslist, #projects, #header
225+
{
226+
float:left;
227+
}
228+
229+
.innerContent
230+
{
231+
padding:20px 10px 20px 20px;
232+
}
233+
234+
div#projectsContent ul,li,div#rssContent ul,li
235+
{
236+
list-style-type:none;
237+
margin:0;
238+
padding:0;
239+
}
73.3 KB
Loading
Binary file not shown.

0 commit comments

Comments
 (0)