]> git.mxchange.org Git - quix0rs-gnu-social.git/log
quix0rs-gnu-social.git
15 years agoTwitter-bridge: fix for Twitter's new strict policy of rejecting HTTP POSTs with...
Zach Copley [Thu, 25 Dec 2008 15:22:07 +0000 (10:22 -0500)]
Twitter-bridge: fix for Twitter's new strict policy of rejecting HTTP POSTs with invalid "expect" headers

darcs-hash:20081225152207-7b5ce-fe890baabaa8f0bf60b05f7558c1ece3544d9906.gz

15 years agomove opening brace of class declaration to next line
Evan Prodromou [Tue, 23 Dec 2008 19:49:23 +0000 (14:49 -0500)]
move opening brace of class declaration to next line

Another gigantor PEAR coding standards patch. Here, I've moved the
opening curly bracket on a class statement to the following line.

darcs-hash:20081223194923-84dde-77a93de314caadbcb5b70bf346a4648be77a864e.gz

15 years agoTRUE
Evan Prodromou [Tue, 23 Dec 2008 19:44:28 +0000 (14:44 -0500)]
TRUE

More PEAR coding standards global changes. Here, I've changed all
instances of TRUE to true and FALSE to false.

darcs-hash:20081223194428-84dde-cb1a1e6f679acd68e864545c4d4dd8752d6a6257.gz

15 years agochange function headers to K&R style
Evan Prodromou [Tue, 23 Dec 2008 19:33:23 +0000 (14:33 -0500)]
change function headers to K&R style

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).

darcs-hash:20081223193323-84dde-a28e36ecc66672c783c2842d12fc11043c13ab28.gz

15 years agoreplace NULL with null
Evan Prodromou [Tue, 23 Dec 2008 19:21:29 +0000 (14:21 -0500)]
replace NULL with null

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.

darcs-hash:20081223192129-84dde-4a0182e0ec16a01ad88745ad3e08f7cb501aee0b.gz

15 years agoreplace all tabs with four spaces
Evan Prodromou [Tue, 23 Dec 2008 19:19:07 +0000 (14:19 -0500)]
replace all tabs with four spaces

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.

darcs-hash:20081223191907-84dde-21e8efe210e6d5d54e935a22d0cee5c7bbfc007d.gz

15 years agoincorrect label on notice list file comment
Evan Prodromou [Tue, 23 Dec 2008 19:14:30 +0000 (14:14 -0500)]
incorrect label on notice list file comment

darcs-hash:20081223191430-84dde-7f50fbf9c39c3f397196ffca318d51de6624d7c9.gz

15 years agobring lib/noticelist.php into line with PEAR code standards
Evan Prodromou [Tue, 23 Dec 2008 19:08:51 +0000 (14:08 -0500)]
bring lib/noticelist.php into line with PEAR code standards

darcs-hash:20081223190851-84dde-ecad63595159aca2ae014325c9af29a9ace21c3d.gz

15 years agoreformat and document lib/mail.php for phpcs conformance
Evan Prodromou [Tue, 23 Dec 2008 17:33:30 +0000 (12:33 -0500)]
reformat and document lib/mail.php for phpcs conformance

darcs-hash:20081223173330-84dde-8cbbfd3953e8a67d5e58679431f93651ddf3122a.gz

15 years agobring messaging section (inbox, outbox, mailbox) into PEAR Code Standards compliance
Evan Prodromou [Mon, 22 Dec 2008 20:13:04 +0000 (15:13 -0500)]
bring messaging section (inbox, outbox, mailbox) into PEAR Code Standards compliance

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.

darcs-hash:20081222201304-84dde-3effcce0f9ef25fbe0bfebd505037d9ff37252fa.gz

15 years agobring mailbox.php into line with PEAR Coding Standards (mostly)
Evan Prodromou [Mon, 22 Dec 2008 19:50:41 +0000 (14:50 -0500)]
bring mailbox.php into line with PEAR Coding Standards (mostly)

darcs-hash:20081222195041-84dde-3cc82f6b0f3e4e753c9525aa9a881cfb0c25830c.gz

