update packages
This commit is contained in:
@@ -0,0 +1,81 @@
|
||||
# Aspell configuration for proof reading Org documentation.
|
||||
|
||||
# Org documentation is written in American...
|
||||
|
||||
master en_US-w_accents
|
||||
lang en_US
|
||||
|
||||
# Assume the Org specific word and replacement lists are in the doc
|
||||
# directory and that any spell check is also run from there. Specify
|
||||
# this file when running aspell by some command like:
|
||||
#
|
||||
# $ aspell check --per-conf=".aspell.org.conf" org.texi
|
||||
|
||||
personal ./.aspell.org.pws
|
||||
repl ./.aspell.org.prepl
|
||||
|
||||
# Checking options. See man aspell.
|
||||
|
||||
save-repl true
|
||||
sug-mode normal
|
||||
ignore-case false
|
||||
ignore-accents false
|
||||
|
||||
# Filters
|
||||
|
||||
# For some reason the following doesn't seem to work which stuffs up
|
||||
# trying to use Ispell mode from an Emacs buffer (at least I cannot
|
||||
# make it work) but aspell seems abot to recognise texinfo files
|
||||
# automatically when checking from the command line so it doesn't
|
||||
# matter much.
|
||||
|
||||
# mode texinfo
|
||||
|
||||
lset-filter tex:url
|
||||
|
||||
# Let's be clear about what we choose to ignore.
|
||||
|
||||
clear-f-texinfo-ignore
|
||||
|
||||
add-f-texinfo-ignore c
|
||||
add-f-texinfo-ignore code
|
||||
add-f-texinfo-ignore command
|
||||
add-f-texinfo-ignore documentencoding
|
||||
add-f-texinfo-ignore email
|
||||
add-f-texinfo-ignore env
|
||||
add-f-texinfo-ignore file
|
||||
add-f-texinfo-ignore kbd
|
||||
add-f-texinfo-ignore macro
|
||||
add-f-texinfo-ignore option
|
||||
add-f-texinfo-ignore printindex
|
||||
add-f-texinfo-ignore samp
|
||||
add-f-texinfo-ignore set
|
||||
add-f-texinfo-ignore setfilename
|
||||
add-f-texinfo-ignore syncode
|
||||
add-f-texinfo-ignore url
|
||||
add-f-texinfo-ignore value
|
||||
add-f-texinfo-ignore var
|
||||
add-f-texinfo-ignore verb
|
||||
add-f-texinfo-ignore verbatiminclude
|
||||
add-f-texinfo-ignore vskip
|
||||
|
||||
# Utility options
|
||||
|
||||
backup true
|
||||
guess true
|
||||
suggest true
|
||||
|
||||
# Miscellaneous
|
||||
#
|
||||
# Org documentation uses a lot of compound words. Try and ignore them
|
||||
# rather than including them in a specific word list.
|
||||
|
||||
run-together-limit 2
|
||||
run-together-min 2
|
||||
|
||||
#
|
||||
|
||||
# Local variables:
|
||||
# fill-column: 72
|
||||
# mode: conf
|
||||
# End:
|
||||
@@ -0,0 +1 @@
|
||||
No search
|
||||
+25
-18
@@ -9,7 +9,7 @@ all: $(ORG_MAKE_DOC)
|
||||
|
||||
info: org orgguide
|
||||
|
||||
html: org.html
|
||||
html: org.html orgguide.html
|
||||
|
||||
pdf: org.pdf orgguide.pdf
|
||||
|
||||
@@ -27,11 +27,17 @@ guide:: orgguide.texi org-version.inc
|
||||
../mk/guidesplit.pl $@/*
|
||||
endif
|
||||
|
||||
org.texi orgguide.texi: org-manual.org org-guide.org
|
||||
$(BATCH) \
|
||||
--eval '(add-to-list '"'"'load-path "../lisp")' \
|
||||
--eval '(load "../mk/org-fixup.el")' \
|
||||
--eval '(org-make-manuals)'
|
||||
org.texi: org-manual.org
|
||||
$(BATCH) \
|
||||
--eval '(add-to-list `load-path "../lisp")' \
|
||||
--eval '(load "../mk/org-fixup.el")' \
|
||||
--eval '(org-make-manual)'
|
||||
|
||||
orgguide.texi: org-guide.org
|
||||
$(BATCH) \
|
||||
--eval '(add-to-list `load-path "../lisp")' \
|
||||
--eval '(load "../mk/org-fixup.el")' \
|
||||
--eval '(org-make-guide)'
|
||||
|
||||
org-version.inc: org.texi
|
||||
@echo "org-version: $(ORGVERSION) ($(GITVERSION))"
|
||||
@@ -48,16 +54,17 @@ org-version.tex: orgcard.tex
|
||||
|
||||
install: org orgguide
|
||||
if [ ! -d $(DESTDIR)$(infodir) ]; then $(MKDIR) $(DESTDIR)$(infodir); else true; fi ;
|
||||
$(CP) org $(DESTDIR)$(infodir)
|
||||
$(CP) orgguide $(DESTDIR)$(infodir)
|
||||
$(INSTALL_INFO) --infodir=$(DESTDIR)$(infodir) org
|
||||
$(INSTALL_INFO) --infodir=$(DESTDIR)$(infodir) orgguide
|
||||
$(CP) org.info $(DESTDIR)$(infodir)
|
||||
$(CP) orgguide.info $(DESTDIR)$(infodir)
|
||||
$(INSTALL_INFO) --infodir=$(DESTDIR)$(infodir) org.info
|
||||
$(INSTALL_INFO) --infodir=$(DESTDIR)$(infodir) orgguide.info
|
||||
|
||||
clean:
|
||||
$(RM) org orgguide *.pdf *.html *_letter.tex org-version.inc \
|
||||
org-version.tex *.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys \
|
||||
*.pg *.pgs *.toc *.tp *.tps *.vr *.vrs *.log *.html *.ps
|
||||
$(RM) *.pdf *.html *.info *_letter.tex org-version.inc org-version.tex \
|
||||
*.aux *.cp *.cps *.dvi *.fn *.fns *.ky *.kys *.pg *.pgs *.toc \
|
||||
*.tp *.tps *.vr *.vrs *.log *.ps
|
||||
cleanall: clean
|
||||
$(RM) org.texi orgguide.texi
|
||||
$(RMR) guide manual
|
||||
|
||||
clean-install:
|
||||
@@ -68,7 +75,7 @@ clean-install:
|
||||
.SUFFIXES: .texi .tex .txt _letter.tex
|
||||
|
||||
%: %.texi org-version.inc
|
||||
$(MAKEINFO) --no-split $< -o $@
|
||||
$(MAKEINFO) --no-split $< -o $@.info
|
||||
|
||||
# the following two lines work around a bug in some versions of texi2dvi
|
||||
%.pdf: LC_ALL=C
|
||||
@@ -88,8 +95,8 @@ ifneq ($(SERVERMK),)
|
||||
endif
|
||||
|
||||
%_letter.tex: %.tex
|
||||
$(BATCH) \
|
||||
--eval '(add-to-list '"'"'load-path "../lisp")' \
|
||||
--eval '(load "org-compat.el")' \
|
||||
--eval '(load "../mk/org-fixup.el")' \
|
||||
$(BATCH) \
|
||||
--eval '(add-to-list `load-path "../lisp")' \
|
||||
--eval '(load "org-compat.el")' \
|
||||
--eval '(load "../mk/org-fixup.el")' \
|
||||
--eval '(org-make-letterformat "$(<F)" "$(@F)")'
|
||||
|
||||
@@ -1,4 +1,21 @@
|
||||
# SETUPFILE for manuals
|
||||
# SETUPFILE for Org manual
|
||||
|
||||
# Copyright (C) 2021 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is part of GNU Emacs.
|
||||
#
|
||||
# GNU Emacs is free software: you can redistribute it and/or modify
|
||||
# it under the terms of the GNU General Public License as published by
|
||||
# the Free Software Foundation, either version 3 of the License, or
|
||||
# (at your option) any later version.
|
||||
#
|
||||
# GNU Emacs is distributed in the hope that it will be useful,
|
||||
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
# GNU General Public License for more details.
|
||||
#
|
||||
# You should have received a copy of the GNU General Public License
|
||||
# along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
# XXX: We cannot use TODO keyword as a node starts with "TODO".
|
||||
#+todo: REVIEW FIXME | DONE
|
||||
|
||||
@@ -7,7 +7,7 @@ Version 1.3, 3 November 2008
|
||||
|
||||
#+begin_verse
|
||||
Copyright \copy{} 2000, 2001, 2002, 2007, 2008 Free Software Foundation, Inc.
|
||||
http://fsf.org/
|
||||
https://fsf.org/
|
||||
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
@@ -404,7 +404,7 @@ of this license document, but changing it is not allowed.
|
||||
the GNU Free Documentation License from time to time. Such new
|
||||
versions will be similar in spirit to the present version, but may
|
||||
differ in detail to address new problems or concerns. See
|
||||
http://www.gnu.org/copyleft/.
|
||||
https://www.gnu.org/copyleft/.
|
||||
|
||||
Each version of the License is given a distinguishing version
|
||||
number. If the Document specifies that a particular numbered
|
||||
|
||||
@@ -1,2 +1,2 @@
|
||||
calc mono http://www.gnu.org/software/emacs/manual/html_mono/calc.html
|
||||
calc node http://www.gnu.org/software/emacs/manual/html_node/calc/
|
||||
calc mono https://www.gnu.org/software/emacs/manual/html_mono/calc.html
|
||||
calc node https://www.gnu.org/software/emacs/manual/html_node/calc/
|
||||
|
||||
-23261
File diff suppressed because it is too large
Load Diff
+12
-12
@@ -10,7 +10,7 @@
|
||||
:copying: t
|
||||
:END:
|
||||
|
||||
Copyright \copy 2004--2020 Free Software Foundation, Inc.
|
||||
Copyright \copy 2004--2021 Free Software Foundation, Inc.
|
||||
|
||||
#+begin_quote
|
||||
Permission is granted to copy, distribute and/or modify this document
|
||||
@@ -59,7 +59,6 @@ subdirectories to the Emacs load path. To do this, add the following
|
||||
line to your Emacs init file:
|
||||
|
||||
: (add-to-list 'load-path "~/path/to/orgdir/lisp")
|
||||
: (add-to-list 'load-path "~/path/to/orgdir/contrib/lisp" t)
|
||||
|
||||
#+texinfo: @noindent
|
||||
If you have been using git or a tar ball to get Org, you need to run
|
||||
@@ -77,9 +76,9 @@ keys for three commands that are useful in any Emacs buffer, not just
|
||||
Org buffers. Please choose suitable keys yourself.
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(global-set-key (kbd "C-c l") 'org-store-link)
|
||||
(global-set-key (kbd "C-c a") 'org-agenda)
|
||||
(global-set-key (kbd "C-c c") 'org-capture)
|
||||
(global-set-key (kbd "C-c l") #'org-store-link)
|
||||
(global-set-key (kbd "C-c a") #'org-agenda)
|
||||
(global-set-key (kbd "C-c c") #'org-capture)
|
||||
#+end_src
|
||||
|
||||
Files with extension =.org= will be put into Org mode automatically.
|
||||
@@ -169,8 +168,8 @@ Org uses just two commands, bound to {{{kbd(TAB)}}} and
|
||||
When Emacs first visits an Org file, the global state is set to
|
||||
OVERVIEW, i.e., only the top level headlines are visible. This can be
|
||||
configured through the variable ~org-startup-folded~, or on a per-file
|
||||
basis by adding a =STARTUP= keyword to =overview=, =content=, or
|
||||
=showall=, like this:
|
||||
basis by adding a =STARTUP= keyword to =overview=, =content=,
|
||||
=showall=, =showeverything= or =show<n>levels= (n = 2..5) like this:
|
||||
|
||||
: #+STARTUP: content
|
||||
|
||||
@@ -2221,7 +2220,7 @@ compatible with XHTML 1.0 strict standard.
|
||||
- {{{kbd(C-c C-e h h)}}} ::
|
||||
|
||||
Export as HTML file with a =.html= extension. For =myfile.org=, Org
|
||||
exports to =myfile.html=, overwriting without warning. {{{kbd{C-c
|
||||
exports to =myfile.html=, overwriting without warning. {{{kbd(C-c
|
||||
C-e h o)}}} exports to HTML and opens it in a web browser.
|
||||
|
||||
The HTML export back-end transforms =<= and =>= to =<= and =>=.
|
||||
@@ -2334,12 +2333,13 @@ example:
|
||||
(setq org-publish-project-alist
|
||||
'(("org"
|
||||
:base-directory "~/org/"
|
||||
:publishing-function org-html-publish-to-html
|
||||
:publishing-directory "~/public_html"
|
||||
:section-numbers nil
|
||||
:table-of-contents nil
|
||||
:style "<link rel=\"stylesheet\"
|
||||
href=\"../other/mystyle.css\"
|
||||
type=\"text/css\"/>")))
|
||||
:with-toc nil
|
||||
:html-head "<link rel=\"stylesheet\"
|
||||
href=\"../other/mystyle.css\"
|
||||
type=\"text/css\"/>")))
|
||||
#+end_src
|
||||
|
||||
- {{{kbd(C-c C-e P x)}}} ::
|
||||
|
||||
+637
-306
File diff suppressed because it is too large
Load Diff
@@ -1,3 +1,3 @@
|
||||
@c automatically generated, do not edit
|
||||
@set VERSION 9.4.4 (release_9.4.4)
|
||||
@set DATE 2020-12-22
|
||||
@set VERSION 9.5.2 (9.5.2-gfbff08)
|
||||
@set DATE 2021-12-24
|
||||
|
||||
@@ -1,4 +0,0 @@
|
||||
% automatically generated, do not edit
|
||||
\def\orgversionnumber{9.4.4}
|
||||
\def\versionyear{2020}
|
||||
\def\year{2020}
|
||||
Binary file not shown.
+653
-310
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@@ -15,7 +15,7 @@
|
||||
\pdflayout=(0l)
|
||||
|
||||
% Nothing else needs to be changed below this line.
|
||||
% Copyright (C) 1987, 1993, 1996-1997, 2001-2020 Free Software
|
||||
% Copyright (C) 1987, 1993, 1996--1997, 2001--2021 Free Software
|
||||
% Foundation, Inc.
|
||||
|
||||
% This document is free software: you can redistribute it and/or modify
|
||||
|
||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
+13
-14
@@ -13,7 +13,7 @@
|
||||
@c %**end of header
|
||||
|
||||
@copying
|
||||
Copyright @copyright{} 2004--2020 Free Software Foundation, Inc.
|
||||
Copyright @copyright{} 2004--2021 Free Software Foundation, Inc.
|
||||
|
||||
@quotation
|
||||
Permission is granted to copy, distribute and/or modify this document
|
||||
@@ -39,7 +39,7 @@ modify this GNU manual.''
|
||||
@finalout
|
||||
@titlepage
|
||||
@title Org Mode Compact Guide
|
||||
@subtitle Release 9.4
|
||||
@subtitle Release 9.5
|
||||
@author The Org Mode Developers
|
||||
@page
|
||||
@vskip 0pt plus 1filll
|
||||
@@ -171,7 +171,6 @@ line to your Emacs init file:
|
||||
|
||||
@example
|
||||
(add-to-list 'load-path "~/path/to/orgdir/lisp")
|
||||
(add-to-list 'load-path "~/path/to/orgdir/contrib/lisp" t)
|
||||
@end example
|
||||
|
||||
|
||||
@@ -191,9 +190,9 @@ keys for three commands that are useful in any Emacs buffer, not just
|
||||
Org buffers. Please choose suitable keys yourself.
|
||||
|
||||
@lisp
|
||||
(global-set-key (kbd "C-c l") 'org-store-link)
|
||||
(global-set-key (kbd "C-c a") 'org-agenda)
|
||||
(global-set-key (kbd "C-c c") 'org-capture)
|
||||
(global-set-key (kbd "C-c l") #'org-store-link)
|
||||
(global-set-key (kbd "C-c a") #'org-agenda)
|
||||
(global-set-key (kbd "C-c c") #'org-capture)
|
||||
@end lisp
|
||||
|
||||
Files with extension @samp{.org} will be put into Org mode automatically.
|
||||
@@ -289,8 +288,8 @@ Show all, including drawers.
|
||||
When Emacs first visits an Org file, the global state is set to
|
||||
OVERVIEW, i.e., only the top level headlines are visible. This can be
|
||||
configured through the variable @code{org-startup-folded}, or on a per-file
|
||||
basis by adding a @samp{STARTUP} keyword to @samp{overview}, @samp{content}, or
|
||||
@samp{showall}, like this:
|
||||
basis by adding a @samp{STARTUP} keyword to @samp{overview}, @samp{content},
|
||||
@samp{showall}, @samp{showeverything} or @samp{show<n>levels} (n = 2..5) like this:
|
||||
|
||||
@example
|
||||
#+STARTUP: content
|
||||
@@ -2302,8 +2301,7 @@ compatible with XHTML 1.0 strict standard.
|
||||
@table @asis
|
||||
@item @kbd{C-c C-e h h}
|
||||
Export as HTML file with a @samp{.html} extension. For @samp{myfile.org}, Org
|
||||
exports to @samp{myfile.html}, overwriting without warning. @{@{@{kbd@{C-c
|
||||
C-e h o)@}@}@} exports to HTML and opens it in a web browser.
|
||||
exports to @samp{myfile.html}, overwriting without warning. @kbd{C-c C-e h o} exports to HTML and opens it in a web browser.
|
||||
@end table
|
||||
|
||||
The HTML export back-end transforms @samp{<} and @samp{>} to @samp{<} and @samp{>}.
|
||||
@@ -2418,12 +2416,13 @@ example:
|
||||
(setq org-publish-project-alist
|
||||
'(("org"
|
||||
:base-directory "~/org/"
|
||||
:publishing-function org-html-publish-to-html
|
||||
:publishing-directory "~/public_html"
|
||||
:section-numbers nil
|
||||
:table-of-contents nil
|
||||
:style "<link rel=\"stylesheet\"
|
||||
href=\"../other/mystyle.css\"
|
||||
type=\"text/css\"/>")))
|
||||
:with-toc nil
|
||||
:html-head "<link rel=\"stylesheet\"
|
||||
href=\"../other/mystyle.css\"
|
||||
type=\"text/css\"/>")))
|
||||
@end lisp
|
||||
|
||||
@table @asis
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
% GNU General Public License for more details.
|
||||
|
||||
% You should have received a copy of the GNU General Public License
|
||||
% along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
||||
% along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
||||
|
||||
% This file defines `\pdflayout':
|
||||
% - \pdflayout=(0) is A4 portrait,
|
||||
|
||||
@@ -20,7 +20,7 @@
|
||||
% General Public License for more details.
|
||||
%
|
||||
% You should have received a copy of the GNU General Public License
|
||||
% along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
% along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
%
|
||||
% As a special exception, when this file is read by TeX when processing
|
||||
% a Texinfo source document, you may use the result without
|
||||
@@ -29,9 +29,9 @@
|
||||
%
|
||||
% Please try the latest version of texinfo.tex before submitting bug
|
||||
% reports; you can get the latest version from:
|
||||
% http://ftp.gnu.org/gnu/texinfo/ (the Texinfo release area), or
|
||||
% http://ftpmirror.gnu.org/texinfo/ (same, via a mirror), or
|
||||
% http://www.gnu.org/software/texinfo/ (the Texinfo home page)
|
||||
% https://ftp.gnu.org/gnu/texinfo/ (the Texinfo release area), or
|
||||
% https://ftpmirror.gnu.org/texinfo/ (same, via a mirror), or
|
||||
% https://www.gnu.org/software/texinfo/ (the Texinfo home page)
|
||||
% The texinfo.tex in any given distribution could well be out
|
||||
% of date, so if that's what you're using, please check.
|
||||
%
|
||||
@@ -55,7 +55,7 @@
|
||||
% extent. You can get the existing language-specific files from the
|
||||
% full Texinfo distribution.
|
||||
%
|
||||
% The GNU Texinfo home page is http://www.gnu.org/software/texinfo.
|
||||
% The GNU Texinfo home page is https://www.gnu.org/software/texinfo.
|
||||
|
||||
|
||||
\message{Loading texinfo [version \texinfoversion]:}
|
||||
@@ -3101,7 +3101,7 @@ end
|
||||
% We use the free feym* fonts from the eurosym package by Henrik
|
||||
% Theiling, which support regular, slanted, bold and bold slanted (and
|
||||
% "outlined" (blackboard board, sort of) versions, which we don't need).
|
||||
% It is available from http://www.ctan.org/tex-archive/fonts/eurosym.
|
||||
% It is available from https://www.ctan.org/tex-archive/fonts/eurosym.
|
||||
%
|
||||
% Although only regular is the truly official Euro symbol, we ignore
|
||||
% that. The Euro is designed to be slightly taller than the regular
|
||||
|
||||
Reference in New Issue
Block a user