2008-05-06 16:17:29 +01:00
|
|
|
Starting with tag:
|
|
|
|
[TAG 0.6.4.1
|
2008-12-18 00:33:02 +00:00
|
|
|
Evan Prodromou <evan@controlezvous.ca>**20081220204906]
|
|
|
|
[identica badge by Kent Brewster. For more information see:
|
|
|
|
Sarven Capadisli <csarven@controlyourself.ca>**20081218003302
|
|
|
|
http://kentbrewster.com/identica-badge/
|
|
|
|
|
|
|
|
Copy and paste the following wherever you want the badge to show up:
|
|
|
|
|
|
|
|
<script type="text/javascript" src="http://identi.ca/js/identica-badge.js">
|
|
|
|
{
|
|
|
|
"user":"kentbrew",
|
|
|
|
"server":"identi.ca",
|
|
|
|
"headerText":" and friends"
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
Substitute your own ID in the user parameter.
|
|
|
|
|
2008-12-12 17:11:35 +00:00
|
|
|
]
|
|
|
|
[more information in subscription notices
|
2008-12-21 00:23:32 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081212171135]
|
|
|
|
[first step of phpcs-cleanup of index.php
|
2008-12-21 00:30:16 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081221002332]
|
|
|
|
[reformatting for phpcs in lib/util.php
|
2008-12-21 00:39:55 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081221003016]
|
|
|
|
[some modifications to assuage phpcs
|
2008-12-21 00:46:07 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081221003955]
|
|
|
|
[reformat lib/daemon.php for phpcs
|
2008-12-21 00:58:37 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081221004607]
|
|
|
|
[reformat for phpcs
|
2008-12-22 17:32:49 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081221005837]
|
|
|
|
[reformat lib/jabber.php for phpcs, including doc comments
|
2008-12-22 19:30:29 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081222173249]
|
|
|
|
[reformat lib/language.php for PEAR Coding Standards
|
2008-12-22 19:50:41 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081222193029]
|
|
|
|
[bring mailbox.php into line with PEAR Coding Standards (mostly)
|
2008-12-22 20:13:04 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081222195041]
|
|
|
|
[bring messaging section (inbox, outbox, mailbox) into PEAR Code Standards compliance
|
|
|
|
Evan Prodromou <evan@prodromou.name>**20081222201304
|
|
|
|
|
|
|
|
Actually refactored the method names on these classes to come into
|
|
|
|
complete compliance with the code standards. Untested; maybe there are
|
|
|
|
some bad method names now.
|
|
|
|
|
2008-12-23 17:33:30 +00:00
|
|
|
]
|
|
|
|
[reformat and document lib/mail.php for phpcs conformance
|
2008-12-23 19:08:51 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081223173330]
|
|
|
|
[bring lib/noticelist.php into line with PEAR code standards
|
2008-12-23 19:14:30 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081223190851]
|
|
|
|
[incorrect label on notice list file comment
|
2008-12-23 19:19:07 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081223191430]
|
|
|
|
[replace all tabs with four spaces
|
|
|
|
Evan Prodromou <evan@prodromou.name>**20081223191907
|
|
|
|
|
|
|
|
The PEAR coding standards decree: no tabs, but indent by four spaces.
|
|
|
|
I've done a global search-and-replace on all tabs, replacing them by
|
|
|
|
four spaces. This is a huge change, but it will go a long way to
|
|
|
|
getting us towards phpcs-compliance. And that means better code
|
|
|
|
readability, and that means more participation.
|
|
|
|
|
2008-12-23 19:21:29 +00:00
|
|
|
]
|
|
|
|
[replace NULL with null
|
|
|
|
Evan Prodromou <evan@prodromou.name>**20081223192129
|
|
|
|
|
|
|
|
Another global search-and-replace update. Here, I've replaced the PHP
|
|
|
|
keyword 'NULL' with its lowercase version. This is another PEAR code
|
|
|
|
standards change.
|
|
|
|
|
2008-12-23 19:33:23 +00:00
|
|
|
]
|
|
|
|
[change function headers to K&R style
|
|
|
|
Evan Prodromou <evan@prodromou.name>**20081223193323
|
|
|
|
|
|
|
|
Another huge change, for PEAR code standards compliance. Function
|
|
|
|
headers have to be in K&R style (opening brace on its own line),
|
|
|
|
instead of having the opening brace on the same line as the function
|
|
|
|
and parameters. So, a little perl magic found all the function
|
|
|
|
definitions and move the opening brace to the next line (properly
|
|
|
|
indented... usually).
|
|
|
|
|
2008-12-23 19:44:28 +00:00
|
|
|
]
|
|
|
|
[TRUE => true, FALSE => false
|
|
|
|
Evan Prodromou <evan@prodromou.name>**20081223194428
|
|
|
|
|
|
|
|
More PEAR coding standards global changes. Here, I've changed all
|
|
|
|
instances of TRUE to true and FALSE to false.
|
|
|
|
|
2008-12-23 19:49:23 +00:00
|
|
|
]
|
|
|
|
[move opening brace of class declaration to next line
|
|
|
|
Evan Prodromou <evan@prodromou.name>**20081223194923
|
|
|
|
|
|
|
|
Another gigantor PEAR coding standards patch. Here, I've moved the
|
|
|
|
opening curly bracket on a class statement to the following line.
|
|
|
|
|
2008-12-25 15:22:07 +00:00
|
|
|
]
|
|
|
|
[Twitter-bridge: fix for Twitter's new strict policy of rejecting HTTP POSTs with invalid "expect" headers
|
2008-12-23 19:57:22 +00:00
|
|
|
Zach Copley <zach@controlyourself.ca>**20081225152207]
|
|
|
|
[whitespace changes in actions/register.php after global search-and-replace
|
2008-12-30 20:20:19 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081223195722]
|
|
|
|
[Laconica-specific extensions for Twitter API
|
2008-12-30 20:25:13 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081230202019]
|
|
|
|
[add laconica-specific methods to htaccess.sample
|
2008-12-30 20:37:47 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081230202513]
|
|
|
|
[add laconica methods to unauthed ones
|
2008-12-30 20:59:39 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081230203747]
|
|
|
|
[implement api/laconica/version method
|
2008-12-30 21:01:14 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081230205939]
|
|
|
|
[add some breaks so that switch statement works
|
2008-12-30 21:14:44 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081230210114]
|
|
|
|
[implement the api/laconica/config method
|
2008-12-30 21:19:57 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081230211444]
|
|
|
|
[better serialization of arrays and booleans in config output
|
2008-12-30 21:22:02 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081230211957]
|
|
|
|
[wrapper element for config.xml
|
2009-01-05 01:04:07 +00:00
|
|
|
Evan Prodromou <evan@prodromou.name>**20081230212202]
|
|
|
|
[trac750 Automatically update linked Facebook users' statuses
|
2009-01-05 04:02:12 +00:00
|
|
|
Zach Copley <zach@controlyourself.ca>**20090105010407]
|
|
|
|
[trac750 configurable sync flags for Facebook app (noticesync, replysync)
|
2009-01-05 04:56:03 +00:00
|
|
|
Zach Copley <zach@controlyourself.ca>**20090105040212]
|
|
|
|
[trac750 added some output to the facebook_update.php script
|
|
|
|
Zach Copley <zach@controlyourself.ca>**20090105045603]
|