我无法从org2blog发帖

时间:2014-08-11 20:54:21

标签: emacs org-mode

我使用Emacs 24和org2blog在我的博客中发布。 我有一个问题,当我想发布我的缓冲区时, Emacs 显示:

xml-rpc-request: Why? url-http-response-status is nil

????

1 个答案:

答案 0 :(得分:1)

“它对我有用”。我发现答案通常是拉最新版本的.org。

#! /bin/sh -x -u -e
#
# Get latest version of org-mode in ~/src/org-mode
#

mkdir -p ~/src
cd ~/src

# pull for first time if we don't have it

if [ ! -d ~/src/org-mode ]; then
    git clone git://orgmode.org/org-mode.git
else

    # get updates, if any

    cd ~/src/org-mode
    git pull
fi

# build the autoloads
cd ~/src/org-mode
make autoloads

# Add to .emacs, .emacs.d/init.el, whatever...
#
#(add-to-list 'load-path "~/src/org-mode/lisp/")
#(add-to-list 'load-path "~/src/org-mode/contrib/lisp/" t)

https://github.com/eludom/HOWTO/blob/master/getLatestOrg.sh