From 85496f409afdbac51af5c4e01088eb0dd3d5dc4a Mon Sep 17 00:00:00 2001
From: Kevin Ansfield Welcome to my post. Welcome to my post. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est. mctesters mctesters Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo. Quisque sit amet est et sapien ullamcorper pharetra. Vestibulum erat wisi, condimentum sed, Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus magna. Cras in mi at felis aliquet congue. Ut a est eget ligula molestie gravida. Curabitur massa. Donec eleifend, libero at sagittis mollis, tellus est malesuada tellus, at luctus turpis elit sit amet quam. Vivamus pretium ornare est. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.Test 123
',
- markdown: '# Test 123',
+ markdown: markdownToMobiledoc('# Test 123'),
title: 'This is a test post',
slug: 'this-is-a-test-post',
secure: true,
diff --git a/core/test/unit/metadata/canonical_url_spec.js b/core/test/unit/metadata/canonical_url_spec.js
index f55a91e325..aa0edf7565 100644
--- a/core/test/unit/metadata/canonical_url_spec.js
+++ b/core/test/unit/metadata/canonical_url_spec.js
@@ -1,12 +1,13 @@
var should = require('should'), // jshint ignore:line
- getCanonicalUrl = require('../../../server/data/meta/canonical_url');
+ getCanonicalUrl = require('../../../server/data/meta/canonical_url'),
+ markdownToMobiledoc = require('../../utils/fixtures/data-generator').markdownToMobiledoc;
describe('getCanonicalUrl', function () {
it('should return absolute canonical url for post', function () {
var canonicalUrl = getCanonicalUrl({
url: '/this-is-a-test-post/',
html: 'Test 123
',
- markdown: '# Test 123',
+ mobiledoc: markdownToMobiledoc('# Test 123'),
title: 'This is a test post',
slug: 'this-is-a-test-post',
secure: true
@@ -20,7 +21,7 @@ describe('getCanonicalUrl', function () {
var canonicalUrl = getCanonicalUrl({
url: '/this-is-a-test-post/amp/',
html: 'Test 123
',
- markdown: '# Test 123',
+ mobiledoc: markdownToMobiledoc('# Test 123'),
title: 'This is a test post',
slug: 'this-is-a-test-post',
secure: true
diff --git a/core/test/unit/metadata/schema_spec.js b/core/test/unit/metadata/schema_spec.js
index 57aaff837f..64c4d9d56e 100644
--- a/core/test/unit/metadata/schema_spec.js
+++ b/core/test/unit/metadata/schema_spec.js
@@ -1,5 +1,6 @@
var should = require('should'),
- getSchema = require('../../../server/data/meta/schema');
+ getSchema = require('../../../server/data/meta/schema'),
+ markdownToMobiledoc = require('../../utils/fixtures/data-generator').markdownToMobiledoc;
describe('getSchema', function () {
it('should return post schema if context starts with post', function (done) {
@@ -142,7 +143,7 @@ describe('getSchema', function () {
post: {
title: 'Post Title',
slug: 'my-amp-post-slug',
- markdown: 'some markdown',
+ mobiledoc: markdownToMobiledoc('some markdown'),
html: 'some html',
author: {
name: 'Post Author',
diff --git a/core/test/unit/metadata/url_spec.js b/core/test/unit/metadata/url_spec.js
index 6205f1302d..d72375abad 100644
--- a/core/test/unit/metadata/url_spec.js
+++ b/core/test/unit/metadata/url_spec.js
@@ -1,11 +1,12 @@
var should = require('should'), // jshint ignore:line
- getUrl = require('../../../server/data/meta/url');
+ getUrl = require('../../../server/data/meta/url'),
+ markdownToMobiledoc = require('../../utils/fixtures/data-generator').markdownToMobiledoc;
describe('getUrl', function () {
it('should return url for a post', function () {
var url = getUrl({
html: 'testing<\/h2>\n/);
xmlData.should.match(/
/);
xmlData.should.match(/
testing<\/h2>\n/);
xmlData.should.match(/
/);
diff --git a/core/test/unit/server_helpers/next_post_spec.js b/core/test/unit/server_helpers/next_post_spec.js
index 9b3b14e89c..bf28f7b86c 100644
--- a/core/test/unit/server_helpers/next_post_spec.js
+++ b/core/test/unit/server_helpers/next_post_spec.js
@@ -1,6 +1,7 @@
var should = require('should'), // jshint ignore:line
sinon = require('sinon'),
Promise = require('bluebird'),
+ markdownToMobiledoc = require('../../utils/fixtures/data-generator').markdownToMobiledoc,
// Stuff we are testing
helpers = require('../../../server/helpers'),
api = require('../../../server/api'),
@@ -33,7 +34,7 @@ describe('{{next_post}} helper', function () {
helpers.prev_post.call({
html: 'content',
status: 'published',
- markdown: 'ff',
+ mobiledoc: markdownToMobiledoc('ff'),
title: 'post2',
slug: 'current',
created_at: new Date(0),
@@ -68,7 +69,7 @@ describe('{{next_post}} helper', function () {
helpers.prev_post.call({
html: 'content',
- markdown: 'ff',
+ mobiledoc: markdownToMobiledoc('ff'),
title: 'post2',
slug: 'current',
created_at: new Date(0),
@@ -127,7 +128,7 @@ describe('{{next_post}} helper', function () {
helpers.prev_post.call({
html: 'content',
status: 'published',
- markdown: 'ff',
+ mobiledoc: markdownToMobiledoc('ff'),
title: 'post2',
slug: 'current',
created_at: new Date(0),
diff --git a/core/test/unit/server_helpers/prev_post_spec.js b/core/test/unit/server_helpers/prev_post_spec.js
index 32065accf1..b8ab7bffc1 100644
--- a/core/test/unit/server_helpers/prev_post_spec.js
+++ b/core/test/unit/server_helpers/prev_post_spec.js
@@ -1,6 +1,7 @@
var should = require('should'), // jshint ignore:line
sinon = require('sinon'),
Promise = require('bluebird'),
+ markdownToMobiledoc = require('../../utils/fixtures/data-generator').markdownToMobiledoc,
// Stuff we are testing
helpers = require('../../../server/helpers'),
@@ -34,7 +35,7 @@ describe('{{prev_post}} helper', function () {
helpers.prev_post.call({
html: 'content',
status: 'published',
- markdown: 'ff',
+ mobiledoc: markdownToMobiledoc('ff'),
title: 'post2',
slug: 'current',
created_at: new Date(0),
@@ -71,7 +72,7 @@ describe('{{prev_post}} helper', function () {
helpers.prev_post.call({
html: 'content',
status: 'published',
- markdown: 'ff',
+ mobiledoc: markdownToMobiledoc('ff'),
title: 'post2',
slug: 'current',
created_at: new Date(0),
@@ -134,7 +135,7 @@ describe('{{prev_post}} helper', function () {
helpers.prev_post.call({
html: 'content',
status: 'draft',
- markdown: 'ff',
+ mobiledoc: markdownToMobiledoc('ff'),
title: 'post2',
slug: 'current',
created_at: new Date(0),
diff --git a/core/test/unit/server_helpers/url_spec.js b/core/test/unit/server_helpers/url_spec.js
index afd1b3043c..13697035e4 100644
--- a/core/test/unit/server_helpers/url_spec.js
+++ b/core/test/unit/server_helpers/url_spec.js
@@ -2,6 +2,7 @@ var should = require('should'), // jshint ignore:line
sinon = require('sinon'),
Promise = require('bluebird'),
configUtils = require('../../utils/configUtils'),
+ markdownToMobiledoc = require('../../utils/fixtures/data-generator').markdownToMobiledoc,
// Stuff we are testing
helpers = require('../../../server/helpers'),
@@ -34,7 +35,7 @@ describe('{{url}} helper', function () {
it('should return the slug with a prefix slash if the context is a post', function () {
rendered = helpers.url.call({
html: 'content',
- markdown: 'ff',
+ mobiledoc: markdownToMobiledoc('ff'),
title: 'title',
slug: 'slug',
created_at: new Date(0),
@@ -47,7 +48,7 @@ describe('{{url}} helper', function () {
it('should output an absolute URL if the option is present', function () {
rendered = helpers.url.call(
- {html: 'content', markdown: 'ff', title: 'title', slug: 'slug', url: '/slug/', created_at: new Date(0)},
+ {html: 'content', mobiledoc: markdownToMobiledoc('ff'), title: 'title', slug: 'slug', url: '/slug/', created_at: new Date(0)},
{hash: {absolute: 'true'}}
);
@@ -58,7 +59,7 @@ describe('{{url}} helper', function () {
it('should output an absolute URL with https if the option is present and secure', function () {
rendered = helpers.url.call(
{
- html: 'content', markdown: 'ff', title: 'title', slug: 'slug',
+ html: 'content', mobiledoc: markdownToMobiledoc('ff'), title: 'title', slug: 'slug',
url: '/slug/', created_at: new Date(0), secure: true
},
{hash: {absolute: 'true'}}
@@ -71,7 +72,7 @@ describe('{{url}} helper', function () {
it('should output an absolute URL with https if secure', function () {
rendered = helpers.url.call(
{
- html: 'content', markdown: 'ff', title: 'title', slug: 'slug',
+ html: 'content', mobiledoc: markdownToMobiledoc('ff'), title: 'title', slug: 'slug',
url: '/slug/', created_at: new Date(0), secure: true
},
{hash: {absolute: 'true'}}
@@ -94,7 +95,7 @@ describe('{{url}} helper', function () {
});
it('should return / if not a post or tag', function () {
- rendered = helpers.url.call({markdown: 'ff', title: 'title', slug: 'slug'});
+ rendered = helpers.url.call({mobiledoc: markdownToMobiledoc('ff'), title: 'title', slug: 'slug'});
should.exist(rendered);
rendered.string.should.equal('/');
@@ -102,11 +103,11 @@ describe('{{url}} helper', function () {
should.exist(rendered);
rendered.string.should.equal('/');
- rendered = helpers.url.call({html: 'content', markdown: 'ff', slug: 'slug'});
+ rendered = helpers.url.call({html: 'content', mobiledoc: markdownToMobiledoc('ff'), slug: 'slug'});
should.exist(rendered);
rendered.string.should.equal('/');
- rendered = helpers.url.call({html: 'content', markdown: 'ff', title: 'title'});
+ rendered = helpers.url.call({html: 'content', mobiledoc: markdownToMobiledoc('ff'), title: 'title'});
should.exist(rendered);
rendered.string.should.equal('/');
});
diff --git a/core/test/utils/api.js b/core/test/utils/api.js
index fad8ebd34c..c8837a5f4a 100644
--- a/core/test/utils/api.js
+++ b/core/test/utils/api.js
@@ -22,7 +22,7 @@ var _ = require('lodash'),
// Post API
post: _(schema.posts).keys()
// does not return all formats by default
- .without('markdown', 'mobiledoc', 'amp', 'plaintext')
+ .without('mobiledoc', 'amp', 'plaintext')
// swaps author_id to author, and always returns a computed 'url' property
.without('author_id').concat('author', 'url')
.value(),
diff --git a/core/test/utils/fixtures/data-generator.js b/core/test/utils/fixtures/data-generator.js
index e5ad197ae8..e51d2ec107 100644
--- a/core/test/utils/fixtures/data-generator.js
+++ b/core/test/utils/fixtures/data-generator.js
@@ -5,6 +5,23 @@ var _ = require('lodash'),
globalUtils = require('../../../server/utils'),
DataGenerator = {};
+DataGenerator.markdownToMobiledoc = function markdownToMobiledoc(content) {
+ var mobiledoc = {
+ version: '0.3.1',
+ markups: [],
+ atoms: [],
+ cards: [
+ ['card-markdown', {
+ cardName: 'card-markdown',
+ markdown: content || ''
+ }]
+ ],
+ sections: [[10, 0]]
+ };
+
+ return JSON.stringify(mobiledoc);
+};
+
/*jshint quotmark:false*/
// jscs:disable validateQuoteMarks, requireCamelCaseOrUpperCaseIdentifiers
DataGenerator.Content = {
@@ -13,22 +30,22 @@ DataGenerator.Content = {
id: ObjectId.generate(),
title: "HTML Ipsum",
slug: "html-ipsum",
- markdown: "
HTML Ipsum Presents
commodo vitae
, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis.Header Level 2
Header Level 3
",
+ mobiledoc: DataGenerator.markdownToMobiledoc("#header h1 a{display: block;width: 300px;height: 80px;}
HTML Ipsum Presents
commodo vitae
, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis.Header Level 2
Header Level 3
"),
published_at: new Date("2015-01-01")
},
{
id: ObjectId.generate(),
title: "Ghostly Kitchen Sink",
slug: "ghostly-kitchen-sink",
- markdown: "#header h1 a{display: block;width: 300px;height: 80px;}
HTML Ipsum Presents
commodo vitae
, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis.Header Level 2
Header Level 3
",
+ mobiledoc: DataGenerator.markdownToMobiledoc("#header h1 a{display: block;width: 300px;height: 80px;}
HTML Ipsum Presents
commodo vitae
, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis.Header Level 2
Header Level 3
"),
published_at: new Date("2015-01-02")
},
{
id: ObjectId.generate(),
title: "Short and Sweet",
slug: "short-and-sweet",
- markdown: "## testing\n\nmctesters\n\n- test\n- line\n- items",
- html: "#header h1 a{display: block;width: 300px;height: 80px;}
testing
\n\n
\n",
+ mobiledoc: DataGenerator.markdownToMobiledoc("## testing\n\nmctesters\n\n- test\n- line\n- items"),
+ html: "testing
\n\n
\nHTML Ipsum Presents
commodo vitae
, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis.Header Level 2
Header Level 3
",
+ mobiledoc: DataGenerator.markdownToMobiledoc("#header h1 a{display: block;width: 300px;height: 80px;}
HTML Ipsum Presents
commodo vitae
, ornare sit amet, wisi. Aenean fermentum, elit eget tincidunt condimentum, eros ipsum rutrum orci, sagittis tempus lacus enim ac dui. Donec non enim in turpis pulvinar facilisis. Ut felis.Header Level 2
Header Level 3
"),
status: "draft",
uuid: "d52c42ae-2755-455c-80ec-70b2ec55c903",
featured: false
@@ -47,20 +64,20 @@ DataGenerator.Content = {
id: ObjectId.generate(),
title: "Not so short, bit complex",
slug: "not-so-short-bit-complex",
- markdown: "#header h1 a{display: block;width: 300px;height: 80px;}
1 2 3 4 a b c d e f g h i j k l
Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.
1 | 2 | 3 | 4 |
---|---|---|---|
a | b | c | d |
e | f | g | h |
i | j | k | l |
Hopefully you don't find it a bore.
", + mobiledoc: DataGenerator.markdownToMobiledoc("Hopefully you don't find it a bore.
"), page: 1 }, { id: ObjectId.generate(), title: "This is a draft static page", slug: "static-page-draft", - markdown: "Hopefully you don't find it a bore.
", + mobiledoc: DataGenerator.markdownToMobiledoc("Hopefully you don't find it a bore.
"), page: 1, status: "draft" }, @@ -68,7 +85,7 @@ DataGenerator.Content = { id: ObjectId.generate(), title: "This is a scheduled post!!", slug: "scheduled-post", - markdown: "Three days ago I released a concept page<\/a> for a lite version of WordPress that I've been thinking about for a long time, called Ghost. I think it's fair to say that I didn't quite anticipate how strong the reaction would be - and I've hardly had time to catch my breath in the last 72 hours.<\/p>\n The response was overwhelming, and overwhelmingly positive. In the first 6 hours my site got 35,000 page views after hitting the number 1 slot on Hacker News<\/a>. As of right now, the traffic count is just over 91,000 page views<\/a> - and Ghost has been featured all over the place. Notable mentions so far include Christina Warren from Mashable, who wrote about it<\/a>. Michael Carney from PandoDaily interviewed me about it<\/a>. Someone even wrote about it in Chinese<\/a>. That's pretty cool.\\n The feedback has been amazing, and while it's impossible to reply to all of the messages individually, I'm getting to as many of them as I can and I want to thank each and every one of you who took the time to send me a message or share the concept because you liked it. Now that the initial storm has died down a bit, I wanted to take some time to answer some of the more common questions and talk about what's next.<\/p>\n The most common question, bizarrely:<\/p>\n This was really the only negativity I got in response to the post, and it surprised me. I put together the concept page as... just that... a concept. It was a way for me to get the ideas out of my head and \"down on paper\" - or so to speak. I used photoshop as a tool<\/em> to write down my idea with text and images. If I used a sketchbook as a tool <\/em>to create images and handwritten notes, then uploaded scans of it, I doubt anyone would complain. The concept page was never supposed to be a finished product because I had no idea if there would be any interest in it. I had no motivation to waste hours coding a custom layout for something might only ever be read by a few people and then forgotten.<\/p>\n Hardware manufacturers make hundreds of foam cutout prototypes of products before they build one with working buttons and screens. I'm aware of all the usability problems with a web page made of images, and equally, foam cutouts without buttons or screens aren't particularly user friendly either. They're not supposed to be.<\/p>\n Let's move on.<\/p>\n Because comments add a layer of complexity that is beyond the core focus of this platform, which is publishing. Again, that's not to say you couldn't have any comments. This could easily be added with a dedicated plugin where you own the data or (as mentioned) there are third party providers such as Disqus, IntenseDebate, Livefyre and Facebook who all have great platforms. The point of this isn't to say \"you can't have comments\" - it's to say \"comments aren't on by default\". It's about simplicity, more than anything else.<\/p>\n Sorry, but Tumblr already did this - it's not the future of blogging, it's the past.<\/p>\n Ghost isn't about sharing \"Fuck Yeah [Dogs<\/a>\/Sharks<\/a>\/Girls with Tattoos<\/a>]\" - it's about publishing - which means writing - rather than mashing a few buttons to make sure that everyone can see and appreciate your latest funny picture\/status, which is surely the most funny picture\/status you've ever posted.<\/p>\n Tumblr, Pinterest and Facebook already have this locked down. It's not the future.<\/p>\n The concept page was a way for me to test demand and interest. To see if anyone actually agreed with my frustrations and, more importantly, my solutions. I plucked a random figure of \"10,000 pageviews\" out of the air before I hit the publish button. If it got less than 10,000 pageviews, I would surrender to the fact that it would only ever be an idea. I've now exceeded that goal 9 times over, so yes, I'm looking at how Ghost can now be made into a reality.<\/p>\nFAQ - Continued...<\/h2>\n
Oh my god, why is that whole page made of images? What's wrong with you? \/\/ I can't take you seriously \/\/ Don't you know anything about the web? \/\/ You are literally Satan re-incarnate.<\/strong><\/em><\/h5>\n
What? Why no comments? I need comments.<\/strong><\/em><\/h5>\n
Yeah, but WordPress are already going to revise their dashboard, WordPress.com is experimenting with a potential simplified version... so why bother with this?<\/strong><\/em><\/h5>\n
<\/a><\/p>\n
So... are you actually going to build this thing?<\/strong><\/em><\/h5>\n
How can I find out when it's done? \/\/ SHUT UP AND TAKE MY MONEY<\/strong><\/em><\/h5>\n