(setq load-path (append '("@abs_top_srcdir@/elisp/") ; for hoa-mode.el load-path)) (setq debug-on-error t) (package-initialize) (require 'cl) (setq features-before features) (require 'org-version) (print (org-version nil t t)) (print (concat "Org " org-version)) ; The Org version that ships with emacs is usually too old. (when (version< org-version "9.1") (warn "Org-mode is too old; attempting to download a more recent version") ;; we need to unload any bits of org that were loaded before calling ;; install package, otherwise the byte code might mix the two versions. (dolist (feature (set-difference features features-before)) (when (and (featurep feature) (let ((feature-name (symbol-name feature))) (or (string-prefix-p "org" feature-name) (string-prefix-p "ob" feature-name)))) (message "unloading feature %s" feature) (unload-feature feature t))) ;; install org-plus-contrib, not org, as the former includes htmlize (add-to-list 'package-archives '("org" . "http://orgmode.org/elpa/") t) (package-refresh-contents) (let ((org-p-c (cadr (assq 'org-plus-contrib package-archive-contents)))) (package-install org-p-c))) (let ((have-htmlize (require 'htmlize nil t)) (have-ess (require 'ess nil t))) (unless (and have-htmlize have-ess) (add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/") t) (package-refresh-contents) (unless have-htmlize (let ((htmlize (cadr (assq 'htmlize package-archive-contents)))) (package-install htmlize))) (unless have-ess (let ((ess (cadr (assq 'ess package-archive-contents)))) (package-install ess))))) (require 'ox-publish) (require 'org-install) (require 'hoa-mode) (setq org-export-htmlize-output-type 'css) (setq org-html-htmlize-output-type 'css) ; the .org-timestamp directory does not always exist, is not always ; created by org, and that causes issues on our buildfarm. (setq org-publish-use-timestamps-flag nil) ;; The default value of writing to ~/.org-timestamps causes race ;; conditions when doing concurrent builds. (setq org-publish-timestamp-directory "@abs_top_builddir@/.org-timestamps/") ;; Prevent tabs from being inserted when org-mode reindent some code. (setq-default indent-tabs-mode nil) (org-babel-do-load-languages 'org-babel-load-languages `((,(if (version< org-version "8.3") 'sh 'shell) . t) (dot . t) (python . t) (plantuml . t) (R . t) (C . t))) (setq org-confirm-babel-evaluate nil) (setq org-plantuml-jar-path "@abs_top_builddir@/doc/org/plantuml.jar") (setq org-babel-temporary-directory "@abs_top_builddir@/doc/org/tmp") ;;; the directory might already exist from a previously aborted run. (if (file-directory-p org-babel-temporary-directory) (delete-directory org-babel-temporary-directory t)) (make-directory org-babel-temporary-directory t) (setq org-babel-python-command "@PYTHON@") (setq org-babel-C++-compiler "./g++wrap") (setq shell-file-name "@SHELL@") (setq ess-ask-for-ess-directory nil) (setq org-babel-default-header-args:plantuml '((:results . "file") (:exports . "results") ;; Prevent the plantuml logo to appear on top of whatever you ;; are doing when the project compiles in the background. (:java . "-Djava.awt.headless=true"))) (setenv "PATH" (concat "@abs_top_builddir@/bin" path-separator (getenv "PATH"))) (setenv "PYTHONPATH" (concat "@abs_top_builddir@/python/.libs:" "@abs_top_builddir@/python:" "@abs_top_srcdir@/python:" "@abs_top_builddir@/python/spot/.libs:" "@abs_top_builddir@/python/spot:" "@abs_top_builddir@/spot/ltsmin/.libs" "@abs_top_srcdir@/python/spot:" (getenv "PYTHONPATH"))) (setenv "DYLD_LIBRARY_PATH" (concat "@abs_top_builddir@/python/.libs:@abs_top_builddir@/spot/.libs:@abs_top_builddir@/buddy/src/.libs:" (getenv "DYLD_LIBRARY_PATH"))) (setenv "SPOT_DOTDEFAULT" "Brf(Lato)C(#ffffa0)") (setenv "SPOT_DOTEXTRA" "node[fontsize=12] fontsize=12 stylesheet=\"spot.css\" edge[arrowhead=vee, arrowsize=.7, fontsize=12]") (setq org-export-html-home/up-format "
") (setq org-export-html-postamble nil) (defun spot-publish-sitemap (title list) "Same as org-publish-sitemap-default except it adds the SETUPFILE." (concat "#+TITLE: " title "\n#+SETUPFILE: setup.org\n#+HTML_LINK_UP: index.html\n\n" (org-list-to-org list))) (setq org-publish-project-alist '(("spot-html" :base-directory "@abs_top_srcdir@/doc/org/" :base-extension "org" :publishing-directory "@abs_top_srcdir@/doc/userdoc/" :recursive t :exclude "setup.org" :auto-sitemap t :sitemap-title "Sitemap for Spot" :sitemap-function spot-publish-sitemap :publishing-function org-html-publish-to-html :html-head "" :auto-preamble t) ("spot-static" :base-directory "@abs_top_srcdir@/doc/org/" :base-extension "css\\|js\\|png\\|svg\\|jpg\\|gif\\|pdf" :publishing-directory "@abs_top_srcdir@/doc/userdoc/" :recursive t :publishing-function org-publish-attachment) ("spot-all" :components ("spot-html" "spot-static")))) (org-publish-all t) ;;; org-babel-remove-temporary-directory does not correctly remove ;;; nested directories and we have some files in tmp/.libs/ because of ;;; libtool. So we have to clean that ourselves. (if (file-directory-p org-babel-temporary-directory) (delete-directory org-babel-temporary-directory t))