~hexmode/weblogger-el/trunk

« back to all changes in this revision

Viewing changes to weblogger.el

  • Committer: Mark A. Hershberger
  • Date: 2011-09-26 16:18:52 UTC
  • Revision ID: mah@everybody.org-20110926161852-b7usjjk6unt23w06
Patch from Dave Abrahams:
==============================
I keep getting "symbol's value as variable is void: mt_keywords."  This
patch suppresses it.  I'm also finding all the newlines stripped from my
postings in the entry buffer, but that's a separate issue

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
;;; weblogger.el --- Weblog maintenance via XML-RPC APIs
2
2
 
3
 
;; Copyright (C) 2002-2009 Mark A. Hershberger.
 
3
;; Copyright (C) 2002-2011 Mark A. Hershberger.
4
4
;; Inspired by code Copyright (C) 2001 by Simon Kittle.
5
5
;; Parts Copyright (C) 2007 Wickersheimer Jeremy.
6
6
 
8
8
;; Created: 2002 Oct 11
9
9
;; Keywords: weblog blogger cms movable type openweblog blog
10
10
;; URL: http://launchpad.net/weblogger-el
11
 
;; Version: 1.4.5
12
 
;; Last Modified: <2010-03-11 01:49:36 mah>
 
11
;; Version: 1.4.6
 
12
;; Last Modified: <2011-09-26 12:16:48 mah>
13
13
;; Package-Requires: ((xml-rpc "1.6.8"))
14
14
 
15
 
(defconst weblogger-version "1.4.5"
 
15
(defconst weblogger-version "1.4.6"
16
16
  "Current version of weblogger.el")
17
17
 
18
18
;; This file is NOT (yet) part of GNU Emacs.
1286
1286
         (cdr (assoc-string "mt_convert_breaks" response t)))
1287
1287
        (url         (cdr (assoc-string "link" response t)))
1288
1288
        (description      (assoc-string "description" response t))
 
1289
        (mt_keywords (cdr (assoc-string "mt_keywords" response t)))
1289
1290
        (extended         (assoc-string "mt_text_more" response t))
1290
1291
        (tags        (cdr (assoc-string "mt_tags" response t)))
1291
1292
        (categories  (cdr (assoc-string "categories" response t))))