start changing default theme to work with new HTML
darcs-hash:20080612015858-84dde-28a67b8a2204cd23ef2fe78ffa19ca1ded13887f.gz
This commit is contained in:
parent
526a09531e
commit
f7c89d6f60
|
@ -22,6 +22,17 @@ if (!defined('LACONICA')) { exit(1); }
|
||||||
class UpdateprofileAction extends Action {
|
class UpdateprofileAction extends Action {
|
||||||
function handle($args) {
|
function handle($args) {
|
||||||
parent::handle($args);
|
parent::handle($args);
|
||||||
common_server_error(_t('Not yet implemented.'));
|
try {
|
||||||
|
$req = OAuthRequest::from_request();
|
||||||
|
# Note: server-to-server function!
|
||||||
|
$server = omb_oauth_server();
|
||||||
|
list($consumer, $token) = $server->verify_request($req);
|
||||||
|
if ($this->update_profile($req, $consumer, $token)) {
|
||||||
|
print "omb_version=".OMB_VERSION_01;
|
||||||
|
}
|
||||||
|
} catch (OAuthException $e) {
|
||||||
|
common_server_error($e->getMessage());
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -128,9 +128,9 @@ First public release (theoretically). Added distributed subscriptions,
|
||||||
- only local notices in public RSS
|
- only local notices in public RSS
|
||||||
+ graphic refresh on all
|
+ graphic refresh on all
|
||||||
+ graphic refresh on avatar
|
+ graphic refresh on avatar
|
||||||
- graphic refresh on doc
|
+ graphic refresh on doc
|
||||||
+ graphic refresh on login
|
+ graphic refresh on login
|
||||||
- graphic refresh on newnotice
|
+ graphic refresh on newnotice
|
||||||
+ graphic refresh on password
|
+ graphic refresh on password
|
||||||
+ graphic refresh on profilesettings
|
+ graphic refresh on profilesettings
|
||||||
+ graphic refresh on public
|
+ graphic refresh on public
|
||||||
|
|
|
@ -259,7 +259,7 @@ a:hover img {
|
||||||
on the content. The background is then applied to #content.
|
on the content. The background is then applied to #content.
|
||||||
**************************************************************/
|
**************************************************************/
|
||||||
|
|
||||||
#wrapper {
|
#wrap {
|
||||||
width: 589px;
|
width: 589px;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
|
Loading…
Reference in New Issue
Block a user