15 years agoreformat lib/language.php for PEAR Coding Standards
Evan Prodromou [Mon, 22 Dec 2008 19:30:29 +0000 (14:30 -0500)]
reformat lib/language.php for PEAR Coding Standards

darcs-hash:20081222193029-84dde-8d0f64d0fad2a2854d1a3a294a30e74d73fd1bd1.gz

15 years agoreformat lib/jabber.php for phpcs, including doc comments
Evan Prodromou [Mon, 22 Dec 2008 17:32:49 +0000 (12:32 -0500)]
reformat lib/jabber.php for phpcs, including doc comments

darcs-hash:20081222173249-84dde-202ba409e32e2b27089a1bc5431507c9d8a2782e.gz

15 years agoreformat for phpcs
Evan Prodromou [Sun, 21 Dec 2008 00:58:37 +0000 (19:58 -0500)]
reformat for phpcs

darcs-hash:20081221005837-84dde-07cd6bb27d5f601360a686538dd76f1dca9af3c4.gz

15 years agoreformat lib/daemon.php for phpcs
Evan Prodromou [Sun, 21 Dec 2008 00:46:07 +0000 (19:46 -0500)]
reformat lib/daemon.php for phpcs

darcs-hash:20081221004607-84dde-d83d0661b29e532b8842b7ae45c961446669fb74.gz

15 years agosome modifications to assuage phpcs
Evan Prodromou [Sun, 21 Dec 2008 00:39:55 +0000 (19:39 -0500)]
some modifications to assuage phpcs

darcs-hash:20081221003955-84dde-d6e8067a579f70dcb707f4525e588920a2375f5c.gz

15 years agoreformatting for phpcs in lib/util.php
Evan Prodromou [Sun, 21 Dec 2008 00:30:16 +0000 (19:30 -0500)]
reformatting for phpcs in lib/util.php

darcs-hash:20081221003016-84dde-0e80268e95235462e069d4d1e6b949bc891ccdbd.gz

15 years agofirst step of phpcs-cleanup of index.php
Evan Prodromou [Sun, 21 Dec 2008 00:23:32 +0000 (19:23 -0500)]
first step of phpcs-cleanup of index.php

darcs-hash:20081221002332-84dde-5834e12499fff0a23a8a6a76018f8beaa5ea8a96.gz

15 years agomore information in subscription notices
Evan Prodromou [Fri, 12 Dec 2008 17:11:35 +0000 (12:11 -0500)]
more information in subscription notices

darcs-hash:20081212171135-84dde-543176e3a8190699e44fc896ba90f6ea776057d4.gz

15 years agoidentica badge by Kent Brewster. For more information see:
Sarven Capadisli [Thu, 18 Dec 2008 00:33:02 +0000 (19:33 -0500)]
identica badge by Kent Brewster. For more information see:

http://kentbrewster.com/identica-badge/

Copy and paste the following wherever you want the badge to show up:

<script type

darcs-hash:20081218003302-efd22-9423c6317fe60a3c288c713333f7b16a84228c3e.gz

15 years agoresolve conflicts
Evan Prodromou [Wed, 10 Dec 2008 01:46:19 +0000 (20:46 -0500)]
resolve conflicts

darcs-hash:20081210014619-5ed1f-b78d0990f80f7fee6f31424bc1e366d08767af9d.gz

15 years agoNew AjaxWebChannel for returning ajaxy responses to notice input box commands
Zach Copley [Tue, 9 Dec 2008 21:06:54 +0000 (16:06 -0500)]
New AjaxWebChannel for returning ajaxy responses to notice input box commands

darcs-hash:20081209210654-7b5ce-2ef432aa8cb7bf5cc1a973a71eb70e6b2aae4ab6.gz

15 years agofix registration bug - fatal error when sending email confirmation
Zach Copley [Tue, 9 Dec 2008 08:27:50 +0000 (03:27 -0500)]
fix registration bug - fatal error when sending email confirmation

darcs-hash:20081209082750-7b5ce-6d06a7b1cda2a9afb6ce8ea64d65df81cc063139.gz

15 years agotrac750 add timestamp to CSS file to keep Facebook's caching from ignoring our changes
Zach Copley [Mon, 8 Dec 2008 05:18:59 +0000 (00:18 -0500)]
trac750 add timestamp to CSS file to keep Facebook's caching from ignoring our changes

