Exemplo n.º 1
0
 def test_same_slug_after_updating(self):
     """Test if updating a post without changing the title does not result
     in a different slug (regression)"""
     self.clear_db()
     post = Post(title='t', markup='')
     db.session.add(post)
     db.session.commit()
     post.title = 't'
     db.session.commit()
     assert_equal(post.slug, 't')
Exemplo n.º 2
0
 def test_same_slug_after_updating(self):
     """Test if updating a post without changing the title does not result
     in a different slug (regression)"""
     self.clear_db()
     post = Post(title='t', markup='')
     db.session.add(post)
     db.session.commit()
     post.title = 't'
     db.session.commit()
     assert_equal(post.slug, 't')
Exemplo n.º 3
0
def create_post(slug):
    """Create a new or edit an existing blog post"""
    next = request.values.get('next', '')
    post = None
    if slug:
        post = Post.query.filter_by(slug=slug).first()
    if slug and not post:
        flash('Invalid slug', 'error')
        return redirect(next)

    if request.method == 'GET':
        return render_template('admin/compose.html',
                               post=post,
                               categories=Category.query.all())

    if request.method == 'POST':
        if request.form['action'] == 'Cancel':
            return redirect(next)

        title = request.form['title']
        markup = request.form['markup']
        tags = normalize_tags(request.form['tags'])
        comments_allowed = bool(request.values.get('comments_allowed', False))
        visible = bool(request.values.get('visible', False))
        #: Contains the ids of the categories
        categories = []
        for name, id in request.form.iteritems():
            if 'category-' in name:
                categories.append(id)

        if title == '':
            flash('You must provide a title', 'error')
            return render_template('admin/compose.html')
        elif request.form['action'] == 'Publish':
            post = Post(title, markup, comments_allowed, visible)
            post.tags = tags
            post.categories = categories
            db.session.add(post)
            db.session.commit()
            signals.post_created.send(post)
            flash('New post was successfully posted')
            return redirect(url_for('main.show_posts'))
        elif request.form['action'] == 'Update':
            post.title = title
            post.markup = markup
            post.comments_allowed = comments_allowed
            post.visible = visible
            post.tags = tags
            post.categories = categories
            db.session.commit()
            signals.post_updated.send(post)
            flash('Post was successfully updated')
            return redirect(url_for('main.show_post', slug=post.slug))
Exemplo n.º 4
0
def create_post(slug):
    """Create a new or edit an existing blog post"""
    next = request.values.get('next', '')
    post = None
    if slug:
        post = Post.query.filter_by(slug=slug).first()
    if slug and not post:
        flash('Invalid slug', 'error')
        return redirect(next)
    
    if request.method == 'GET':
        return render_template('admin/compose.html', post=post,
            categories=Category.query.all())
            
    if request.method == 'POST':
        if request.form['action'] == 'Cancel':
            return redirect(next)
        
        title = request.form['title']
        markup = request.form['markup']
        tags = normalize_tags(request.form['tags'])
        comments_allowed = bool(request.values.get('comments_allowed', False))
        visible = bool(request.values.get('visible', False))
        #: Contains the ids of the categories
        categories = []
        for name, id in request.form.iteritems():
            if 'category-' in name:
                categories.append(id)
                
        if title == '':
            flash('You must provide a title', 'error')
            return render_template('admin/compose.html')
        elif request.form['action'] == 'Publish':
            post = Post(title, markup, comments_allowed, visible)
            post.tags = tags
            post.categories = categories
            db.session.add(post)
            db.session.commit()
            signals.post_created.send(post)
            flash('New post was successfully posted')
            return redirect(url_for('main.show_posts'))
        elif request.form['action'] == 'Update':
            post.title = title
            post.markup = markup
            post.comments_allowed = comments_allowed
            post.visible = visible
            post.tags = tags
            post.categories = categories
            db.session.commit()
            signals.post_updated.send(post)
            flash('Post was successfully updated')
            return redirect(url_for('main.show_post', slug=post.slug))