diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-11 21:58:58 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-11 21:58:58 -0400 |
commit | f7c89d6f607d5e5599e9c68c52b01dcd8ce38f82 (patch) | |
tree | 128eacc8ba8f71b29d7841fe3620112e9e94d314 | |
parent | 526a09531e183d9f2483cb1d1e2b0593c0f028a1 (diff) |
start changing default theme to work with new HTML
darcs-hash:20080612015858-84dde-28a67b8a2204cd23ef2fe78ffa19ca1ded13887f.gz
-rw-r--r-- | actions/updateprofile.php | 13 | ||||
-rw-r--r-- | doc/roadmap | 4 | ||||
-rw-r--r-- | theme/default/display.css | 2 |
3 files changed, 15 insertions, 4 deletions
diff --git a/actions/updateprofile.php b/actions/updateprofile.php index ffbcc81c8..5e6166c5e 100644 --- a/actions/updateprofile.php +++ b/actions/updateprofile.php @@ -22,6 +22,17 @@ if (!defined('LACONICA')) { exit(1); } class UpdateprofileAction extends Action { function 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; + } } } diff --git a/doc/roadmap b/doc/roadmap index c89f265b9..a3e725833 100644 --- a/doc/roadmap +++ b/doc/roadmap @@ -128,9 +128,9 @@ First public release (theoretically). Added distributed subscriptions, - only local notices in public RSS + graphic refresh on all + graphic refresh on avatar -- graphic refresh on doc ++ graphic refresh on doc + graphic refresh on login -- graphic refresh on newnotice ++ graphic refresh on newnotice + graphic refresh on password + graphic refresh on profilesettings + graphic refresh on public diff --git a/theme/default/display.css b/theme/default/display.css index 9db1cffed..f1f1f1c98 100644 --- a/theme/default/display.css +++ b/theme/default/display.css @@ -259,7 +259,7 @@ a:hover img { on the content. The background is then applied to #content.
**************************************************************/
-#wrapper {
+#wrap {
width: 589px;
height: 100%;
margin: 0 auto;
|