darcs-hash:20081208051859-7b5ce-5d777044f81edd562a4fe825cfcc12233e2bc5dc.gz

15 years agotrac750 Use Facebook dialogs for success and error messages during initial setup...
Zach Copley [Mon, 8 Dec 2008 01:54:12 +0000 (20:54 -0500)]
trac750 Use Facebook dialogs for success and error messages during initial setup / login

darcs-hash:20081208015412-7b5ce-c899a3b743621f7d003b93f383b78a2c8ba9fb52.gz

15 years agotrac750 added Facebook client libs for PHP to extlib dir
Zach Copley [Mon, 8 Dec 2008 00:58:16 +0000 (19:58 -0500)]
trac750 added Facebook client libs for PHP to extlib dir

darcs-hash:20081208005816-7b5ce-b7ec90e310ddc609fe88d54cfac5ec7bc67da6ca.gz

15 years agotrac750 Remove foreign link when Facebook user removes our app
Zach Copley [Mon, 8 Dec 2008 00:55:22 +0000 (19:55 -0500)]
trac750 Remove foreign link when Facebook user removes our app

darcs-hash:20081208005522-7b5ce-84325ed13fd5e59ac07640089806a507c7168170.gz

15 years agotrac750 - linked in CSS file and added CSS for profile box
Zach Copley [Sun, 7 Dec 2008 23:59:25 +0000 (18:59 -0500)]
trac750 - linked in CSS file and added CSS for profile box

- added button for adding a box to the profile on settings

darcs-hash:20081207235925-7b5ce-224fd2482f66c2c9ac9da9ce72c1c0da0243bd83.gz

15 years agotrac750 - Exoskeleton of a nascent Facebook app
Zach Copley [Sat, 6 Dec 2008 03:01:32 +0000 (22:01 -0500)]
trac750 - Exoskeleton of a nascent Facebook app

darcs-hash:20081206030132-7b5ce-96c38ab67edd3d58f8722ef25852a6143f05a86b.gz

15 years agotrac540 - Add 'since' param to Twitter-compatible API calls
Zach Copley [Tue, 9 Dec 2008 05:53:45 +0000 (00:53 -0500)]
trac540 - Add 'since' param to Twitter-compatible API calls

darcs-hash:20081209055345-7b5ce-e48fd4c87963b8ae15859fd03d2f1f86a16f3a2b.gz

15 years agofix Profile_block::get() again
Evan Prodromou [Tue, 9 Dec 2008 04:16:48 +0000 (23:16 -0500)]
fix Profile_block::get() again

darcs-hash:20081209041648-5ed1f-fb6ed96047ebfbbe769a11cc3171ce8a5a1440a7.gz

15 years agoremoved Profile_block::get, changed to use pkeyGet
Evan Prodromou [Tue, 9 Dec 2008 04:12:27 +0000 (23:12 -0500)]
removed Profile_block::get, changed to use pkeyGet

darcs-hash:20081209041227-5ed1f-2edefdc79545da646a6fd40b15fd72809c15831c.gz

15 years agodatabase changes to say whether to deliver messages for a subscription
Evan Prodromou [Tue, 9 Dec 2008 03:36:37 +0000 (22:36 -0500)]
database changes to say whether to deliver messages for a subscription

darcs-hash:20081209033637-5ed1f-df5ef40e57cc0e9485e34e2f5e46249dcb0d9130.gz

15 years agoFixed duplicate @class assignment to element
csarven [Mon, 8 Dec 2008 21:54:20 +0000 (16:54 -0500)]
Fixed duplicate @class assignment to element

darcs-hash:20081208215420-eefa4-25bc0ed6c14d9031e8343e89c2cf6bde6ce35521.gz

15 years agopass returnto info from subscribers to block form
Evan Prodromou [Mon, 8 Dec 2008 20:14:53 +0000 (15:14 -0500)]
pass returnto info from subscribers to block form

darcs-hash:20081208201453-5ed1f-fe423d57a54d482b95c0dc22ab46e6e0a5ea060a.gz

