diff --git a/actions/apitimelineuser.php b/actions/apitimelineuser.php index c0894c5dba..97462452f2 100644 --- a/actions/apitimelineuser.php +++ b/actions/apitimelineuser.php @@ -59,6 +59,8 @@ class ApiTimelineUserAction extends ApiBareAuthAction { var $notices = null; + var $next_id = null; + /** * Take arguments for running * @@ -124,6 +126,24 @@ class ApiTimelineUserAction extends ApiBareAuthAction $suplink = common_local_url('sup', null, null, $this->target->id); header('X-SUP-ID: ' . $suplink); + + // paging links + $nextUrl = !empty($this->next_id) + ? common_local_url('ApiTimelineUser', + array('format' => $this->format, + 'id' => $this->target->id), + array('max_id' => $this->next_id)) + : null; + $lastNotice = $this->notices[0]; + $lastId = $lastNotice->id; + $prevUrl = common_local_url('ApiTimelineUser', + array('format' => $this->format, + 'id' => $this->target->id), + array('since_id' => $lastId)); + $firstUrl = common_local_url('ApiTimelineUser', + array('format' => $this->format, + 'id' => $this->target->id)); + switch($this->format) { case 'xml': $this->showXmlTimeline($this->notices); @@ -150,37 +170,18 @@ class ApiTimelineUserAction extends ApiBareAuthAction // change too quickly! if (!empty($this->next_id)) { - $nextUrl = common_local_url('ApiTimelineUser', - array('format' => 'atom', - 'id' => $this->target->id), - array('max_id' => $this->next_id)); - $atom->addLink($nextUrl, array('rel' => 'next', 'type' => 'application/atom+xml')); } if (($this->page > 1 || !empty($this->max_id)) && !empty($this->notices)) { - - $lastNotice = $this->notices[0]; - $lastId = $lastNotice->id; - - $prevUrl = common_local_url('ApiTimelineUser', - array('format' => 'atom', - 'id' => $this->target->id), - array('since_id' => $lastId)); - $atom->addLink($prevUrl, array('rel' => 'prev', 'type' => 'application/atom+xml')); } if ($this->page > 1 || !empty($this->since_id) || !empty($this->max_id)) { - - $firstUrl = common_local_url('ApiTimelineUser', - array('format' => 'atom', - 'id' => $this->target->id)); - $atom->addLink($firstUrl, array('rel' => 'first', 'type' => 'application/atom+xml')); @@ -201,7 +202,23 @@ class ApiTimelineUserAction extends ApiBareAuthAction $doc->addLink($link, 'alternate', 'text/html'); $doc->addItemsFromNotices($this->notices); - // XXX: Add paging extension? + if (!empty($this->next_id)) { + $doc->addLink($nextUrl, + array('rel' => 'next', + 'type' => ActivityStreamJSONDocument::CONTENT_TYPE)); + } + + if (($this->page > 1 || !empty($this->max_id)) && !empty($this->notices)) { + $doc->addLink($prevUrl, + array('rel' => 'prev', + 'type' => ActivityStreamJSONDocument::CONTENT_TYPE)); + } + + if ($this->page > 1 || !empty($this->since_id) || !empty($this->max_id)) { + $doc->addLink($firstUrl, + array('rel' => 'first', + 'type' => ActivityStreamJSONDocument::CONTENT_TYPE)); + } $this->raw($doc->asString()); break; diff --git a/classes/File.php b/classes/File.php index b834036405..210e758419 100644 --- a/classes/File.php +++ b/classes/File.php @@ -352,30 +352,21 @@ class File extends Managed_DataObject function getEnclosure(){ $enclosure = (object) array(); - $enclosure->title=$this->title; - $enclosure->url=$this->url; - $enclosure->title=$this->title; - $enclosure->date=$this->date; - $enclosure->modified=$this->modified; - $enclosure->size=$this->size; - $enclosure->mimetype=$this->mimetype; - - if (!isset($this->filename)) { - $notEnclosureMimeTypes = array(null,'text/html','application/xhtml+xml'); - $mimetype = $this->mimetype; - if($mimetype != null){ - $mimetype = strtolower($this->mimetype); - } - $semicolon = strpos($mimetype,';'); - if($semicolon){ - $mimetype = substr($mimetype,0,$semicolon); - } - if (in_array($mimetype, $notEnclosureMimeTypes)) { - Event::handle('FileEnclosureMetadata', array($this, &$enclosure)); - } + foreach (array('title', 'url', 'date', 'modified', 'size', 'mimetype') as $key) { + $enclosure->$key = $this->$key; } - if (empty($enclosure->mimetype)) { - // This means we don't know what it is, so it can't be an enclosure! + + $needMoreMetadataMimetypes = array(null, 'text/html', 'application/xhtml+xml'); + + if (!isset($this->filename) && in_array(common_bare_mime($enclosure->mimetype), $needMoreMetadataMimetypes)) { + // This fetches enclosure metadata for non-local links with unset/HTML mimetypes, + // which may be enriched through oEmbed or similar (implemented as plugins) + Event::handle('FileEnclosureMetadata', array($this, &$enclosure)); + } + if (empty($enclosure->mimetype) || in_array(common_bare_mime($enclosure->mimetype), $needMoreMetadataMimetypes)) { + // This means we either don't know what it is, so it can't + // be shown as an enclosure, or it is an HTML link which + // does not link to a resource with further metadata. throw new ServerException('Unknown enclosure mimetype, not enough metadata'); } return $enclosure; @@ -550,4 +541,11 @@ class File extends Managed_DataObject // And finally remove the entry from the database return parent::delete($useWhere); } + + public function getTitle() + { + $title = $this->title ?: $this->filename; + + return $title ?: null; + } } diff --git a/classes/Profile.php b/classes/Profile.php index 94f83ab788..1af29b2620 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -1324,6 +1324,7 @@ class Profile extends Managed_DataObject $object->id = $this->getUri(); $object->title = $this->getBestName(); $object->link = $this->getUrl(); + $object->summary = $this->getDescription(); try { $avatar = Avatar::getUploaded($this); @@ -1390,6 +1391,11 @@ class Profile extends Managed_DataObject return $this->nickname; } + public function getDescription() + { + return $this->bio; + } + /** * Returns the best URI for a profile. Plugins may override. * diff --git a/htaccess.sample b/htaccess.sample index fb191cc7e8..90e18e72e6 100644 --- a/htaccess.sample +++ b/htaccess.sample @@ -19,9 +19,15 @@ RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule (.*) index.php?p=$1 [L,QSA] + + ## You can also use PATHINFO by using this RewriteRule instead: + # RewriteRule (.*) index.php/$1 [L,QSA] + # For mod_access_compat in Apache <2.4 Order allow,deny - + # Use this instead for Apache >2.4 (mod_authz_host) + # Require all denied + diff --git a/lib/apiaction.php b/lib/apiaction.php index d945d532d0..b55647e445 100644 --- a/lib/apiaction.php +++ b/lib/apiaction.php @@ -127,6 +127,7 @@ class ApiAction extends Action var $since_id = null; var $source = null; var $callback = null; + var $format = null; var $access = self::READ_ONLY; // read (default) or read-write diff --git a/lib/attachmentlist.php b/lib/attachmentlist.php index 6609cb40da..d6cfda6f95 100644 --- a/lib/attachmentlist.php +++ b/lib/attachmentlist.php @@ -74,18 +74,28 @@ class AttachmentList extends Widget */ function show() { - $att = $this->notice->attachments(); - if (empty($att)) return 0; + $attachments = $this->notice->attachments(); + $representable = false; + foreach ($attachments as $key=>$att) { + // Only show attachments representable with a title + if ($att->getTitle() === null) { + unset($attachments[$key]); + } + } + if (!count($attachments)) { + return 0; + } + $this->showListStart(); - foreach ($att as $n=>$attachment) { - $item = $this->newListItem($attachment); + foreach ($attachments as $att) { + $item = $this->newListItem($att); $item->show(); } $this->showListEnd(); - return count($att); + return count($attachments); } function showListStart() diff --git a/lib/attachmentlistitem.php b/lib/attachmentlistitem.php index 025ffa9fd6..3764c827cb 100644 --- a/lib/attachmentlistitem.php +++ b/lib/attachmentlistitem.php @@ -63,7 +63,7 @@ class AttachmentListItem extends Widget } function title() { - return $this->attachment->title ?: $this->attachment->filename; + return $this->attachment->getTitle(); } function linkTitle() { diff --git a/lib/inlineattachmentlist.php b/lib/inlineattachmentlist.php index 04fddf3b30..d760400487 100644 --- a/lib/inlineattachmentlist.php +++ b/lib/inlineattachmentlist.php @@ -35,12 +35,8 @@ class InlineAttachmentList extends AttachmentList { function showListStart() { - $this->out->elementStart('div', array('class' => 'attachments')); - } - - function showListEnd() - { - $this->out->elementEnd('div'); + $this->out->element('h2', null, _('Attachments')); + parent::showListStart(); } /** @@ -59,20 +55,8 @@ class InlineAttachmentList extends AttachmentList class InlineAttachmentListItem extends AttachmentListItem { function showLink() { - $this->out->elementStart('a', $this->linkAttr()); + $this->out->element('a', $this->linkAttr(), $this->title()); $this->showRepresentation(); - $this->out->elementEnd('a'); - } - - /** - * Build HTML attributes for the link - * @return array - */ - function linkAttr() - { - $attr = parent::linkAttr(); - $attr['class'] = 'attachment-thumbnail'; - return $attr; } /** @@ -84,7 +68,7 @@ class InlineAttachmentListItem extends AttachmentListItem { // XXX: RDFa // TODO: add notice_type class e.g., notice_video, notice_image - $this->out->elementStart('span', array('class' => 'inline-attachment')); + $this->out->elementStart('li', array('class' => 'inline-attachment')); } /** @@ -96,6 +80,6 @@ class InlineAttachmentListItem extends AttachmentListItem */ function showEnd() { - $this->out->elementEnd('span'); + $this->out->elementEnd('li'); } } diff --git a/lib/installer.php b/lib/installer.php index dc4c7786a8..cea7d29ec7 100644 --- a/lib/installer.php +++ b/lib/installer.php @@ -293,6 +293,11 @@ abstract class Installer } } + if (!$conn instanceof DB_common) { + // Is not the right instance + throw new Exception('Cannot connect to database: ' . $conn->getMessage()); + } + $res = $this->updateStatus("Creating database tables..."); if (!$this->createCoreTables($conn)) { $this->updateStatus("Error creating tables.", true); diff --git a/lib/siteprofile.php b/lib/siteprofile.php index d2a4a00204..569a4bbaf8 100644 --- a/lib/siteprofile.php +++ b/lib/siteprofile.php @@ -230,8 +230,6 @@ class SingleuserSite extends SiteProfileSettings 'core' => self::corePlugins(), 'default' => array_merge(self::defaultPlugins(), array( 'MobileProfile' => array(), - 'TwitterBridge' => array(), - 'FacebookBridge' => array(), )), 'disable-Directory' => 1, ), diff --git a/lib/util.php b/lib/util.php index fd89bb491c..08a0cdea2f 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1820,6 +1820,15 @@ function common_get_mime_media($type) return strtolower($tmp[0]); } +function common_bare_mime($mimetype) +{ + $mimetype = mb_strtolower($mimetype); + if ($semicolon = mb_strpos($mimetype, ';')) { + $mimetype = mb_substr($mimetype, 0, $semicolon); + } + return $mimetype; +} + function common_mime_type_match($type, $avail) { if(array_key_exists($type, $avail)) { diff --git a/plugins/Event/classes/RSVP.php b/plugins/Event/classes/RSVP.php index 31ccf439ef..de3307fad4 100644 --- a/plugins/Event/classes/RSVP.php +++ b/plugins/Event/classes/RSVP.php @@ -226,7 +226,12 @@ class RSVP extends Managed_DataObject static function fromNotice(Notice $notice) { - return RSVP::getKV('uri', $notice->uri); + $rsvp = new RSVP(); + $rsvp->uri = $notice->uri; + if (!$rsvp->find(true)) { + throw new NoResultException($rsvp); + } + return $rsvp; } static function forEvent(Happening $event) diff --git a/plugins/TwitterBridge/TwitterBridgePlugin.php b/plugins/TwitterBridge/TwitterBridgePlugin.php index 3284d10563..8d14744090 100644 --- a/plugins/TwitterBridge/TwitterBridgePlugin.php +++ b/plugins/TwitterBridge/TwitterBridgePlugin.php @@ -30,7 +30,7 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php'; +require_once __DIR__ . '/twitter.php'; /** * Plugin for sending and importing Twitter statuses diff --git a/plugins/TwitterBridge/actions/twitterauthorization.php b/plugins/TwitterBridge/actions/twitterauthorization.php index aace7e4f09..ce6af091e2 100644 --- a/plugins/TwitterBridge/actions/twitterauthorization.php +++ b/plugins/TwitterBridge/actions/twitterauthorization.php @@ -32,7 +32,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php'; +require_once dirname(__DIR__) . '/twitter.php'; /** * Class for doing OAuth authentication against Twitter diff --git a/plugins/TwitterBridge/actions/twitterlogin.php b/plugins/TwitterBridge/actions/twitterlogin.php index 379e136045..ee00714c9f 100644 --- a/plugins/TwitterBridge/actions/twitterlogin.php +++ b/plugins/TwitterBridge/actions/twitterlogin.php @@ -32,7 +32,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php'; +require_once dirname(__DIR__) . '/twitter.php'; /** * Page for logging in with Twitter diff --git a/plugins/TwitterBridge/actions/twittersettings.php b/plugins/TwitterBridge/actions/twittersettings.php index cc3e34f345..37abb4d272 100644 --- a/plugins/TwitterBridge/actions/twittersettings.php +++ b/plugins/TwitterBridge/actions/twittersettings.php @@ -31,7 +31,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php'; +require_once dirname(__DIR__) . '/twitter.php'; /** * Settings for Twitter integration diff --git a/plugins/TwitterBridge/daemons/synctwitterfriends.php b/plugins/TwitterBridge/daemons/synctwitterfriends.php index 651c4d34da..8b8ffbfd49 100755 --- a/plugins/TwitterBridge/daemons/synctwitterfriends.php +++ b/plugins/TwitterBridge/daemons/synctwitterfriends.php @@ -31,7 +31,7 @@ Batch script for synching local friends with Twitter friends. END_OF_TRIM_HELP; require_once INSTALLDIR . '/scripts/commandline.inc'; -require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php'; +require_once dirname(__DIR__) . '/twitter.php'; /** * Daemon to sync local friends with Twitter friends diff --git a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php index b4b78dc80a..74fc77cd79 100755 --- a/plugins/TwitterBridge/daemons/twitterstatusfetcher.php +++ b/plugins/TwitterBridge/daemons/twitterstatusfetcher.php @@ -39,7 +39,7 @@ END_OF_TRIM_HELP; require_once INSTALLDIR . '/scripts/commandline.inc'; require_once INSTALLDIR . '/lib/common.php'; require_once INSTALLDIR . '/lib/daemon.php'; -require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php'; +require_once dirname(__DIR__) . '/twitter.php'; /** * Fetch statuses from Twitter diff --git a/plugins/TwitterBridge/lib/tweetinqueuehandler.php b/plugins/TwitterBridge/lib/tweetinqueuehandler.php index 0ab7480305..cc0c05f9a6 100644 --- a/plugins/TwitterBridge/lib/tweetinqueuehandler.php +++ b/plugins/TwitterBridge/lib/tweetinqueuehandler.php @@ -19,7 +19,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php'; +require_once dirname(__DIR__) . '/twitter.php'; /** * Queue handler to deal with incoming Twitter status updates, as retrieved by diff --git a/plugins/TwitterBridge/lib/twitterimport.php b/plugins/TwitterBridge/lib/twitterimport.php index 41d8ac9d46..5258bfc2c9 100644 --- a/plugins/TwitterBridge/lib/twitterimport.php +++ b/plugins/TwitterBridge/lib/twitterimport.php @@ -31,7 +31,7 @@ if (!defined('STATUSNET')) { exit(1); } -require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php'; +require_once dirname(__DIR__) . '/twitter.php'; /** * Encapsulation of the Twitter status -> notice incoming bridge import. diff --git a/plugins/TwitterBridge/lib/twitterqueuehandler.php b/plugins/TwitterBridge/lib/twitterqueuehandler.php index 644ce17871..bba1b8b2bc 100644 --- a/plugins/TwitterBridge/lib/twitterqueuehandler.php +++ b/plugins/TwitterBridge/lib/twitterqueuehandler.php @@ -19,7 +19,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php'; +require_once dirname(__DIR__) . '/twitter.php'; class TwitterQueueHandler extends QueueHandler { diff --git a/plugins/TwitterBridge/tweetctlqueuehandler.php b/plugins/TwitterBridge/tweetctlqueuehandler.php index 4c8bef463e..d7636c373e 100644 --- a/plugins/TwitterBridge/tweetctlqueuehandler.php +++ b/plugins/TwitterBridge/tweetctlqueuehandler.php @@ -19,7 +19,7 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } -require_once INSTALLDIR . '/plugins/TwitterBridge/twitter.php'; +require_once __DIR__ . '/twitter.php'; /** * Queue handler to deal with incoming Twitter status updates, as retrieved by diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 792501e289..1029850a1e 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -704,7 +704,7 @@ font-style:italic; min-height: 1em; } -#shownotice .notice .h-entry {, +#shownotice .notice .h-entry { font-size:2.2em; min-height:123px; font-size: 1.6em; @@ -812,6 +812,15 @@ position:static; top: 1em; } +.notice.h-entry .attachments .inline-attachment * { + max-width: 100%; +} +.notice.h-entry .attachments .inline-attachment > a { + font-size: 0.88em; + line-height: 16px; + height: 16px; +} + #attachments { clear:both; float:left; @@ -1991,8 +2000,6 @@ margin:0; #profile_search_results { display:block; border-radius:4px; --moz-border-radius:4px; --webkit-border-radius:4px; max-height:800px; margin:10px 0; padding: 5px; @@ -2061,8 +2068,6 @@ float:left; padding: 6px; margin: 4px 0px 0px 4px; border-top-left-radius: 7px; - -moz-border-radius-topleft: 7px; - -webkit-border-top-left-radius: 7px; } .oauth-desktop-mode fieldset { @@ -2484,7 +2489,7 @@ display:none; list-style-type: none; } -/*end of @media screen, projection, tv*/ +}/*end of @media screen, projection, tv*/ @media print { diff --git a/theme/neo/css/display.css b/theme/neo/css/display.css index dce214f07b..a46f296537 100644 --- a/theme/neo/css/display.css +++ b/theme/neo/css/display.css @@ -442,7 +442,6 @@ h6 {font-size: 1em;} border: 1px solid #aaa; border-radius: 4px; box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4); - position: relative; } .notice-options .form_repeat.dialogbox legend {