- 24 Feb, 2016 1 commit
-
-
Robert Knight authored
This code is in pretty poor shape. Some lint violations were easily fixed, others will require larger refactoring of the code. Before that can be done the existing behavior needs test coverage. For the moment this commit suppresses the lint violations.
-
- 23 Feb, 2016 34 commits
-
-
Robert Knight authored
As an initial step towards cleaning up the annotation editor component, convert it to JS and add basic tests. The conversion was automated using [decaffeinate](https://github.com/decaffeinate/decaffeinate) with a small amount of subsequent cleanup. The tests are very basic at the moment and cover just the read-only/editing states and rendering of markdown and LaTeX
-
Nick Stenning authored
Add "bouncer" support to Chrome extension
-
Nick Stenning authored
Postgres documents
-
Robert Knight authored
Streamer work queue
-
Robert Knight authored
Remove unnecessary dependency on YAML
-
Nick Stenning authored
Fix form button background gradient
-
Robert Knight authored
Remove unused '...' which were originally variable arguments to the compass 'linear-gradient()' mixin. Now we are just using the linear-gradient() CSS function however so the '...' was never expanded, resulting in invalid CSS.
-
Nick Stenning authored
-
Nick Stenning authored
New front-end build system based on Gulp
-
Robert Knight authored
- Correct the image reference to be valid with the new build system, where styles are served at /assets/styles and images under /assets/images. - Use @include rather than @extend per current CSS conventions for H
-
Robert Knight authored
This check is already performed in scripts/polyfills.js
-
Robert Knight authored
-
Robert Knight authored
This fixes an issue where duplicate sourcemaps were created for modules which had Browserify shims applied to them such as annotator.js and annotator.document.js. The duplicated sourcemaps were not stripped from the bundle by exorcist, resulting in a much larger production build than necessary.
-
Robert Knight authored
-
Robert Knight authored
Some development dependencies were listed in 'dependencies' and others were listed in 'devDependencies'. This makes package.json consistent by listing everything that is either required to build the client in 'dependencies' and everything else in 'devDependencies'. This also removes several unused dependencies.
-
Robert Knight authored
The change in e5bf6d1e to use the same Promise polyfill in the tests as in the app exposed a test which tried to call a missing stub (flash.error). The error previously went unnoticed because it was reported via an unhandled Promise rejection. The core-js Promise polyfill however has a last-resort handler for uncaught promises so the error showed up.
-
Robert Knight authored
* Modify Dockerfile to use Gulp build command to build client assets. * Add 'git' dependency required for installation of node-sass npm dependency.
-
Robert Knight authored
-
Robert Knight authored
-
Robert Knight authored
Using an external reference to h.woff rather than an inline font enables the font to load when served by the Chrome extension on sites that have a strict Content Security Policy, such as GitHub. Regarding the removed comment about URL rewriting, the new Gulp-based build system currently doesn't do any URL rewriting but we do know that styles will be served at /(assets|public)/styles/<bundle name>.css and fonts at /(assets|public)/fonts/<name>.woff , so we can just use a URL relative to the CSS file path. Fixes #2266
-
Robert Knight authored
After replacing the asset build pipeline with Gulp, webassets' only function was to generate URLs for files defined in named bundles and add cache-busting query strings. It wasn't doing the latter because webassets does not generate cache-busting query strings for files it serves unless at least one filter is used or an output path is defined. This commit replaces webassets with a Pyramid static view and a small custom asset config environment, h.assets.Environment. h.assets.Environment reads a set of named bundles defined in the h/assets.yaml config file and a JSON manifest which maps file paths to URLs with cache-busting query strings, generated by the Gulp build process. In the process, the logic for adding CORS headers to static asset requests has been rewritten to 1) Explain _why_ a CORS header is needed and 2) Add the headers in a way that doesn't rely on internal details of how Pyramid works. pyramid.static.static_view is used directly rather than config.add_static_view() because add_static_view() does not provide a way to decorate requests in order to add the CORS header. See https://github.com/Pylons/pyramid/issues/1486
-
Robert Knight authored
The URL polyfill is only required if window.URL lacks a constructor. 'js-polyfills/url' does have its own feature detection but relies on 'URL' being available at 'this.URL' which works when loaded independently but not when included as a CommonJS dependency. Adding our own feature test here should make it easier to avoid loading the polyfill entirely in future on browsers that support the URL constructor.
-
Robert Knight authored
Piping CSS files through autoprefixer is now handled in gulpfile.js
-
Robert Knight authored
As per the comment in karma-phantom-polyfills.js, it is preferable that the tests use only a minimal set of polyfills which match those used in the app. Since we now have a script which requires all of the polyfills used in the app for IE 10/11, we can just include that in karma-phantomjs-polyfill.js. This also removes the need to keep two separate Promise polyfill packages.
-
Robert Knight authored
* Explicitly require the polyfills bundle from the sidebar and injector. In future we'll want to avoid including these polyfills for newer browsers but requiring it explicitly makes it obvious if the bundle is missing in the meantime. * Simplify the configuration specifying the modules to skip parsing for, since there are only two. * Reduce duplicated logic for creating app bundle configuration * Add additional comments and documentation to explain what various parts of the config do * Rename createBundle.js -> create-bundle.js for consistency with the rest of the codebase and move vendor-bundles.js to scripts/gulp to avoid cluttering the top of the source tree.
-
Robert Knight authored
* Unset the doNotParse flag on Bootstrap, since the npm package _does_ use CommonJS modules.
-
Robert Knight authored
ES2015 polyfills have now been centralized in the polyfills.js script.
-
Robert Knight authored
By default the app bundle included the large polyfills for Node's buffer and crypto modules due to them being required by node-uuid. Fix this by making Buffer undefined in the browser and explicitly whitelisting the set of modules that Browserify should polyfill.
-
Robert Knight authored
In particular, explain why noParse is useful and may even be required.
-
Robert Knight authored
-
Robert Knight authored
As explained at https://developer.mozilla.org/en-US/docs/Web/CSS/linear-gradient#History_of_the_syntax the direction syntax was changed a long time ago from '<starting point>' to 'to <destination point>'. This fixes a warning from autoprefixer.
-
Robert Knight authored
This removes several dependencies from the tests that were unused and fixes an issue where Angular was loaded multiple times, once as a global script and once on the first use of "require('angular')" inside a module included in the tests.
-
Robert Knight authored
Use the correct import format for global imports of ES2015 polyfills, as per the core-js documentation.
-
Robert Knight authored
This replaces the webassets build for the front-end JavaScript and CSS with Gulp + Browserify. webassets continues to be used but only to serve the assets, not to generate them or keep track of dependencies. * Use CommonJS for all JS dependency imports rather than relying on Window globals. This makes dependencies more explicit and avoids the need to specify dependencies explicitly in the build tool, since they can be statically analyzed via the require graph. * Remove the webassets custom filters for Browserify and CleanCSS. * Put all generated JS/CSS/font/image assets in build/{images,fonts,styles,scripts} * Replace compass with node-sass + compass-mixins for building the SCSS files. We were not relying heavily on compass functions, many of them were used only for vendor prefixing which is now handled by autoprefixer, so we can remove the Ruby/compass dependency and substitute node-sass quite easily.
-
- 22 Feb, 2016 4 commits
-
-
Robert Knight authored
Add a first pass at a releaser script
-
Christof Dorner authored
Decouple transaction manager from database session
-
Nick Stenning authored
Fix annotation tag links
-
Robert Knight authored
The ng-href directive does not treat its contents as an Angular expression. Fixes a regression introduced in e334fea0241282
-
- 19 Feb, 2016 1 commit
-
-
Robert Knight authored
Randomize websocket reconnects
-