15 years agopass profile correctly to show_owner_controls
Evan Prodromou [Mon, 8 Dec 2008 20:13:51 +0000 (15:13 -0500)]
pass profile correctly to show_owner_controls

darcs-hash:20081208201351-5ed1f-e74df1c59589816c24a0ccd867cbae714cd7daec.gz

15 years agocorrectly init the document type for block API actions
Evan Prodromou [Mon, 8 Dec 2008 19:39:39 +0000 (14:39 -0500)]
correctly init the document type for block API actions

darcs-hash:20081208193939-5ed1f-3275ec50dd2dbb23689710f9e52a071bcba94cc9.gz

15 years agoenable block API
Evan Prodromou [Mon, 8 Dec 2008 18:57:28 +0000 (13:57 -0500)]
enable block API

darcs-hash:20081208185728-5ed1f-8d5f6be6decfbb50deb4ca50bee13404d0c51b72.gz

15 years agoadd an unblock form
Evan Prodromou [Mon, 8 Dec 2008 17:37:22 +0000 (12:37 -0500)]
add an unblock form

darcs-hash:20081208173722-5ed1f-fcdcb49e4958854ce9872beecee409737cacecb5.gz

15 years agoerror in figuring out actions to return to
Evan Prodromou [Mon, 8 Dec 2008 17:28:12 +0000 (12:28 -0500)]
error in figuring out actions to return to

darcs-hash:20081208172812-5ed1f-58ce42160f0ea5330de578c310897906d0012c5c.gz

15 years agoadd returnto information to the block form
Evan Prodromou [Mon, 8 Dec 2008 17:09:31 +0000 (12:09 -0500)]
add returnto information to the block form

darcs-hash:20081208170931-5ed1f-e7c5853e6a222b04723f20c01ebaae15eeab3687.gz

15 years agocopyright block and better load for Memcached_DataObject in profile_block
Evan Prodromou [Mon, 8 Dec 2008 07:32:09 +0000 (02:32 -0500)]
copyright block and better load for Memcached_DataObject in profile_block

darcs-hash:20081208073209-5ed1f-0fca508e15833517f6c61f16d5f9979624c27b40.gz

15 years agostatic to not static
Evan Prodromou [Mon, 8 Dec 2008 07:29:58 +0000 (02:29 -0500)]
static to not static

darcs-hash:20081208072958-5ed1f-3476745ea503bb234d81a7513cd84db789239871.gz

15 years agochange element_start to element for instructions
Evan Prodromou [Mon, 8 Dec 2008 07:26:29 +0000 (02:26 -0500)]
change element_start to element for instructions

darcs-hash:20081208072629-5ed1f-90935f7a2a3d99a4c21b6390eb3fc941117c2580.gz

15 years agoadd block name to block form
Evan Prodromou [Mon, 8 Dec 2008 07:25:19 +0000 (02:25 -0500)]
add block name to block form

darcs-hash:20081208072519-5ed1f-10e7d3e14e54f0d67c58504adbc4c81f3228944a.gz

15 years agoreturn true from block action
Evan Prodromou [Mon, 8 Dec 2008 07:17:20 +0000 (02:17 -0500)]
return true from block action

darcs-hash:20081208071720-5ed1f-82ff38a26edc9254883bd22e055b7a883b07081c.gz

15 years agoadd fancy url for block action
Evan Prodromou [Mon, 8 Dec 2008 07:15:21 +0000 (02:15 -0500)]
add fancy url for block action

darcs-hash:20081208071521-5ed1f-1178a3c50f94c039d98112620e8bf78836e659bc.gz

15 years agoadd header and footer
Evan Prodromou [Mon, 8 Dec 2008 06:30:56 +0000 (01:30 -0500)]
add header and footer

darcs-hash:20081208063056-5ed1f-ff1fdbc345395661c19699c6c76cc1d1f6ea8d25.gz

15 years agofixup handle function in block action
Evan Prodromou [Mon, 8 Dec 2008 06:28:41 +0000 (01:28 -0500)]
fixup handle function in block action

darcs-hash:20081208062841-5ed1f-be70623070712b4877c8d2fd8aaadba33ebd2180.gz

