-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeatures.html
221 lines (203 loc) · 5.93 KB
/
features.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="/jmu.ico" type="image/x-icon">
<title>Praxly: Features</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 20px;
display: flex;
flex-wrap: wrap;
}
h2 {
color: #333;
flex: 1 100%;
}
h5 {
color: #666;
flex: 1 100%;
}
table {
border-collapse: collapse;
width: 100%;
}
th {
background-color: #f2f2f2;
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
td {
border: 1px solid #dddddd;
padding: 8px;
}
.completed {
color: white;
background-color: purple;
border-radius: 5px;
padding: 3px 6px;
}
.upgraded {
color: white;
background-color: blue;
border-radius: 5px;
padding: 3px 6px;
}
.unlikely-change {
color: white;
background-color: green;
border-radius: 5px;
padding: 3px 6px;
}
.active-development {
color: white;
background-color: rgb(160, 160, 3);
border-radius: 5px;
padding: 3px 6px;
}
.near-future {
color: white;
background-color: orange;
border-radius: 5px;
padding: 3px 6px;
}
.uncertain {
color: white;
background-color: red;
border-radius: 5px;
padding: 3px 6px;
}
.legend {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-top: 20px;
padding: 10px;
background-color: #c2c2c2;
border: 1px solid #ccc;
border-radius: 5px;
width: 100%;
}
.legend-item {
display: inline-block;
margin-right: 20px;
}
</style>
</head>
<body>
<div>
<h2>Completed Features</h2>
<h5>The following are features that are considered to be working:</h5>
<div class="legend">
<div class="legend-item">
<span class="completed">Purple</span> - Stable but unfinished
</div>
<div class="legend-item">
<span class="upgraded">Blue</span> - Finished but will be upgraded soon
</div>
<div class="legend-item">
<span class="unlikely-change">Green</span> - Finished and unlikely to change
</div>
</div>
</div>
<table>
<tr>
<th>Feature Name</th>
<th>Feature Description</th>
</tr>
<tr>
<td><span class="unlikely-change">Arrays</span></td>
<td>1d arrays are here!</td>
</tr>
<tr>
<td><span class="unlikely-change">Example Code</span></td>
<td>have links to example code with explanations of how it works</td>
</tr>
<tr>
<td><span class="unlikely-change">Manual</span></td>
<td>button for referencing the documentation</td>
</tr>
<tr>
<td><span class="upgraded">Error Messages</span></td>
<td>These are taking much longer than I thought they would. the Highlighting seems a bit inconsistent.</td>
</tr>
<tr>
<td><span class="completed">Live Updates block generation</span></td>
<td>Whenever you text in the code editor, the blocks will be built in real time.
If the text is not enough to generate a valid block, Praxly will take it's best guess.</td>
</tr>
<tr>
<td><span class="completed">Text Generation from blocks</span></td>
<td>When blocks are dragged onto the blockly section, the corresponding text is generated.</td>
</tr>
<tr>
<td><span class="unlikely-change">Share URL</span></td>
<td>There is a share button that can be used to copy the URL that can load the blocks/text to anyone with the link.</td>
</tr>
<tr>
<td><span class="completed">Running basic code</span></td>
<td>all of the blocks in the current build that you can see <i>should</i> be in full working order.</td>
</tr>
<tr>
<td><span class="unlikely-change">Dark Mode</span></td>
<td>Dark mode button for ease on the eyes at night.</td>
</tr>
<tr>
<td><span class="unlikely-change">if statements</span></td>
<td>supports all blocks in the logic category</td>
</tr>
<tr>
<td><span class="upgraded">Scope</span></td>
<td>Different Scopes supported for functions and parameters not being global.</td>
</tr>
<tr>
<td><span class="upgraded">Functions</span></td>
<td>User-defined functions (called procedures) that can be called</td>
</tr>
<tr>
<td><span class="upgraded">Feedback Link</span></td>
<td>user feedback place to communicate anonymously about any issues with the platform</td>
</tr>
</table>
<div>
<h2>Future Features</h2>
<h5>The following are features that are planned for the future:</h5>
<div class="legend">
<div class="legend-item">
<span class="active-development">Yellow</span> - In active development
</div>
<div class="legend-item">
<span class="near-future">Orange</span> - Planned to be added in the near future
</div>
<div class="legend-item">
<span class="uncertain">Red</span> - Feature may or may not happen
</div>
</div>
</div>
<table>
<tr>
<th>Feature Name</th>
<th>Feature Description</th>
</tr>
<tr>
<td><span class="near-future">Classes</span></td>
<td>Object oriented programming will be quite difficult. Inheritance will also be tricky.</td>
</tr>
<tr>
<td><span class="active-development">Help Menu</span></td>
<td>A tutorial on what Praxly is and how to use it.</td>
</tr>
<tr>
<td><span class="near-future">Save Drafts</span></td>
<td>This have drafts of the last thing you typed that day stored on the browser's localStorage.</td>
</tr>
<tr>
<td><span class="uncertain">Debugger</span></td>
<td>Some sort of slower step execution in order to help visualize the running process.</td>
</tr>
</table>
</body>
</html>