- 13 Jun, 2016 2 commits
-
-
Christof Dorner authored
Do not use query property in Subscriptions.get_subscriptions_for_uri
-
Christof Dorner authored
Remove query property usage in h.groups
-
- 10 Jun, 2016 14 commits
-
-
Nick Stenning authored
Extract tag editor into separate component and update ng-tags-input
-
Robert Knight authored
This fixes some issues with Angular 1.5.x. See https://github.com/mbenford/ngTagsInput/blob/master/CHANGELOG.md Fixes #3324
-
Robert Knight authored
As part of an effort to simplify the <annotation> directive and make testing easier, split this out.
-
Sean Hammond authored
Pg cleanup
-
Robert Knight authored
Add options page to extension, allow disabling badge
-
Robert Knight authored
The idiomatic way to create derived data structures from data in the Redux state store is to do: derivedData = transform(select(store.getState())) Where the `select` function extracts the relevant fields from the state and the `transform` function then computes the derived data. Both `select` and `transform` can be trivially memoized to avoid unnecessary recalculations. This simplifies `root-thread` by avoiding inheritance from EventEmitter and in future will make it easier to avoid rebuilding the thread if none of the relevant application state has changed.
-
Sean Hammond authored
Do not use query property in User.get_by_username
-
Nick Stenning authored
Extract timestamp out into its own component
-
Robert Knight authored
The util.createDirective() test helper assumes that directives have controllers and reports an error if it fails to find one. The simplest solution is just to add no-op controllers to the affected directives.
-
Robert Knight authored
This makes it easier to test the refresh logic directly and decouples it from the rest of the annotation display.
-
Robert Knight authored
This brings support for lifecycle hooks which get called when components are mounted, when their inputs are changed and when they are destroyed. See https://github.com/angular/angular.js/commit/9cd9956d Angular patch releases have historically been pretty safe WRT breaking changes, so this loosens the version strictness slightly.
-
Robert Knight authored
Rather than imperatively adding a 'keydown' event handler in the <annotation> link function, use `ng-keydown` to set up an event handler instead. With this we no longer need a link function.
-
Nick Stenning authored
Persist in-place mutations of annotation tags and extras
-
Sean Hammond authored
Do not use query property in Blocklist model
-
- 09 Jun, 2016 9 commits
-
-
Robert Knight authored
Remove path for local pdf files.
-
Sheetal Umesh Kumar authored
Currently, when annotating a local PDF, the `file://` URL will be submitted to the server. It is not appropriate to submit local file paths to the server. Since entries in document.link should be URIs, omit the URL in the case of local files. https://trello.com/c/K8t2kl9m/331-don-t-save-file-urls-in-document-metadata 53725fd
-
Sean Hammond authored
Do not use query property in Token.get_by_{userid,value}
-
Alice Wyan authored
Add Hypothesis-driven property-based tests for query builder
-
Robert Knight authored
Use PDF fingerprint as primary search URI for PDFs instead of url.
-
Robert Knight authored
The `actual` value is always the first argument to `assert` functions. Also add an explicit separate test that checks that PDFMetadata functions resolve immediately if the document is already loaded.
-
Nick Stenning authored
Consider the following situation: - A PDF with fingerprint (F) exists at multiple URLs (U1, U2, ...) - A user visits the PDF at U1 and annotates it - A second user visits the PDF at U2 Prior to this commit, due to the way document equivalence for PDFs functions, the annotations made at U1 will not be loaded, because the initial search is made for U2 only. (If the second user subsequently makes annotations at U2, and then reloads the page, the annotations made at U1 will then show up, as the association between U2 and F will have been made). This commit improves the situation here by treating the PDF fingerprint as the "primary URI" for the document, much as we treat <link rel="canonical"> URLs as "primary" if we find them in an HTML page. This means that the initial search will be made for the fingerprint F, which will match the annotations made at U1. For more, see: https://trello.com/c/DVUemKwi/329-use-pdf-fingerprint-as-primary-search-uri-for-pdfs
-
Sheetal Umesh Kumar authored
In order to make it easier to change the document metadata retrieved for PDFs, this commit moves the code responsible for extracting that metadata into a separate (tested) service. We also remove our reliance on the `PDFViewerApplication.loading` which was removed from the bundled version of PDF.js in August 2015. Instead we simply check to see if `PDFViewerApplication.documentFingerprint` is available. If not, we listen for the first 'documentload' event before extracting metadata from the `PDFViewerApplication`.
-
Nick Stenning authored
Add edit view for feature cohorts
-
- 07 Jun, 2016 3 commits
-
-
Robert Knight authored
Remove old features from FEATURES_PENDING_REMOVAL
-
Nick Stenning authored
Load annotation from DB in streamer
-
Christof Dorner authored
Add non-nullable and default values to annotation.extra
-
- 06 Jun, 2016 3 commits
-
-
Robert Knight authored
* Implement new design for hovered conversation threads Implement the new design for hovered replies from https://trello.com/c/aXCXxzx2 . The most visible effect is that conversation threads have a grey background when hovered. In the process of implementing the new styling, there is some cleanup of the CSS: * Use `--reply`/`--top-reply` modifier classes on <annotation> and <annotation-thread> elements to style annotations, top-level replies and nested replies differently. This makes the CSS simpler and reduces the risk of unexpected side effects that come with descendant selectors. * Rename `thread` CSS classes to match the name of the component that they are used in, `annotation-thread`. * Move 'annotation-unavailable-message' styling to app.scss This class is used in the root template (viewer.html) not the <annotation-thread> component. * Darken expand/collapse toggle arrow only when annotation itself is hovered Darken the expand/collapse arrow when an annotation is hovered but not when its replies are hovered. * Remove no-op CSS class The `clear: both` styling had no effect because <annotation-thread> is now using flexbox rather than floats for layout. * Do not show 'Hide replies' link for replies For replies there were two different ways to collapse the annotation card, the expand/collapse toggle arrow and the 'Hide replies' link. Removing the 'Hide replies' link avoids having two ways to do the same thing and makes the cards look cleaner. * Remove the light grey background for hovered replies Following design review, remove the grey background for hovered replies. * Make rendering of dashed lines to the left of replies better in Chrome Previously the dashed line started at the top of the <annotation-thread> component and the top part was covered up by the thread expand/collapse toggle. In Chrome the alignment of dashes within a dashed border varies as the height of the element changes [1]. Therefore depending on the height of the reply, this could result in the visible part of the line below the collapse/expand toggle starting at either a gap or dash in the line. By instead moving the dashed line to a separate element which is positioned beneath the expand/collapse toggle, the first visible dash in the reply line always appears in the same place and is aligned correctly with the annotation content to its right. [1] See http://www.impressivewebs.com/comparison-css-border-style/ for a visual representation of why this is done.
-
Robert Knight authored
This adds an integration test for anchoring of annotations loaded into the annotator guest via the sidebar. This was extracted from https://github.com/hypothesis/h/pull/3313 The test case for nested annotations has been marked as an expected failure until a better resolution for #3278 has been found.
-
Robert Knight authored
Fix distracting 404s in karma/phantom test output
-
- 03 Jun, 2016 4 commits
-
-
Sean Hammond authored
Use new TokenAuthenticationPolicy and remove cruft
-
Christof Dorner authored
Feature flags cohorts: Add Feature Cohorts admin panel
-
Sean Hammond authored
Add a TokenAuthenticationPolicy for bearer tokens
-
Christof Dorner authored
Remove additional margin at foot of annotation card
-
- 02 Jun, 2016 5 commits
-
-
Robert Knight authored
Move canonical annotation list sort state to Redux store
-
Nick Stenning authored
This fixes some distracting warnings in the test output.
-
Nick Stenning authored
This is a minor tweak so that we don't try and use CoffeeScripts "x in y" (which reduces to "y.indexOf(x) !== -1") when y is undefined).
-
Robert Knight authored
This is a step towards getting us to a place where all important state in the front-end app is managed in the same way - kept in the Redux store and modified only via actions. The sort state was duplicated as a property on the $scope and also stored in the Redux store. Instead just expose functions on the scope which retrieve this state directly from the store and dispatch an action to the store when the user selects a different sort mode. In addition, the terminology for sorting has been normalised across the application (sortBy/sortOptions -> sortKey/sortKeysAvailable), and the ability to sort the stream has been removed, as it was nonsensical and broken.
-
Christof Dorner authored
Fix icon spacing
-