15 years agoadd block form to subscribers list and profile page
Evan Prodromou [Mon, 8 Dec 2008 05:55:11 +0000 (00:55 -0500)]
add block form to subscribers list and profile page

I added a small form for blocking users to profiles in the profile
list, and also to the profile page.

I also added an action to handle the results of blocking someone.

This required some changes to the profile list class (so I could
add the block form), so I made them. And the gallery class lets its
subclasses return a subclass of ProfileList for their profile list.

darcs-hash:20081208055511-5ed1f-e2e09986bd3b9cbb6a00a0c6b94f49ea78b7bdab.gz

15 years agoremove unused code from profile list
Evan Prodromou [Mon, 8 Dec 2008 03:31:32 +0000 (22:31 -0500)]
remove unused code from profile list

darcs-hash:20081208033132-5ed1f-ee93e5b26353c097ee1bdb8d3e4cedad5763548e.gz

15 years agodon't allow remote subscribes from blocked profiles
Evan Prodromou [Mon, 8 Dec 2008 03:15:32 +0000 (22:15 -0500)]
don't allow remote subscribes from blocked profiles

darcs-hash:20081208031532-5ed1f-6094c6425b73e45589de282fa482b912fb686fae.gz

15 years agodon't save replies from a blocked profile to the blocking user
Evan Prodromou [Mon, 8 Dec 2008 03:14:08 +0000 (22:14 -0500)]
don't save replies from a blocked profile to the blocking user

darcs-hash:20081208031408-5ed1f-dfdb46fbcf5390d890b4db47c64da0b70ace8096.gz

15 years agopass profile id for subscriptions rather than user name
Evan Prodromou [Mon, 8 Dec 2008 03:13:12 +0000 (22:13 -0500)]
pass profile id for subscriptions rather than user name

darcs-hash:20081208031312-5ed1f-b570b86b28e8eda763c51be1ae091034f76bd984.gz

15 years agolow-level management of blocks
Evan Prodromou [Mon, 8 Dec 2008 03:10:08 +0000 (22:10 -0500)]
low-level management of blocks

darcs-hash:20081208031008-5ed1f-c96006b5c05fa0e68f9adaacd0518016aedfee2a.gz

15 years agoNudge disabled and greyed out while ajaxForm process
csarven [Mon, 8 Dec 2008 05:58:12 +0000 (00:58 -0500)]
Nudge disabled and greyed out while ajaxForm process

darcs-hash:20081208055812-eefa4-719bb1b630a7d0764b286d67488313627b5180c8.gz

15 years agoadd class to body element
Evan Prodromou [Mon, 8 Dec 2008 05:50:23 +0000 (00:50 -0500)]
add class to body element

darcs-hash:20081208055023-84dde-5ae95497ae63584f7b86e63eb62ed13607ee1ee8.gz

15 years agoFavorited -> Popular
Evan Prodromou [Mon, 8 Dec 2008 05:35:43 +0000 (00:35 -0500)]
Favorited -> Popular

darcs-hash:20081208053543-84dde-039dcb947f0c6c2cd01ab7065b8c807000f59b3a.gz

15 years agoRemoved the "sun", process and checkmark icons from Nudge
csarven [Mon, 8 Dec 2008 05:30:11 +0000 (00:30 -0500)]
Removed the "sun", process and checkmark icons from Nudge

darcs-hash:20081208053011-eefa4-aa5f115efa26653f1cd56101637cee40eedb27e7.gz

15 years ago(Un)Subscribed submit is disabled and greyed out while ajaxForm process
csarven [Mon, 8 Dec 2008 05:12:12 +0000 (00:12 -0500)]
(Un)Subscribed submit is disabled and greyed out while ajaxForm process

darcs-hash:20081208051212-eefa4-13c2cc5bab8c8da38dff51bce7fe89c2debdb781.gz

15 years agoremove favoritedrss
Evan Prodromou [Sun, 7 Dec 2008 16:59:00 +0000 (11:59 -0500)]
remove favoritedrss

I've removed the favoritedrss action, and removed the links from the
favorited page.

Most-favorited is not a good candidate for an RSS format. RSS works
well for series that work sequentially -- new things always come in at
the top.

This just isn't the case with "most favorited". The favorited notices
list on Identi.ca is sorted by how many times a message is favorited.

