mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 17:02:41 +01:00
aa86cf0ed8
Summary: A few tweaks to hsb's Countdown implementation: - Allow the page to be rendered "chromeless", suitable for display on one of the dozens of monitors everyone has laying around. - Show title of countdown in deletion dialog. - When creating a new countdown default to time(), not Dec 31, 1969. - Add extra "/" after editing to avoid needless redirect. - Tweak some page titles. - Show countdown author in list view. - Highlight tab in list view. - Tweak menu copy. - Link countdown title in list view, separate buttons into different columns so they pick up padding. Test Plan: Created, edited and deleted a timer. Viewed a timer and toggled chrome mode. Viewed timer list. Reviewed By: hsb Reviewers: hsb, aran, jungejason, tuomaspelkonen CC: aran, hsb, epriestley Differential Revision: 454
16 lines
593 B
SQL
16 lines
593 B
SQL
CREATE DATABASE phabricator_countdown;
|
|
|
|
CREATE TABLE phabricator_countdown.countdown_timer (
|
|
id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY,
|
|
title VARCHAR(255) NOT NULL,
|
|
authorPHID VARCHAR(64) BINARY NOT NULL,
|
|
datepoint INT UNSIGNED NOT NULL,
|
|
dateCreated INT UNSIGNED NOT NULL,
|
|
dateModified INT UNSIGNED NOT NULL
|
|
);
|
|
|
|
INSERT INTO phabricator_directory.directory_item
|
|
(name, description, href, categoryID, sequence, dateCreated, dateModified)
|
|
VALUES
|
|
("Countdown", "Utilize the full capabilities of your ALU.", "/countdown/", 5, 350,
|
|
UNIX_TIMESTAMP(), UNIX_TIMESTAMP());
|