mark off some todos, add a version number, and put code info at the bottom of the page
darcs-hash:20080613184638-84dde-aa7059348899949f3e0c6cfa02d08c41458384a1.gz
This commit is contained in:
parent
fbd75f2c2a
commit
9ff4794f1b
22
doc/roadmap
22
doc/roadmap
@ -98,12 +98,10 @@ First public release (theoretically). Added distributed subscriptions,
|
|||||||
+ doc action
|
+ doc action
|
||||||
+ about doc
|
+ about doc
|
||||||
+ help doc
|
+ help doc
|
||||||
- FAQ doc
|
|
||||||
+ privacy doc
|
+ privacy doc
|
||||||
+ source doc
|
+ source doc
|
||||||
+ roadmap doc
|
+ roadmap doc
|
||||||
- contact doc
|
+ add a way to stick variables into documents
|
||||||
- add a way to stick variables into documents
|
|
||||||
+ FOAF document for user
|
+ FOAF document for user
|
||||||
+ license in RSS feeds
|
+ license in RSS feeds
|
||||||
+ TOS checkbox on register
|
+ TOS checkbox on register
|
||||||
@ -114,12 +112,9 @@ First public release (theoretically). Added distributed subscriptions,
|
|||||||
+ password change instructions
|
+ password change instructions
|
||||||
+ fix spacing on notices
|
+ fix spacing on notices
|
||||||
+ fix spacing in profile
|
+ fix spacing in profile
|
||||||
- limit entry in textarea to 140 chars
|
|
||||||
+ add a next page link to showstream
|
+ add a next page link to showstream
|
||||||
+ add a next page link to public
|
+ add a next page link to public
|
||||||
+ add a next page link to all
|
+ add a next page link to all
|
||||||
- AGPL notification
|
|
||||||
- Check licenses of all libraries for compatibility
|
|
||||||
+ @ messages
|
+ @ messages
|
||||||
+ Automatically linkify URLs in notices
|
+ Automatically linkify URLs in notices
|
||||||
+ themes
|
+ themes
|
||||||
@ -135,23 +130,26 @@ First public release (theoretically). Added distributed subscriptions,
|
|||||||
+ graphic refresh on profilesettings
|
+ graphic refresh on profilesettings
|
||||||
+ graphic refresh on public
|
+ graphic refresh on public
|
||||||
+ graphic refresh on register
|
+ graphic refresh on register
|
||||||
- graphic refresh on remotesubscribe
|
+ graphic refresh on remotesubscribe
|
||||||
+ graphic refresh on shownotice
|
+ graphic refresh on shownotice
|
||||||
+ graphic refresh on showstream
|
+ graphic refresh on showstream
|
||||||
+ graphic refresh on subscribed
|
+ graphic refresh on subscribed
|
||||||
+ graphic refresh on subscriptions
|
+ graphic refresh on subscriptions
|
||||||
+ graphic refresh on userauthorization
|
+ graphic refresh on userauthorization
|
||||||
- update default theme to use new, more semantic, HTML
|
|
||||||
- subscribe/unsubscribe on subscriptions page
|
|
||||||
- subscribe/unsubscribe on subscribed page
|
|
||||||
+ correct use of views menu in settings
|
+ correct use of views menu in settings
|
||||||
+ correct use of views menu in streams
|
+ correct use of views menu in streams
|
||||||
- INSTALL file
|
|
||||||
+ content negotiation for content type
|
+ content negotiation for content type
|
||||||
|
|
||||||
Release 0.4
|
Release 0.4
|
||||||
-----------
|
-----------
|
||||||
|
|
||||||
|
- contact doc
|
||||||
|
- FAQ doc
|
||||||
|
- update default theme to use new, more semantic, HTML
|
||||||
|
- INSTALL file
|
||||||
|
- limit entry in textarea to 140 chars
|
||||||
|
- AGPL notification
|
||||||
|
- Check licenses of all libraries for compatibility
|
||||||
- jQuery for as much as possible
|
- jQuery for as much as possible
|
||||||
- microid for profile page
|
- microid for profile page
|
||||||
- format times per user
|
- format times per user
|
||||||
@ -172,6 +170,8 @@ Release 0.4
|
|||||||
- site logo
|
- site logo
|
||||||
- check license compatibility for remote subscribe
|
- check license compatibility for remote subscribe
|
||||||
- optional FOAF URL in openmicroblogging exchange
|
- optional FOAF URL in openmicroblogging exchange
|
||||||
|
- subscribe/unsubscribe on subscriptions page
|
||||||
|
- subscribe/unsubscribe on subscribed page
|
||||||
|
|
||||||
Release 0.5
|
Release 0.5
|
||||||
-----------
|
-----------
|
||||||
|
@ -19,6 +19,8 @@
|
|||||||
|
|
||||||
if (!defined('LACONICA')) { exit(1); }
|
if (!defined('LACONICA')) { exit(1); }
|
||||||
|
|
||||||
|
define('LACONICA_VERSION', '0.3.0');
|
||||||
|
|
||||||
define('AVATAR_PROFILE_SIZE', 96);
|
define('AVATAR_PROFILE_SIZE', 96);
|
||||||
define('AVATAR_STREAM_SIZE', 48);
|
define('AVATAR_STREAM_SIZE', 48);
|
||||||
define('AVATAR_MINI_SIZE', 24);
|
define('AVATAR_MINI_SIZE', 24);
|
||||||
|
10
lib/util.php
10
lib/util.php
@ -205,6 +205,16 @@ function common_show_footer() {
|
|||||||
common_element_end('div'); # content div
|
common_element_end('div'); # content div
|
||||||
common_foot_menu();
|
common_foot_menu();
|
||||||
common_element_start('div', array('id' => 'footer'));
|
common_element_start('div', array('id' => 'footer'));
|
||||||
|
common_element_start('p', 'laconica');
|
||||||
|
common_text(_t('This site is running the '));
|
||||||
|
common_element('a', array('class' => 'software',
|
||||||
|
href => 'http://laconi.ca/'),
|
||||||
|
'Laconica');
|
||||||
|
common_text(_t('microblogging tool, version ' . LACONICA_VERSION . ', available under the '));
|
||||||
|
common_element('a', array(href => 'http://www.fsf.org/licensing/licenses/agpl-3.0.html'),
|
||||||
|
'GNU Affero General Public License');
|
||||||
|
common_text(_t('.'));
|
||||||
|
common_element_end('p');
|
||||||
common_element('img', array('id' => 'cc',
|
common_element('img', array('id' => 'cc',
|
||||||
'src' => $config['license']['image'],
|
'src' => $config['license']['image'],
|
||||||
'alt' => $config['license']['title']));
|
'alt' => $config['license']['title']));
|
||||||
|
Loading…
Reference in New Issue
Block a user