What happens if a notice used to be on that list, then falls off
because other messages get more faves, then gets back on because it
gets faved again? Or if a notice moves "up" on the list?

darcs-hash:20081207165900-84dde-23afe73c9c61cfb259ec5dc0cac5030643b31f2c.gz

15 years agofixup the problems with the repo patch
Evan Prodromou [Fri, 5 Dec 2008 15:33:25 +0000 (10:33 -0500)]
fixup the problems with the repo patch

darcs-hash:20081205153325-5ed1f-f663ec459d8d5067505ff28be39dee8c382e5814.gz

15 years agotrac855 trac856 and Feed list for the Favorited page
csarven [Fri, 5 Dec 2008 22:14:02 +0000 (17:14 -0500)]
trac855 trac856 and Feed list for the Favorited page

darcs-hash:20081205221402-eefa4-9c765fe3c7a6e0cf9cdee1749ed2bebb24d3deaf.gz

15 years agoset email content type to text/plain; utf-8
millette [Thu, 4 Dec 2008 21:34:14 +0000 (16:34 -0500)]
set email content type to text/plain; utf-8

darcs-hash:20081204213414-099f7-631e8aecc8ce2d8725b93e23e15e6e97f06a6bac.gz

15 years agosend all emails in the destination's language.
millette [Thu, 4 Dec 2008 21:24:55 +0000 (16:24 -0500)]
send all emails in the destination's language.

darcs-hash:20081204212455-099f7-a3a325852f55b94e4b81c84dbb301ae2eebf48b4.gz

15 years agotrac494 email is now in recipient's language
millette [Thu, 4 Dec 2008 20:34:33 +0000 (15:34 -0500)]
trac494 email is now in recipient's language

darcs-hash:20081204203433-099f7-41be8f47b2a8e647414225f26318da005144006d.gz

15 years agotrac768 keep transparency of resized avatar images.
millette [Thu, 4 Dec 2008 18:29:53 +0000 (13:29 -0500)]
trac768 keep transparency of resized avatar images.

darcs-hash:20081204182953-099f7-b47315607d937da4d648b200a733c715a97d9bc2.gz

15 years agodone delete own profile (see other settings)
millette [Thu, 4 Dec 2008 18:02:33 +0000 (13:02 -0500)]
done delete own profile (see other settings)

darcs-hash:20081204180233-099f7-7728ee57876b789278aa1cc35f54e0a422593e5d.gz

15 years agomoving delete profile to its own space.
millette [Wed, 3 Dec 2008 19:26:58 +0000 (14:26 -0500)]
moving delete profile to its own space.

darcs-hash:20081203192658-099f7-37d26abf7409ab2996a22de4aa71cb7a5f68d205.gz

15 years agodelete user and all traces from the db.
millette [Wed, 3 Dec 2008 16:49:42 +0000 (11:49 -0500)]
delete user and all traces from the db.

darcs-hash:20081203164942-099f7-ea511948139c9c18b1c8b7de018aa4f0ee5ff624.gz

15 years agowhitespace in laconica.sql
Evan Prodromou [Wed, 3 Dec 2008 22:28:19 +0000 (17:28 -0500)]
whitespace in laconica.sql

darcs-hash:20081203222819-5ed1f-49d1657730072be304ea6455ac96637ab47191f3.gz

15 years agoadd profile block data object
Evan Prodromou [Wed, 3 Dec 2008 22:26:19 +0000 (17:26 -0500)]
add profile block data object

darcs-hash:20081203222619-5ed1f-b313092893c67a3ec1dc92a79aa7fed4ab583729.gz

15 years agoUsing abbr.published @title and ISO8601
csarven [Wed, 3 Dec 2008 22:06:37 +0000 (17:06 -0500)]
Using abbr.published @title and ISO8601

darcs-hash:20081203220637-eefa4-5a9db2b3b178c6a7e4edb43b72c392215ed3e004.gz

15 years agoprepare the action obj for API
Evan Prodromou [Wed, 3 Dec 2008 21:03:58 +0000 (16:03 -0500)]
prepare the action obj for API

