Quantcast
Channel: FeedBunch:efacb52ed3a147a98c1c8f939a1f961c107280be commits
Browsing latest articles
Browse All 40 View Live
↧

Pull velocity with bower instead of copying it by hand to /vendor/assets

It also pulls jquery as a bower dependency. However jquery won't be added to the asset pipeline, the app links to it from a CDN.

View Article


Pull within-viewport with bower instead of copying it by hand to /vendor/assets

View Article


Include bower-rails gem in all environments, not just development.

Otherwise the bower_rails.rb initializer raises an error when starting up the app, in other environments.

View Article

Replaced in Bowerfile "within-viewport" js library with "isInViewport".

Within-viewport doesn't seem to be under active development and its latest version worked weirdly (it seems it doesn't correctly detect the viewport coordinates). On the other hand isInViewport is...

View Article

Removed unused $rootScope injection in angularjs service.

View Article


Force bower to resolve relative paths in components before precompiling asset...

Force bower to resolve relative paths in components before precompiling assets with the rails asset pipeline. Necessary for relative paths not to be broken when deploying with capistrano.

View Article

WIP: run a worker every hour that recreates and resets the demo user.

View Article

WIP: acceptance tests for the demo user.

View Article


Set the demo user email and password in an initializer, instead of in class c...

Easier to change this way, just change the initializer and restart the server.

View Article


Added boolean flag to initialization that enables or disables the demo user.

View Article

Reorganization of tests.

View Article

WIP: periodically reset demo user configuration.

View Article

DRY up worker.

View Article


Implemented sidekiq worker to reset demo user configuration, folders, subscri...

View Article

Reload demo user object after unsubscribing and before subscribing to default...

This should remove an error where the worker incorrectly thought that the demo user was already subscribed to a feed.

View Article


Increment sidekiq concurrent threads from 3 to 10.

With the recent addition of pgbouncer as a postgresql connection pool, the production environment should handle the additional load.

View Article

Serve jquery, angularjs, angularjs-touch, angularjs-sanitize, bootstrap and...

Serve jquery, angularjs, angularjs-touch, angularjs-sanitize, bootstrap and fontawesome through the asset path instead of from a CDN. Jquery CDN is currently down which completely breaks feedbunch....

View Article


Added fontawesome fonts to asset pipeline.

View Article

Fixed serving font-awesome fonts from self-hosting.

View Article

Give a time interval in a test 1 additional minute on each end.

Hopefully this removes an intermittent error which I think is related to time precision.

View Article

WIP: acceptance tests for the demo user feature.

View Article


Signup/signin buttons are wrapped in a div, not a p.

It makes more sense semantically.

View Article


Added informative popup about the demo user to the landing page.

View Article

The demo user email and password cannot be changed, and it cannot be locked...

The demo user email and password cannot be changed, and it cannot be locked because of too many authentication failures. This guarantees that the demo user is available for all visitors.

View Article

Workers related to OPML import are now in the "import_subscriptions" queue.

This queue has a higher priority than the "update_feeds" queue. This way imports run before scheduled feed updates if there is a large backlog of jobs.

View Article


Store the url blacklist as a list of host objects during initialization,...

Store the url blacklist as a list of host objects during initialization, instead of a list of strings with URLs. This should improve performance: every time a feed is saved it is checked against the...

View Article

When fetching a feed, if the cached response is still valid, skip processing ...

This should improve performance: scheduled feed updates now don't parse and attempt to save entries which we know are already in the database, because the response is cached and there are no new...

View Article

The worker that runs when an OPML import finishes is in the same queue as the...

The worker that runs when an OPML import finishes is in the same queue as the rest of workers related to OPML import. This worker sets the job state to either SUCCESS or ERROR, and sends a notification...

View Article

Improved validations in the worker that updates unread counts for a given use...

It validates that both the user and feed exist, and that the user is subscribed to the feed. If any of those validations fail a warning is logged, no error is raised and the worker exits.

View Article



Upload managers (S3Client, FileClient) now receive a user ID as argument,...

Upload managers (S3Client, FileClient) now receive a user ID as argument, instead of a user instance. This way they can operate on uploaded files even if the user has been deleted. The User ID is part...

View Article

Removed unused method.

View Article

Better control the case in which the server returns a blank response (or no...

Better control the case in which the server returns a blank response (or no response) when fetching a feed.

View Article

Fix typo in readme.

View Article


When subscribing to a feed, check if the feed is blacklisted before checking...

When subscribing to a feed, check if the feed is blacklisted before checking if the feed is already in the DB. In the case that the feed is blacklisted AND exists in the DB (this should never happen,...

View Article

WIP: support for internationalized URLs.

See here: http://en.wikipedia.org/wiki/Internationalized_domain_name The native ruby URI module does not support IRIs, but the addressable gem does.

View Article

WIP: fix tests

View Article


Moved the method to normalize URLs from a helper module to a class in /lib.

This is more coherent with the code organization of the rest of the project.

View Article


Renaming of method.

View Article

Moved code that normalizes entry URLs to the URLNormalizer class.

It is similar to the normalization of feed URLs but with some differences. Most importantly relative URLs have to be translated to absolute ones. Also, bring back reencoding from iso8859-1 to utf-8 if...

View Article

Fixed unit test.

View Article
Browsing latest articles
Browse All 40 View Live