Skip to content

Commit

Permalink
Merge pull request #848 from superdesk/devel
Browse files Browse the repository at this point in the history
Devel
  • Loading branch information
nistormihai committed Aug 28, 2014
2 parents 7d0b4a2 + de31edd commit 17339a0
Show file tree
Hide file tree
Showing 15 changed files with 30 additions and 29 deletions.
2 changes: 1 addition & 1 deletion plugins/embed/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Plugin for Superdesk Live Blog embed
[![Build Status](https://travis-ci.org/liveblog/plugin-liveblog-embed-server.png?branch=master)](https://travis-ci.org/liveblog/plugin-liveblog-embed-server)
[![Coverage Status](https://coveralls.io/repos/liveblog/plugin-liveblog-embed-server/badge.png?branch=master)](https://coveralls.io/r/liveblog/plugin-liveblog-embed-server?branch=master)
[![Coverage Status](https://coveralls.io/repos/liveblog/plugin-liveblog-embed-server/badge.png?branch=devel)](https://coveralls.io/r/liveblog/plugin-liveblog-embed-server?branch=devel)

This plugin for Sourcefabric’s Superdesk, first released as part of Live Blog 2.0 beta, provides a solution for ensuring that blog content is indexable by search engines. A static HTML version of each blog is now generated on the server. As a publisher, you can set your CMS to request this HTML and insert it into an article page before that page is delivered to the browser. When search engine crawlers visit the page, they will see the latest posts from the embedded blog and index them. New posts are automatically added to the page via Javascript.

Expand Down
24 changes: 12 additions & 12 deletions plugins/embed/gui-resources/scripts/js/build/main.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion plugins/embed/gui-resources/scripts/js/views/posts.js
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ define([

removePostFromCollection: function(post) {
if (!_.isUndefined(post.get('DeletedOn')) ||
post.get('isPublished') === 'False') {
post.get('IsPublished') === 'False') {
this.collection.remove(post);
return true;
}
Expand Down
2 changes: 1 addition & 1 deletion plugins/embed/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"path": "^0.4.9",
"qs": "^0.6.6",
"request": "~2.33.0",
"requirejs": "~2.1.10"
"requirejs": "^2.1.13"
},
"devDependencies": {
"chai": "^1.9.1",
Expand Down
2 changes: 1 addition & 1 deletion plugins/embed/tasks/options/coveralls.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module.exports = {
options: {
debug: true,
coverage_dir: 'coverage/',
dryRun: true,
dryRun: false,
force: true,
recursive: true
}
Expand Down

0 comments on commit 17339a0

Please sign in to comment.