darcs-hash:20081203210358-5ed1f-3ff0de9c00c72de6bde703b150b24597ff8fadf4.gz

15 years agoallow recoverpassword in private mode
Evan Prodromou [Wed, 3 Dec 2008 18:52:54 +0000 (13:52 -0500)]
allow recoverpassword in private mode

darcs-hash:20081203185254-5ed1f-3dea8c6396ee3a05e2fff7ec02023f50c3d38515.gz

15 years agodon't allow new users if the site is closed or invite only in OpenID
Evan Prodromou [Wed, 3 Dec 2008 18:50:22 +0000 (13:50 -0500)]
don't allow new users if the site is closed or invite only in OpenID

darcs-hash:20081203185022-5ed1f-a618527f069301c34b3fd6a75ae5676f45e64d39.gz

15 years agoallow registrations even when site is private (for invites, etc.)
Evan Prodromou [Wed, 3 Dec 2008 18:47:48 +0000 (13:47 -0500)]
allow registrations even when site is private (for invites, etc.)

darcs-hash:20081203184748-5ed1f-b3c3236d17457a112db53595d64c5a41e9a9d2a2.gz

15 years agomove checkbox label formatting from identica theme to default theme
Evan Prodromou [Wed, 3 Dec 2008 18:42:54 +0000 (13:42 -0500)]
move checkbox label formatting from identica theme to default theme

darcs-hash:20081203184254-5ed1f-844aa013d72f5100ea5f100b252321760121cb17.gz

15 years agoadd finishopenidlogin to list of actions that anon users can do
Evan Prodromou [Wed, 3 Dec 2008 18:36:38 +0000 (13:36 -0500)]
add finishopenidlogin to list of actions that anon users can do

darcs-hash:20081203183638-5ed1f-f54d43e62dca66d9ebbd1203549e63c165510b22.gz

15 years agofine-tuning the privacy flag
Evan Prodromou [Wed, 3 Dec 2008 18:34:32 +0000 (13:34 -0500)]
fine-tuning the privacy flag

darcs-hash:20081203183432-5ed1f-7626661b797f64594f990ee06d9e13b73b265b49.gz

15 years agoallow doc and api calls from private
Evan Prodromou [Wed, 3 Dec 2008 18:28:30 +0000 (13:28 -0500)]
allow doc and api calls from private

darcs-hash:20081203182830-5ed1f-ad1c3c585984cb4e27b078964d6f96bd7d8e05d8.gz

15 years agoif the site is marked as private, redirect anon users to login
Evan Prodromou [Wed, 3 Dec 2008 18:24:21 +0000 (13:24 -0500)]
if the site is marked as private, redirect anon users to login

darcs-hash:20081203182421-5ed1f-9a8569a5b38ca15c7ae83438a59a05f8b07215bd.gz

15 years agounsubscribe from a remote profile
Evan Prodromou [Wed, 3 Dec 2008 18:09:45 +0000 (13:09 -0500)]
unsubscribe from a remote profile

darcs-hash:20081203180945-5ed1f-747b3c0e00ced81c02953e1095a9b866a7876c43.gz

15 years agopermanent redirect on non-canonical nickname
Evan Prodromou [Wed, 3 Dec 2008 17:46:46 +0000 (12:46 -0500)]
permanent redirect on non-canonical nickname

darcs-hash:20081203174646-5ed1f-8f9f050a7e8c217872c283f299d790252c205920.gz

15 years agoparent::init() -> parent::prepare()
Evan Prodromou [Wed, 3 Dec 2008 17:34:23 +0000 (12:34 -0500)]
parent::init() -> parent::prepare()

darcs-hash:20081203173423-5ed1f-95de0f98aba4be527cd59d7297bc4f7b712713bd.gz

15 years agochange Action::init() to Action::prepare() to avoid conflict with RSS10Action::init()
Evan Prodromou [Wed, 3 Dec 2008 17:32:25 +0000 (12:32 -0500)]
change Action::init() to Action::prepare() to avoid conflict with RSS10Action::init()

darcs-hash:20081203173225-5ed1f-e5ebfb202ed4a84c90851d0faa025ad09774d2c3.gz

