| OLD | NEW |
| 1 Design | 1 Design |
| 2 ====== | 2 ====== |
| 3 | 3 |
| 4 | 4 |
| 5 Overview | 5 Overview |
| 6 -------- | 6 -------- |
| 7 Allows trying out Skia code in the browser. | 7 Allows trying out Skia code in the browser. |
| 8 | 8 |
| 9 | 9 |
| 10 Security | 10 Security |
| (...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 160 name CHAR(64) DEFAULT '' NOT NULL, | 160 name CHAR(64) DEFAULT '' NOT NULL, |
| 161 create_ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL, | 161 create_ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL, |
| 162 hash CHAR(64) DEFAULT '' NOT NULL, | 162 hash CHAR(64) DEFAULT '' NOT NULL, |
| 163 source_image_id INTEGER DEFAULT 0 NOT NULL, | 163 source_image_id INTEGER DEFAULT 0 NOT NULL, |
| 164 hidden INTEGER DEFAULT 0 NOT NULL, | 164 hidden INTEGER DEFAULT 0 NOT NULL, |
| 165 | 165 |
| 166 FOREIGN KEY (name) REFERENCES workspace(name), | 166 FOREIGN KEY (name) REFERENCES workspace(name), |
| 167 ); | 167 ); |
| 168 | 168 |
| 169 CREATE TABLE source_images ( | 169 CREATE TABLE source_images ( |
| 170 id INTEGER PRIMARY KEY NOT NULL, | 170 id INTEGER PRIMARY KEY NOT NULL AUTO_INCREMENT, |
| 171 image MEDIUMBLOB DEFAULT '' NOT NULL, -- Stored as PN
G. | 171 image MEDIUMBLOB DEFAULT '' NOT NULL, -- Stored as PN
G. |
| 172 width INTEGER DEFAULT 0 NOT NULL, | 172 width INTEGER DEFAULT 0 NOT NULL, |
| 173 height INTEGER DEFAULT 0 NOT NULL, | 173 height INTEGER DEFAULT 0 NOT NULL, |
| 174 create_ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL, | 174 create_ts TIMESTAMP DEFAULT CURRENT_TIMESTAMP NOT NULL, |
| 175 hidden INTEGER DEFAULT 0 NOT NULL | 175 hidden INTEGER DEFAULT 0 NOT NULL |
| 176 ); | 176 ); |
| 177 | 177 |
| 178 ALTER TABLE webtry ADD COLUMN source_image_id INTEGER DEFAULT 0 NOT NU
LL AFTER hash; | 178 ALTER TABLE webtry ADD COLUMN source_image_id INTEGER DEFAULT 0 NOT NU
LL AFTER hash; |
| 179 ALTER TABLE workspacetry ADD COLUMN source_image_id INTEGER DEFAULT 0 NOT NU
LL AFTER hash; | 179 ALTER TABLE workspacetry ADD COLUMN source_image_id INTEGER DEFAULT 0 NOT NU
LL AFTER hash; |
| 180 | 180 |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 * clike.js - C-like syntax highlighting support | 273 * clike.js - C-like syntax highlighting support |
| 274 | 274 |
| 275 Alternatively, we may consider pulling CM as an external dependency at some | 275 Alternatively, we may consider pulling CM as an external dependency at some |
| 276 point. | 276 point. |
| 277 | 277 |
| 278 Installation | 278 Installation |
| 279 ------------ | 279 ------------ |
| 280 See the README file. | 280 See the README file. |
| 281 | 281 |
| 282 | 282 |
| OLD | NEW |