- 03 Mar, 2017 1 commit
-
-
Robert Knight authored
This OS-specific dependency was inadvertently added to the shrinkwrap in ed4afca0
-
- 02 Mar, 2017 3 commits
-
-
Sean Roberts authored
Add eslint rule to raise a warning if any of the tests are using the …
-
Sean Roberts authored
Add a guide to developing the Hypothesis client
-
Sheetal Umesh Kumar authored
-
- 01 Mar, 2017 11 commits
-
-
Robert Knight authored
-
Robert Knight authored
Add an initial guide to developing the Hypothesis client, covering: - Installation - Getting a local build of the client working with the browser extension or a local Hypothesis service - Running tests - Some basic pointers on code style and where to find guidance for creating pull requests This guide assumes that the service is configured to use the client's new boot script.
-
Robert Knight authored
Add tests for login control.
-
Sheetal Umesh Kumar authored
-
Robert Knight authored
Add CORS headers to assets served by the client's dev server, otherwise the client's icon font will fail to load in many browsers.
-
Robert Knight authored
-
Robert Knight authored
Due to a problem where an earlier version of 1.0.0 and 1.1.0 were published to npm and then unpublished, thereby preventing re-use of these versions, we're going to skip straight to 1.2.0.
-
Robert Knight authored
-
Robert Knight authored
-
Robert Knight authored
-
Robert Knight authored
Call partner provided login callback
-
- 28 Feb, 2017 5 commits
-
-
Robert Knight authored
An inconsistency crept in where the annotator code reads settings from JSON script tags with a 'js-hypothesis-config' class name but the sidebar app reads settings from JSON script tags with a 'js-hypothesis-settings' class name. The boot script ended up using 'js-hypothesis-settings' which is the default class name specified in `settings.js`. We should use the same name everywhere, which needs to be 'js-hypothesis-config' since that is used by the public documentation [1]. This commit changes the default class to `js-hypothesis-config` and removes the ability to specify alternative class names when calling `settings()`. The extension and service will need to be updated to use the new class name. [1] See docs/config.md
-
Nick Stenning authored
Add an express server which serves the package's contents.
-
Sean Hammond authored
Fix PDF quote anchoring (Part II)
-
Sean Hammond authored
When the client is embedded in a partner site and a login button in the client is clicked, call the JavaScript onLogin function that was provided to us by the partner via the window.hypothesisConfig function. When not embedded in a partner site, just prompt for a first-party login as normal. Note that this means that if the client is embedded in a partner site with no onLogin callback in window.hypothesisConfig, then nothing will happen when the login button in the client is clicked.
-
Sean Hammond authored
Separate bridge events sent from sidebar to annotator and from annotator to sidebar into two separate sections in the source code. Just to make documentation of the events clearer.
-
- 27 Feb, 2017 18 commits
-
-
Robert Knight authored
- /hypothesis and /hypothesis@X.Y.Z serve the boot script - /hypothesis/X.Y.Z/ serves the files for a given version of the package
-
Robert Knight authored
The change from defining a `window.hypothesisConfig` function to using a script config tag was left over from an earlier version of the package content server work.
-
Robert Knight authored
This is now just getting distracting amidst the more important information that gets logged during a build.
-
Robert Knight authored
Print the sidebar app URL and asset root URL that were baked into the client after the first build. This is useful to verify that the build was run with the expected environment.
-
Robert Knight authored
To facilitate testing the client on devices that are not the same as the one the package server and Hypothesis dev server are running on, it is useful to be able to set the hostname for URLs that point to the package content server that `gulp watch` runs. This commit adds support for setting this via a `PACKAGE_SERVER_HOSTNAME` env var.
-
Robert Knight authored
When building the client in development mode, make the client load assets from the package content server by default. Also if `H_SERVICE_URL` is set, bake that service's /app.html endpoint into the boot script.
-
Robert Knight authored
The live reload server's example page was modified to use a script tag for config settings because the boot script currently only reads that config source and does not use `window.hypothesisConfig()`. In order to use the sidebar app from the local service, the service needs to be configured to serve the local client by setting the 'CLIENT_URL' env var before running the devserver and in the client, the 'H_SERVICE_URL' env var needs to be pointed at the devserver host.
-
Robert Knight authored
Make the package content server mirror unpkg's behavior in that: - The entry point for a package is located at `/{packageName}@{version}` - Requests without a package version specified redirect to the corresponding path for the latest package version
-
Robert Knight authored
Add an express server which serve's the package's contents in a manner similar to unpkg: - The '/' route serves the package's entry point script - Other routes serve files from the package This can be used together with the CLIENT_URL setting in the Hypothesis service to configure the service to serve the local development version of the client instead of the production version.
-
Robert Knight authored
Looking at the `anchor` function, it is clearly intended that the position selector is optional for anchoring, as is the case for HTML anchoring. However, anchoring using only a quote selector did not actually work. This was in part due to the bug fixed in the previous commit but also because of a missing check for a null position selector when populating the (quote,position) cache. In order for the test to pass using only a quote, it was necessary to change the search string to a unique quote which only occurs once in the document. Otherwise the quote anchoring found the occurrence of 'Netherfield Park' on the non-rendered page 1.
-
Robert Knight authored
The `findInPages` function was supposed to search for a quote looking at each of the page indexes in the input array, in order. However because of the way that `next` was used, this function ended up only searching the first page in the list. The `then(attempt, next)` code was intended to try the current page and then move to the next in the list if no match was found. However the `next` function is not called if `attempt` throws in this context. The `pdfContent` var in the test was renamed to `pdfPages` for clarity.
-
Robert Knight authored
Fix PDF quote anchoring
-
-
Robert Knight authored
The previous syntax ended up executing: docker run -d hypothesis s3://cdn.hypothes.is nickstenning/s3-npm-publish So `hypothesis` was interpreted as the Docker image name instead of an argument. Passing the args as the second ('command') argument to `Image.withRun` results in the correct command being executed: docker run -d nickstenning/s3-npm-publish hypothesis s3://cdn.hypothes.is
-
Robert Knight authored
-
Robert Knight authored
Upload the client to the S3 bucket behind cdn.hypothes.is after publishing to npm. The service will then redirect requests for /embed.js to cdn.hypothes.is/hypothesis
-
Robert Knight authored
-
Robert Knight authored
We decided to publish the client's assets to a Hypothesis-specific domain because publishers (eg. https://internethealthreport.org) may want to use CSP to restrict where assets are loaded from and they won't want to whitelist the whole of npm. This also gives us better control over caching headers used on assets.
-
- 24 Feb, 2017 2 commits
-
-
Robert Knight authored
Improves performance and includes a number of bug fixes. See https://github.com/showdownjs/showdown/blob/master/CHANGELOG.md for changes. Several tests required small changes because the rendering of `para1\n\npara2` changed from: `<p>para1</p>\n\n<p>para2</p>` To the visually equivalent: `<p>para1</p>\n<p>para2</p>`
-
Robert Knight authored
This test fails without the `toPositionAnchor` fix in the previous commit.
-