15 years agorollback removing init from rssaction
Evan Prodromou [Wed, 3 Dec 2008 17:28:56 +0000 (12:28 -0500)]
rollback removing init from rssaction

darcs-hash:20081203172856-5ed1f-78a27cd47a2b5733bd55d0acfd7c399c5818ba08.gz

15 years agofix conflict with Robin's changes on trunk
Evan Prodromou [Wed, 3 Dec 2008 04:17:30 +0000 (23:17 -0500)]
fix conflict with Robin's changes on trunk

darcs-hash:20081203041730-5ed1f-1e1910cec75546291b14386d91f3bd22ae06b750.gz

15 years agobetter microformats from @singpolyma
Evan Prodromou [Wed, 3 Dec 2008 03:59:47 +0000 (22:59 -0500)]
better microformats from @singpolyma

darcs-hash:20081203035947-84dde-68ce5b3ba2b49bd76e9ef8572cea7857cd05a659.gz

15 years agoadd attributes for shownotice
Evan Prodromou [Tue, 2 Dec 2008 05:02:00 +0000 (00:02 -0500)]
add attributes for shownotice

darcs-hash:20081202050200-5ed1f-1ba5a3573e2276eac22a018ce26cc76b1ed7275f.gz

15 years agocleanup whitespace in rssaction
Evan Prodromou [Tue, 2 Dec 2008 04:58:56 +0000 (23:58 -0500)]
cleanup whitespace in rssaction

darcs-hash:20081202045856-5ed1f-3b14fafd709eb5f4e1c4ea74bce067a1429f03d7.gz

15 years agoremove init from rssaction
Evan Prodromou [Tue, 2 Dec 2008 04:58:25 +0000 (23:58 -0500)]
remove init from rssaction

darcs-hash:20081202045825-5ed1f-5bbbf3954610442bdd123f720b1c85ec85c4449e.gz

15 years agoend ETag with quotes
Evan Prodromou [Tue, 2 Dec 2008 04:55:44 +0000 (23:55 -0500)]
end ETag with quotes

darcs-hash:20081202045544-5ed1f-ac8df1a1c8ae9b2cd72e952144a8c2cb001868c4.gz

15 years agonotices have a create stamp not a modified stamp
Evan Prodromou [Tue, 2 Dec 2008 04:53:20 +0000 (23:53 -0500)]
notices have a create stamp not a modified stamp

darcs-hash:20081202045320-5ed1f-583091191425d10b695107ddc2e1a5e72b60130d.gz

15 years agogenerate an etag for shownotice
Evan Prodromou [Tue, 2 Dec 2008 04:50:21 +0000 (23:50 -0500)]
generate an etag for shownotice

darcs-hash:20081202045021-5ed1f-ca0f14051507602bab8898e1e99d9cdb69f2eadc.gz

15 years agobetter HTTP timestamp
Evan Prodromou [Tue, 2 Dec 2008 04:44:41 +0000 (23:44 -0500)]
better HTTP timestamp

darcs-hash:20081202044441-5ed1f-63025fde108bff917253995f448f841160c8e394.gz

15 years agoadd ETag handling
Evan Prodromou [Tue, 2 Dec 2008 04:42:11 +0000 (23:42 -0500)]
add ETag handling

darcs-hash:20081202044211-5ed1f-d8779be7681fc21eebff3c0c56fdde892c2fa3da.gz

15 years agobetter header for not-modified message
Evan Prodromou [Tue, 2 Dec 2008 04:23:34 +0000 (23:23 -0500)]
better header for not-modified message

darcs-hash:20081202042334-5ed1f-47957bc0ad54d0250a0638b4e6e5a200dac1d335.gz

15 years agobetter logic for if-modified-since
Evan Prodromou [Tue, 2 Dec 2008 04:21:59 +0000 (23:21 -0500)]
better logic for if-modified-since

darcs-hash:20081202042159-5ed1f-16cbaa0253b6b60033bf842dff88b097a41ea328.gz

15 years agowhitespace changes in action.php
Evan Prodromou [Tue, 2 Dec 2008 04:15:32 +0000 (23:15 -0500)]
whitespace changes in action.php

darcs-hash:20081202041532-5ed1f-8c392967eb14d726bc1b761a39c6dce0097879c0.gz