2011-10-17 22:28:23 +02:00
|
|
|
CREATE DATABASE IF NOT EXISTS phabricator_countdown;
|
2011-06-13 01:06:17 +02:00
|
|
|
|
|
|
|
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 tweaks
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
2011-06-14 02:35:13 +02:00
|
|
|
("Countdown", "Utilize the full capabilities of your ALU.", "/countdown/", 5, 350,
|
2011-06-13 01:06:17 +02:00
|
|
|
UNIX_TIMESTAMP(), UNIX_TIMESTAMP());
|