Preparing the list of changes for the next release
[org-mode/org-kjn.git] / ORGWEBPAGE / Changes.org
blob8d3776fb14fe120e41ce99ab774b6f4b75f41c98
1 #   -*- mode: org; fill-column: 65 -*-
3 #+STARTUP: showstars
5 #+TITLE: Org-mode list of user-visible changes
6 #+AUTHOR:  Carsten Dominik
7 #+EMAIL:  carsten at orgmode dot org
8 #+OPTIONS: H:3 num:nil toc:nil \n:nil @:t ::t |:t ^:{} *:t TeX:t LaTeX:nil f:nil
9 #+INFOJS_OPT: view:info toc:1 path:org-info.js tdepth:2 ftoc:t
10 #+LINK_UP: index.html
11 #+LINK_HOME: http://orgmode.org
13 * Version 6.26 (in preparation)
14  :PROPERTIES:
15  :VISIBILITY: content
16  :END:
19 ** Details
21 *** custom IDs
23 Entries can now define a =CUSTOM_ID= property.  This property
24 must be a valid ID according to HTML rules, and it will be used
25 in HTML export as the main target ID for this entry.  That means,
26 both the table of conents and other internal links will
27 automatically point to this ID instead of the automatic ID like
28 =sec-1.1=.  This is useful to create humar-readable permanent
29 links to these location in a document.
31 The user is responsible to make sure that  custom IDs are unique
32 within a file.
34 Links written like =[[#my-target-name] ]= can be used to target a
35 custom ID.
37 When using =C-c l= to store a link to a headline that has a
38 custom ID, Org will now create two links at the same time.  One
39 link will be to the custom ID.  The other will be to the globaly
40 unique ID property.  When inserting the line with =C-c C-l=, you
41 need to decide which one you want to use.  Use the ID links for
42 entries that are expected to move from one file to the next.  Use
43 custom ID links publishing projects, when you are sure that te
44 entry will stay in that file.  See also the variable
45 =org-link-to-org-use-id=.
47 *** Remember to non-org files
49 If the target headline part of a remember template definition
50 entry is =top= or =bottom=, the target file may now be a
51 non-Org-mode file.  In this case, the content of the remember
52 buffer will be added to that file without enforcing an Org-like
53 headline.  Sorry, Russel, that this took so long.
55 *** New property to turn off todo dependencies locally
57 Setting the property =NOBLOCKING= will turn off TODO dependency
58 checking for this entry.
60 *** Refile verify
62 A new function is called to verify tasks that are about to be
63 selected as remember targets.  See the new variable
64 =org-refile-target-verify-function=.
66 *** New version org ditaa.jar
68 Thanks to Stathis Sideris.
70 *** htmlize.el is now in the contrib directory
72 The latest version of htmlize.el is now the in the contrib
73 directory of Org.  Thanks to Hrvoje Niksic for allowing this.
75 * Version 6.25
77 ** Major new features
79 *** DocBook export
81 We now do have a fully functional DocBook exporter, contributed by
82 Baoqiu Cui.  Simple press =C-c e D= to export the current file to
83 DocBook format.  You can also get direct conversion to PDF if you have
84 made the correct setup, please see the manual for details.
86 Kudos to Baoqiu for this fantastic addition, and my personal thanks
87 for doing this in a such a smooth way that I did not have to do
88 anything myself.
90 *** Protocols for external access to Emacs and Org
92 /org-protocol.el/ is a new module that supersedes both
93 /org-annotation-helper.el/ and /org-browser.el/ and replaces them
94 with a more abstracted interface.  /org-protocol/ intercepts
95 calls from emacsclient to trigger custom actions without external
96 dependencies.  Only one protocol has to be configured with your
97 external applications or the operating system, to trigger an
98 arbitrary number of custom actions. Just register your custom
99 sub-protocol and handler with the new variable
100 =org-protocol-protocol-alist=.
102 org-protocol comes the with three standard protocol handlers (in
103 parenthesis the name of the sub-protocol):
104 - =org-protocol-remember= (=remember=) :: Trigger remember
105 - =org-protocol-store-link= (=store-link=) :: Store a link
106 - =org-protocol-open-source= (=open-source=) :: Find the local
107      source of a remote web page.
109 Passing data to emacs is now as easy as calling
111 : emacsclient org-protocol://sub-protocol://data
113 For more information see the [[http://orgmode.org/worg/org-contrib/org-protocol.php][online documentation]]
115 Thanks to Sebastian Rose for this really beautiful module.
117 *** Inline tasks
118       
119 Inline tasks are tasks that have all the properties of normal
120 outline nodes, including the ability to store meta data like
121 scheduling dates, TODO state, tags and properties.  But these
122 tasks are not meant to introduce additional outline structure, at
123 least as far as visibility cycling and export is concerned.  They
124 are useful for adding tasks in extensive pieces of text where
125 interruption of the flow or restructuring is unwanted.
127 This feature is not turned on by default, you need to configure
128 =org-modules= to turn it on, or simply add to you .emacs file:
130 : (require 'org-inlinetask)
132 After that, tasks with level 15 (30 stars when using
133 org-odd-levels-only) will be treated as inline tasks, and
134 fontification will make obvious which tasks are treated in this
135 way.
137 *** Input from RSS feeds
139 Org can now collect tasks from an RSS feed, a great method to get
140 stuff from online call and note-taking services into your trusted
141 system.  You need to configure the feeds in the variable
142 =org-feed-alist=.  The manual contains a short description, more
143 detailed information is [[http://orgmode.org/worg/org-contrib/org-feed.php][available on Worg]].
145 Full credit goes to Brad Bozarth who really [[http://thread.gmane.org/gmane.emacs.orgmode/12251][paved the way]] for this
146 exciting new feature.
149 ** Export
151 *** Allow modification of table attributes in HTML export
152       
153 The #+ATTR_HTML line can now be used to set attributes for a
154 table.  Attributes listed in that line will replace existing
155 attributes in =org-export-html-table-tag=, or will add new ones.
156 For example
157       
158 : #+ATTR_HTML: border="2" rules="all" frame="all"
159 : #+CAPTION: Finally a table with lines!
160 : | a | b |
161 : |---|---|
162 : | 1 | 2 |
164 *** LaTeX low levels are now exported as itemize lists
166 LaTeX export now treats hierarchy levels 4,5, etc as itemize
167 lists, not as description lists as before.  This is more
168 consistent with the behavior of HTML export.  You can configure
169 this behavior using the variable =org-export-latex-low-levels=.
171 *** Markup for centering.
173 Text can be exported centered with
175 #+begin_src org
176 ,#+BEGIN_CENTER
177 ,Everything should be made as simple as possible, \\
178 ,but not any simpler
179 ,#+END_CENTER
180 #+end_src
182 *** Sitemap file is now /sitemap.org/
183     
184 Org-publish can produce a list of all files in a project.
185 Previously the file containing this list was called "index.org",
186 really a brain-dead default because during publication it would
187 overwrite the "index.html" file of the website.
189 The default file name is now "sitemap.org"
191 *** Protect explicit target links in HTML export
192       
193 If a link is =[[#name] [desc]]=, the href produced when exporting
194 the file will be exactly href="#name".  So starting a link target
195 with # will indicate that there will be an explicit target for
196 this.
198 *** HTML export: Allow "- ___" to explicitly terminate a list
199       
200 If a list contains "- ___" (three underscores) as an item, this
201 terminates the list, ignoring this item.  This is an experimental
202 feature, it may disappear again if we find other ways to deal
203 with literal examples right after lists.
205 See [[http://thread.gmane.org/gmane.emacs.orgmode/12299/focus%3D12312][this mailing list thread]] for context.
207 ** Agenda
209 *** Changing the time of an entry from the agenda
211 We now have a way to change not only the date, but also the start
212 time of an entry from the agenda.  The date is normally changed
213 with S-right/left.  Now, if you add a C-u prefix, the hour will
214 be changed.  If you immediately press S-right/left again, hours
215 will continue to be changed.  A double prefix will do the same
216 for minutes.  If the entry has a time range like 14:40-16:00,
217 then both times will change, preserving the length of the
218 appointment.
220 *** Show saved PDF agenda view with prefix arg
222 When writing an agenda view to a PDF file, supplying a a prefix
223 argument (=C-u C-x C-w=) will get the new file displayed
224 immediately.
226 This was a request by Alan E Davis.
228 *** Filter for entries with no effort defined
230 During secondary agenda filtering, pressing "?" now will install a
231 filter that selects entries which do not have an effort defined.
233 This new model was necessary because we needed to stop interpreting
234 entries with no effort defines as 0 effort.  This was inconsistent,
235 because for normal agenda sorting, the treatment of these entries
236 depends on the variable =org-sort-agenda-noeffort-is-high=.  Now this
237 variable is also respected during filtering.
239 This new feature resulted from a [[http://thread.gmane.org/gmane.emacs.orgmode/12493][discussion]] with Matt Lundin and
240 Bernt Hansen.
242 *** Introduce user-defined sorting operators
243       
244 The new variable =org-agenda-cmp-user-defined= can contain a
245 function to test how two entries should be compared during
246 sorting.  The symbols =user-defined-up= and =user-defined-down=
247 can then be part of any sorting strategy.
249 This was a request by Samuel Wales.
251 *** Indentation of subitems in the agenda
252       
253 When a tags/property match does match an entry and it's
254 sublevels, the sublevels used to be indented by dots, to indicate
255 that the matches likely result from tag inheritance.  This is now
256 no longer the default, so the subitems will not get special
257 indentation.  You can get this behavior back with
258       
259 : (setq org-tags-match-list-sublevels 'indented)
261 *** Stuck projects search now searches subtrees of unstuck projects
263 When, during a stuck-project search, a project tree is identified
264 as not stuck, so far the search would continue after the end of
265 the project tree.  From now on, the search continues in the
266 subtree, so that stuck subprojects can still be identified.
269 ** Miscellaneous
271 *** Citations: Use RefTeX to insert citations
272       
273 RefTeX can now be used to create a citation in Org-mode buffers.
274 Setup the buffer with 
276 #+begin_src org
277 ,#+BIBLIOGRAPHY: bibbase style
278 #+end_src
280 and create citations with =C-c C-x [=.
282 Together with org-exp-bibtex.el by Taru Karttunen (available as a
283 contributed package), this provides a great environment for
284 including citations into HTML and LaTeX documents.
286 *** Changing time ranges as a block
288 When using the S-cursor keys to change the first time in a time
289 range like 
291 : <2009-04-01 Wed 14:40-16:40>
293 then the end time will change along, so that the duration of the
294 event will stay the same.
296 This was a request by Anupam Sengupta.
298 *** New sparse tree command
300 A new sparse tree command shows entries with times after a certain
301 date.  Keys are =C-c / a=, this command is for symmetry
302 with =C-c / b=.
304 *** Cloning tasks
306 A new command allows to create clone copies of the current entry,
307 with shifted dates in all stamps in the entry.  This is useful to
308 create, for example, a series of entries for a limited time
309 period.  I am using it to prepare lectures, for example.
311 *** New face for checkboxes
313 Checkboxes now have their own face, =org-checkbox=.  This can be
314 used for nice effects, for example choosing a face with a box
315 around it:
317 #+begin_src emacs-lisp
318 (custom-set-faces
319  (org-checkbox ((t (:background "#444444" :foreground "white"
320                 :box (:line-width 1 :style released-button)))))
321 #+end_src
323 *** M-a and M-e for navigation in a table field
325 In tables fields, the sentence commands =M-a= and =M-e= are
326 redefined to jump to the beginning or end of the field.
328 This was a request by Bastien Guerry.
330 *** Backup files for remember buffers
331       
332 Sometimes users report that they lost data when not immediately
333 storing a new remember note, and then later exiting Emacs or
334 starting a new remember process.
336 Now you can set the variable =org-remember-backup-directory=.
337 Each remember buffer created will then get its own unique file
338 name in that directory, and the file will be removed only if the
339 storing of the note to an Org files was successful.
341 *** org-mac-message.el: New functions to access flagged mail
342       
343 Christopher Suckling has added functionality to
344 /org-mac-message.el/.  In particular, you can now select a number
345 of messages and easily get links to all of them with a single
346 command.  For details, see the [[http://orgmode.org/worg/org-contrib/org-mac-message.php][online documentation]].
348 *** Read-date: New hook
349       
350 The new hook =org-read-date-minibuffer-setup-hook= is called when
351 setting up the minibuffer for reading a date.  If can be used to
352 install new keys into the temporary keymap used there.
355 * Version 6.24
357 ** Incompatible changes
360 *** Tag searches are now case-sensitive
362 From this release on, tag searches will be case sensitive.  While
363 I still think it would be nice to have them case-insensitive,
364 this was both an inconsistency (TODO keyword searches have always
365 been case-sensitive), and trouble for coding some efficient
366 algorithms.  So please make sure that you give the tags with
367 correct casing when prompted for a match expression.
369 *** New key for creating tags/property sparse trees
371 The key to produce a sparse tree matching tags and properties is
372 now =C-c / m= instead of =C-c a T=.  This is also more consistent
373 with the =C-c a m= key for the corresponding agenda view.
374 =C-c / T= will still work for now, but it is no longer advertised
375 in the documentation and may go away at any time in the future.
377 *** IDs in HTML have "ID-" prefix when generated by uuidgen
379 /uuidgen/ generates IDs that often start with a number, not a
380 latter.  However, IDs and names in XHTML must start with a letter.
381 Therefore, IDs in HTML files will now get an "ID-" prefix if they
382 have been generated by uuidgen.  This means that id links from one
383 file to another may stop working until all files have been
384 exported again.
386 *** In agenda, only priority cookies get the special face
388 So far, an entire task would get a special face when
389 =org-agenda-fontify-priorities= was set.  Now, the default value
390 for this variable is the symbol =cookies=, which means that on
391 the cookie is fontified.  Set it to =t= if you want the entire
392 task headline to be fontified.
394 ** Details
396 *** PDF export of agenda views
398 Agenda views can now be exported to PDF files by writing them to
399 a file with extension ".pdf".  Internally this works by first
400 producing the postscript version and then converting that to PDF
401 using the ghostview utility =ps2pdf=.  Make sure that this
402 utility is installed on your system.
404 The postscript version will not be removed, it will stay around.
406 *** Inline some entry text for Agenda View export
408 When exporting an agenda view to HTML or PDF for printing or
409 remote access, one of the problems can be that information stored
410 in entries below the headline is not accessible in that format.
412 You can now copy some of that information to the agenda view
413 before exporting it.  For this you need to set the variable 
414 =org-agenda-add-entry-text-maxlines= to a number greater than 0.
416 #+begin_src emacs-lisp
417 (setq org-agenda-add-entry-text-maxlines 20)
418 #+end_src
420 Or you can do this with the settings in a custom agenda view,
421 for example
423 #+begin_src emacs-lisp
424 ("A" "" agenda ""
425  ((org-agenda-ndays 1)
426   (org-agenda-add-entry-text-maxlines 5))
427  ("agenda-today.pdf"))
428 #+end_src
430 *** Improved ASCII export of links
432 ASCII export of links works now much better.  If a link has a
433 link and a description part which are different, then the
434 description will remain in the text while the link part will be
435 moved to the end of the current section, before the next heading,
436 as a footnote-like construct.
438 Configure the variable =org-export-ascii-links-to-notes= if you
439 prefer the links to be shown in the text.  In this case, Org will
440 make an attempt to wrap the line which may have become
441 significantly longer by showing the link.
443 Thanks to Samuel Wales for pointing out the bad state of ASCII
444 link export.
446 *** Custom agenda commands can specify a filter preset
448 If a custom agenda command specifies a value for
449 =org-agenda-filter-preset= in its options, the initial view of
450 the agenda will be filterd by the specified tags.  Applying a
451 filter with =/= will then always add to that preset filter,
452 clearing the filter with =/ /= will set it back to the preset.
453 Here is an example of a custom agenda view that will display the
454 agenda, but hide all entries with tags =FLUFF= or =BLUFF=:
456 #+begin_src emacs-lisp
457 ("A" "" agenda ""
458  ((org-agenda-filter-preset '("-FLUFF" "-BLUFF"))))
459 #+end_src
461 This is in response to a [[http://thread.gmane.org/gmane.emacs.orgmode/11752][thread on the mailing list]], started by
462 Daniel Clemente and with great contributions by Bernt Hansen and
463 Matt Lundin.
465 *** Exporting of citations to LaTeX and HTML, using BibTeX
466     
467 Citations can now me made using BibTeX, and will be exported to
468 LaTeX and HTML.  This is implemented in a contributed package by
469 Taru Karttunen, /org-exp-bibtex.el/.  Kudos to Taru for this
470 really nice addition.
472 *** Finally a way to specify keywords and description for HTML export
474 Use something like
476 #+begin_src org
477 #+DESCRIPTION: This page is all about ....
478 #+KEYWORDS: org-mode, indexing, publishing
479 #+end_src
481 To specify the content of the description and keywords meta tags
482 for HTML output.
484 *** org-collector.el is now a contributed package
486 /org-collector.el/ provides functions to create tables by
487 collecting and processing properties from entries in a specific
488 scope like the current tree or file, or even from all agenda
489 files.  General lisp expressions can be used to manipulate the
490 property values before they are inserted into an org-mode table,
491 for example as a dynamic block that is easy to update.
493 Thanks to Eric Schulte for yet another great contribution to
494 Org.
496 *** Update of org2rem.el
498 /org2rem.el/ has been updated significantly and now does a more
499 comprehensive job of exporting Org events to remind.
501 Thanks to Sharad Pratap for this update.
503 *** New div around the entire page in HTMP export
505 A new =<div id=content>= is wrapped around the entire page,
506 everything that is inside =<body>=.
508 This means that you need to update /org-info.js/ (if you have a
509 local copy).  It will be safe todo so, because the new
510 org-info.js still handles older pages correctly.  Thanks to
511 Sebastian Rose for making these changes so quicky.
513 *** Clustering characters for undo
515 When typing in Org-mode, undo will now remove up to 20 characters
516 at a time with a single undo command.  This is how things work
517 normally in Emacs, but the special binding of characters in
518 Org-mode made this impossible until now.
520 Thanks to Martin Pohlack for a patch which mimicks the behavior
521 of the Emacs command loop for the Org version of
522 =self-insert-command=.  Note that this will not work in headlines
523 and tables because typing there will do a lot of extra work.
525 There might be a small typing performance hit resulting from this
526 change - please report in the mailing list if this is noticeable
527 and annoying. 
529 *** Separate settings for special C-a and C-e 
531 The variable `org-special-ctrl-a/e' now allows separate settings
532 for =C-a= and =C-e=.  For example
534 #+begin_src emacs-lisp
535 (setq org-special-ctrl-a/e '(reversed . t))
536 #+end_src
538 Thanks to Alan Davis for this proposal.
540 *** orgstruct++-mode improvements
542 In addition to =orgstruct-mode= which allows to use some Org-mode
543 structure commands in other major modes, there is a more invasive
544 version of this mode: =orgstruct++-mode=.  This mode will import
545 all paragraph and line wrapping variables into the major mode, so
546 that, for example, during typing the auto-fill wrapping of items
547 will work just like in Org-mode.  This change is not reversible,
548 so turning off =orgstruct++-mode= will not remove these settings
549 again. =orgstruct++-mode= is most useful in text modes like
550 message-mode or =magit-log-edit-mode=.  Furthermore,
551 =orgstruct++-mode= will recognize plain list context not only in
552 the first line of an item, but also further down, so that =M-RET=
553 will correctly insert new items.
555 Thanks to Austin Frank for requesting some of these changes.
557 *** Promotion and demotion works for regions now
559 =M-right= and =M-left= now do demote and promote all headlines in
560 an active region.
562 *** Match syntax for tags/properties is now described in a single place
564 The manual chapters about tags and about properties now only
565 refer to the section about agenda views, where the general syntax
566 of tag/property matches is described.
568 *** Macro replacement
570 A string like ={{{ title }}}= will be replaced by the title of
571 the document, ={{{ email }}}= by the email setting of the author
572 and similarly for other export settings given in =#+...= lines.
573 In addition to that, you can define an arbitrary number of
574 macros, for example:
576 #+begin_src org
577 ,#+MACRO: myaddress 41 Onestreet, 12345 New York, NY
579 ,my address is {{{myaddress}}}, see you there.
580 #+end_src
582 Macro replacement is the very first thing that happens during
583 export, and macros will be replaced even in source code and other
584 protected regions.
586 *** New reload command, with keyboard access
588 There is now a special command to reload all Org Lisp files, so
589 that you can stay in your Emacs session while pulling and
590 compiling changes to Org.  The command to reload the compiled
591 files (if available) is =C-c C-x r=.  If no compiled files are
592 found, uncompiled ones will be loaded.  If you want to force
593 loading of uncompiled code (great for producing backtraces), use
594 a prefix arg: =C-u C-c C-x r=.  Both commands are available in
595 the menu as well.
597 This new command was inspired by one written earlier by Bernt
598 Hansen.
600 *** Faces for priority cookies can now be set freely
602 The new variable =org-priority-faces= can be used to set faces
603 for each priority.
605 *** New key for creating tags/property sparse trees
607 The key to produce a sparse tree matching tags and properties is
608 now =C-c / m= instead of =C-c a T=.  This is more consistent with
609 the =C-c a m= key for the corresponding agenda view.  =C-c / T=
610 will still work for now, but it is no longer advertised in the
611 documentation and may go away at any time in the future.
613 *** IDs in HTML have "ID-" prefix when generated by uuidgen
615 /uuidgen/ generates IDs that often start with a number, not a
616 letter.  However, IDs and names in XHTML must start with a letter.
617 Therefore, IDs in HTML files will now get an "ID-" prefix if they
618 have been generated by /uuidgen/.  This means that id links from one
619 file to another may stop working until all files have been
620 exported again, so that both links and targets have the new prefix.
622 *** In agenda, only priority cookies get the special face
624 So far, an entire task would get a special face when
625 =org-agenda-fontify-priorities= was set.  Now, the default value
626 for this variable is the symbol =cookies=, which means that on
627 the cookie is fontified.  Set it to =t= if you want the entire
628 task headline to be fontified.
630 *** Turning off time-of-day search in headline
632 Some people like to put a creation time stamp into a headline and
633 then get confused if the time-of-day found in there shows up as
634 the time-of-day of the deadline/scheduling entry for this
635 headline.  The reason for this is that Org searches the headline
636 for a free-format time when trying to sort the entry into the
637 agenda, and that search accidentally finds the time in the
638 creation time stamp or something else that happens to look like a
639 time.  If this is more painful than useful for you, configure the
640 new variable =org-agenda-search-headline-for-time=.
643 * Version 6.23
644 ** Overview
646 - Capture state change notes into a drawer
647 - Clock lines are now captured into the LOGBOOK drawer as well
648 - Added org-R.el to contrib directory
649 - Allow individual formatting of each TODO keyword in HTML export
650 - New hooks for add-ons to tap into context-sensitive commands
651 - Publishing files irrespective of extension
652 - New variable index in the manual
653 - The ORDERED property also influences checkboxes
654 - The ORDERED property can be tracked with a tag
655 - You may now specify line breaks in the fast tags interface
656 - When a TODO is blocked by checkboxes, keep it visible in agenda
657 - LaTeX can import Org's in-buffer definitions for TITLE, EMAIL etc.
659 ** Incompatible changes
661 - CLOCK lines will now be captured into the LOGBOOK drawer.
662   See below for details.
664 ** Details
666 *** Capture state change notes into a drawer
668 State change notes can now be captured into a drawer =LOGBOOK=,
669 to keep the entry tidy.  If this is what you want, you will need
670 this configuration:
672 #+begin_src emacs-lisp
673 (setq org-log-into-drawer "LOGBOOK")
674 #+end_src
676 Thanks to Wanrong Lin for this proposal.
678 *** Clock lines are now captured into the LOGBOOK drawer as well
680 The =CLOCK= drawer will be abandoned, clock lines will now also
681 end up in a drawer =LOGBOOK=.  The reason for this is that it's a
682 bit useless to have two different drawers for state change notes
683 and clock lines.  If you wish to keep the old way, use
685 #+begin_src emacs-lisp
686 (setq org-clock-into-drawer "CLOCK")
687 #+end_src
689 *** Added org-R.el to contrib directory
691 Dan Davison has contributed /org-R.el/ which is now in the
692 contrib directory.  Org-R performs numerical computations and
693 generates graphics.  Data can come from org tables, or from csv
694 files; numerical output can be stored in the org buffer as org
695 tables, and links are created to files containing graphical
696 output.  Although, behind the scenes, it uses R, you do not need
697 to know anything about R.  Common operations, such as tabulating
698 discrete values in a column of an org table, are available "off
699 the shelf" by specifying options on lines starting with =#+R:=.
700 However, you can also provide raw R code to be evaluated.  The
701 documentation is currently the worg tutorial at
702 http://orgmode.org/worg/org-tutorials/org-R/org-R.php
704 Thanks to Dan for this great contribution.
706 *** Allow individual formatting of TODO keyword and tags in HTML export
708 TODO keywords in HTML export have the CSS class =todo= or =done=.
709 Tags have the CSS class =tag=.  In addition to this, each keyword
710 has now itself as class, so you could do this in your CSS file:
712 #+begin_src css
713 .todo { font-weight:bold; }
714 .done { font-weight:bold; }
715 .TODO { color:red; }
716 .WAITING { color:orange; }
717 .DONE { color:green; }
718 #+end_src
720 If any of your keywords causes conflicts with CSS classes used
721 for different purposes (for example a tag "title" would cause a
722 conflict with the class used for formatting the document title),
723 then you can use the variables =org-export-html-tag-class-prefix=
724 and =org-export-html-todo-kwd-class-prefix= to define prefixes
725 for the class names for keywords, for example "kwd-".
727 Thanks to Wanrong Lin for this request, and to Sebastian Rose for
728 help with the implementation.
730 *** New hooks for add-ons to tap into context-sensitive commands
732 Some commands in Org are context-sensitive, they will execute
733 different functions depending on context.  The most important
734 example is of course =C-c C-c=, but also the =M-cursor= keys fall
735 into this category.
737 Org has now a system of hooks that can be used by add-on packages
738 to install their own functionality into these keys.  See the
739 docstring of =org-ctrl-c-ctrl-c-hook= for details.  The other
740 hooks are named like =org-metaleft-hook= or
741 =org-shiftmetaright-hook=.
743 *** Publishing files irrespective of extension
745 If you set the =:base-extension= property for a publishing
746 project to the symbol =any=, all files in the directory will be
747 published, irrespective of extension.
749 Thanks to Richard Klinda for a patch to this effect.
751 *** New variable index in the manual
753 A new index in the manual lists all variables mentioned in the
754 manual, about 200 variables in total.
756 *** The ORDERED property also influences checkboxes
758 When an entry has the ORDERED property set, checkboxes in
759 the entry must be completed in order.  This was already the case
760 for children TODO items, now it also applies for checkboxes.
762 Thanks to Rainer Stengele for this proposal.
764 *** The ORDERED property can be tracked with a tag
766 The =ORDERED= property is used to flag an entry so that subtasks
767 (both children TODO items and checkboxes) must be completed in
768 order.  This property is most easily toggled with the command
769 =C-c C-x o=.  A property was chosen for this functionality,
770 because this should be a behavior local to the current task, not
771 inherited like tags.  However, properties are normally
772 invisible.  If you would like visual feedback on the state of
773 this property, configure the variable
774 =org-track-ordered-property-with-tag=.  If you then use =C-c C-x
775 o= to toggle the property, a tag will be toggled as well, for
776 visual feedback.
778 Note that the tag itself has no meaning for the behavior of TODO
779 items and checkboxes, and that changing the tag with the usual
780 tag commands will not influence the property and therefore the
781 behavior of TODO and checkbox commands.
783 *** You may now specify line breaks in the fast tags interface
785 Up to now, the fast tags interface tried to lump as many tags as
786 possible into a single line, with the exception that groups would
787 always be on a line by themselves.
789 Now, if you use several lines to define your tags, like
791 #+begin_src org
792 ,#+TAGS: aa(a) bb(b) cc(c)
793 ,#+TAGS: dd(d) ee(e) ff(f)
794 #+end_src
796 then there will also be a line break after the "cc" tag in the
797 fast tag selection interface.  You may also write
799 #+begin_src org
800 ,#+TAGS: aa(a) bb(b) cc(c) \n dd(d) ee(e) ff(f)
801 #+end_src
803 to achieve the same effect, and you can use =\n= several times in
804 order to produce empty lines.  In =org-tag-alist=, newlines are
805 represented as =(:newline)=.
807 Thanks to Christopher Suckling for a patch to this effect.
809 *** When a TODO is blocked by checkboxes, keep it visible in agenda
811 When the variable =org-agenda-dim-blocked-tasks= is set to
812 =invisible=, tasks that are blocked will not be visible in the
813 agenda.  If the blocking is due to child TODO entries, this does
814 make sense because the children themselves will show up in the
815 TODO list.
817 However, as John Rakestraw has [[http://thread.gmane.org/gmane.emacs.orgmode/10939][pointed out]], if the blocking is
818 done by checkboxes, no trace of these subtasks is left.
819 Therefore, when the blocking is done by checkboxes, we now
820 overrule the =invisible= setting and replace it with mere dimming
821 of the task.
823 *** LaTeX can import Org's in-buffer definitions for TITLE, EMAIL etc.
825 If you configure =org-export-latex-import-inbuffer-stuff=,
826 in-buffer definitions like #+TITLE will be made available in the
827 LaTeX file as =\orgTITLE=.
829 This was a request by Russel Adams.
831 * Version 6.22
832 ** Details
834 *** org-choose.el by Tom Breton is now included
836 Org-choose helps documenting a decision-making process by using
837 TODO keywords for different degrees of /chosenness/, and by
838 automatically keeping a set of alternatives in a consistent state.
840 Documentation for /org-choose.el/ is available [[http://orgmode.org/worg/org-contrib/org-choose.php][here]].
842 This package inserts itself into Org using hooks, so if other
843 people would like to do interesting stuff with TODO keywords for
844 special purposes, looking at Tom's code might be a good way to
845 start.
847 Thanks to Tom for this interesting contribution!
849 *** orgmode.org and Worg css works now better on IE
851 Thanks to Sebastian Rose for making these changes.
853 *** When exporting a subtree, headline levels are now relative to parent
855 This was reported as a bug by William Henney and is fixed now.
857 *** Inactive dates in tables can be used for sorting.
859 When sorting table fields or entries by date, Org first tries to
860 find an active date, and, if none exist, uses a passive date if
861 present.
863 This was a request by Hsui-Khuen Tang
865 *** The default for =org-return-follows-link= is back to =nil=
867 Setting it to =t= violates Emacs rules to some extent.  The
868 internal implementation of this has been improved, so setting it
869 to =t= should now be pretty stable.
871 *** Automatic scheduling of siblings with org-depend.el
873 The sibling of a DONE task can now automatically be scheduled.
875 This was a patch by Andrew Hyatt.
877 *** New skipping conditions
879 The functions =org-agenda-skip-entry-if= and
880 =org-agenda-skip-subtree-if= now accept =timestamp= and
881 =nottimestamp= as additional conditions.
883 This was in response to a request by Saurabh Agrawal.
885 * Version 6.21
887 ** Details
889 *** Changes to some default values of variables:
891 Here are the new default values:
893 #+begin_example
894 (setq org-return-follows-link t)
896 (setq org-use-fast-todo-selection t)
898 (setq org-yank-adjusted-subtrees nil)
900 (setq org-tags-column -77)
902 (setq org-agenda-sorting-strategy
903      '((agenda time-up priority-down category-keep)
904         (todo time-up priority-down category-keep)
905         (tags time-up priority-down category-keep)
906         (search category-keep)))
907 #+end_example
909 *** Final cleanup for Emacs 21.1 pretest
911 * Version 6.20
913 ** Details
915 *** Support for simple TODO dependencies
917 John Wiegley's code for enforcing simple TODO dependencies has
918 been integrated into Org-mode.  Thanks John!
920 The structure of Org files (hierarchy and lists) makes it easy to
921 define TODO dependencies.  A parent TODO task should not be
922 marked DONE until all subtasks (defined as children tasks) are
923 marked as DONE.  And sometimes there is a logical sequence to a
924 number of (sub)tasks, so that one task cannot be acted upon
925 before all siblings above it are done.  If you customize the
926 variable =org-enforce-todo-dependencies=, Org will block entries
927 from changing state while they have children that are not DONE.
928 Furthermore, if an entry has a property =ORDERED=, each of its
929 children will be blocked until all earlier siblings are marked
930 DONE.  Here is an example:
932 #+begin_src org
933 ,* TODO Blocked until (two) is done
934 ,** DONE one
935 ,** TODO two
937 ,* Parent
938 ,  :PROPERTIES:
939 ,    :ORDERED: t
940 ,  :END:
941 ,** TODO a
942 ,** TODO b, needs to wait for (a)
943 ,** TODO c, needs to wait for (a) and (b)
944 #+end_src
946 The command =C-c C-x o= toggles the value of the =ORDERED=
947 property.
949 The variable =org-agenda-dim-blocked-tasks= controls how blocked
950 entries should appear in the agenda, where they can be dimmed or
951 even made invisible.
953 Furthermore, you can use the variable
954 =org-enforce-todo-checkbox-dependencies= to block TODO entries
955 from switching to DONE while any checkboxes are unchecked in the entry.
957 *** Support for shift-selection in Emacs 23
959 Customize the variable =org-support-shift-select= to use S-cursor
960 key for selecting text.  Make sure that you carefully read the
961 docstring of that variable first.
963 *** Adding and removing checkboxes from many lines
965 The command =C-c C-x C-b= normally toggles checkbox status in the
966 current line, or in all lines in the region.  With prefix
967 argument it now either adds or removes the checkbox.
969 This was a requested by Daniel Clemente.
971 * Version 6.19
973 ** Overview
974    
975 - Improved behavior of conversion commands =C-c -= and =C-c *=
976 - Table formulas may now reference fields in other tables
977 - A final hline is imagined in each table, for the sake of references
978 - A tags-todo search can now ignore timestamped items
979 - =\par= can be used to force a paragraph break, also in footnotes
981 ** Details
982    
984 *** Improved behavior of conversion commands =C-c -= and =C-c *=
986     The conversion commands =C-c -= and =C-c *= are now better
987     behaved and therefore more useful, I hope.
989     If there is an active region, these commands will act on the
990     region, otherwise on the current line.
992     - C-c - :: This command turns headings or normal lines into
993          items, or items into normal lines.  When there is a
994          region, everything depends on the first line of the
995          region:
996          - if it is a item, turn all items in the region into
997            normal lines.
998          - if it is a headline, turn all headlines in the region
999            into items. 
1000          - if it is a normal line, turn all lines into items.
1001          - special case: if there is no active region and the
1002            current line is an item, cycle the bullet type of the
1003            current list.
1004     - C-c * :: This command turns items and normal lines into
1005          headings, or headings into normal lines.  When there is
1006          a region, everything depends on the first line of the
1007          region:
1008          - if it is a item, turn all items in the region into
1009            headlines.
1010          - if it is a headline, turn all headlines in the region
1011            into normal lines. 
1012          - if it is a normal line, turn all lines into headlines.
1014 *** Table formulas may now reference fields in other tables
1016 You may now reference constants, fields and ranges from a
1017 different table, either in the current file or even in a
1018 different file.  The syntax is
1020 : remote(NAME-OR-ID,REF)
1022 where /NAME/ can be the name of a table in the current file as
1023 set by a =#+TBLNAME: NAME= line before the table.  It can also be
1024 the ID of an entry, even in a different file, and the reference
1025 then refers to the first table in that entry.  /REF/ is an
1026 absolute field or range reference, valid in the referenced table.
1027 Note that since there is no "current filed" for the remote table,
1028 all row and column references must be absolute, not relative.
1030 *** A final hline is imagined in each table, for the sake of references
1032 Even if a table does not end with a hline (mine never do because I
1033 think it is not pretty), for the sake of references you can
1034 assume there is one.  So in the following table
1036 #+begin_src org
1037 | a | b |
1038 |---+---|
1039 | 1 | 2 |
1040 | 3 | 4 |
1041 #+end_src
1043 a reference like =@I$1..@II$2= will now work.
1045 *** A tags-todo search can now ignore timestamped items
1046     The variables =org-agenda-todo-ignore-with-date=,
1047     =org-agenda-todo-ignore-with-date=, and
1048     =org-agenda-todo-ignore-with-date= make it possible to
1049     exclude TODO entries which have this kind of planning info
1050     associated with them.  This is most useful for people who
1051     schedule everything, and who use the TODO list mainly to find
1052     things that are not yet scheduled.  Thomas Morgan pointed out
1053     that also the tags-todo search may serve exactly this
1054     purpose, and that it might be good to have a way to make
1055     these variables also apply to the tags-todo search.  I can
1056     see that, but could not convince myself to make this the
1057     default.  A new variable must be set to make this happen:
1058     =org-agenda-tags-todo-honor-ignore-options=.
1060 *** =\par= can be used to force a paragraph break, also in footnotes
1062 The LaTeX idiom =\par= will insert a paragraph break at that
1063 location.  Normally you would simply leave an empty line to get
1064 such a break, but this is useful for footnotes whose
1065 definitions may not contain empty lines.
1067 * Version 6.18
1068 ** Incompatible changes
1070 *** Short examples must have a space after the colon
1072     Short literal examples can be created by preceding lines
1073     with a colon.  Such lines must now have a space after the
1074     colon.  I believe this is already general practice, but now
1075     it must be like this.  The only exception are lines that are
1076     empty except for the colon.    
1078 ** Details
1080 *** Include files can now also process switches
1082     The example and src switches like =-n= can now also be added
1083     to include file statements:
1085 : #+INCLUDE "~/.emacs" src emacs-lisp -n -r
1087     Thanks to Manish for pointing out that this was not yet
1088     supported.
1090 *** Examples can be exported to HTML as text areas
1091     
1092     You can now specify a =-t= switch to an example or src block,
1093     to make it export to HTML as a text area.  To change the
1094     defaults for height (number of lines in the example) and
1095     width of this area (80), use the =-h= and =-w= switches.
1097     Thanks to Ulf Stegemann for driving this development.
1099 *** LaTeX_CLASS can be given as a property
1101     When exporting a single subtree by selecting it as a region
1102     before export, the LaTeX class for the export will be taken
1103     from the =LaTeX_CLASS= property of the entry if present.
1105     Thanks to Robert Goldman for this request.
1107 *** Better handling of inlined images in different backends
1109     Two new variables govern which kind of files can be inlined
1110     during export.  These are
1111     =org-export-html-inline-image-extensions= and
1112     =org-export-latex-inline-image-extensions=.  Remember that
1113     links are turned into an inline image if they are a pure link
1114     with no description.  HTML files can inline /.png/, /.jpg/,
1115     and /.gif/ files, while LaTeX files, when processed with
1116     /pdflatex/, can inline /.png/, /.jpg/, and /.pdf/ files.
1117     These also represent the default settings for the new
1118     variables.  Note that this means that pure links to /.pdf/
1119     files will be inlined - to avoid this for a particular link,
1120     make sure that the link has a description part which is not
1121     equal to the link part.
1123 *** Links by ID now continue to work in HTML exported files
1125     If you make links by ID, these links will now still work in
1126     HTML exported files, provided that you keep the relative path
1127     from link to target file the same.
1129     Thanks to Friedrich Delgado Friedrichs for pushing this over
1130     the line.
1132 *** The relative timer can be paused
1134     The new command `C-c C-x ,' will pause the relative timer.
1135     When the relative timer is running, its value will be shown
1136     in the mode line.  To get rid of this display, you need to
1137     really stop the timer with `C-u C-c C-x ,'.
1139     Thanks to Alan Davis for driving this change.
1141 *** The attachment directory may now be chosen by the user
1143     Instead of using the automatic, unique directory related to
1144     the entry ID, you can also use a chosen directory for the
1145     attachments of an entry.  This directory is specified by the
1146     ATTACH_DIR property.  You can use `C-c C-a s' to set this
1147     property.
1149     Thanks to Jason Jackson for this proposal.
1151 *** You can use a single attachment directory for a subtree
1153     By setting the property ATTACH_DIR_INHERIT, you can now tell
1154     Org that children of the entry should use the same directory
1155     for attachments, unless a child explicitly defines its own
1156     directory with the ATTACH_DIR property.  You can use the
1157     command `C-c C-a i' to set this property in an entry.
1159 * Version 6.17
1161 ** Overview
1163 - Footnote support
1164 - Line numbers and references in literal examples 
1165 - New hooks for export preprocessing 
1166 - Capture column view into a different file
1168 ** Details
1170 *** Footnote support
1172 Org-mode now directly supports the creation of footnotes.  In
1173 contrast to the /footnote.el/ package, Org-mode's footnotes are
1174 designed for work on a larger document, not only for one-off
1175 documents like emails.  The basic syntax is similar to the one
1176 used by /footnote.el/, i.e. a footnote is defined in a paragraph
1177 that is started by a footnote marker in square brackets in column
1178 0, no indentation allowed.  The footnote reference is simply the
1179 marker in square brackets inside text.  For example:
1181 #+begin_src org
1182 The Org homepage[fn:1] now looks a lot better than it used to.
1184 [fn:1] The link is: http://orgmode.org
1185 #+end_src
1187 Org-mode extends the number-based syntax to /named/ footnotes and
1188 optional inline definition.  Using plain numbers as markers is
1189 supported for backward compatibility, but not encouraged because
1190 of possible conflicts with LaTeX syntax.  Here are the valid
1191 references:
1193 - [1] ::  A plain numeric footnote marker.
1194          
1195 - [fn:name] :: A named footnote reference, where `name' is a
1196      unique label word or, for simplicity of automatic creation,
1197      a number. 
1198      
1199 - [fn:: This is the inline definition of this footnote] :: A
1200      LaTeX-like anonymous footnote where the definition is given
1201      directly at the reference point.
1203 - [fn:name: a definition] :: An inline definition of a footnote,
1204      which also specifies a name for the note.  Since Org allows
1205      multiple references to the same note, you can then use use
1206      `[fn:name]' to create additional references.
1208 Footnote labels can be created automatically, or you create names
1209 yourself.  This is handled by the variable
1210 =org-footnote-auto-label= and its corresponding =#+STARTUP=
1211 keywords, see the docstring of that variable for details.
1213 The following command handles footnotes:
1215 - C-c C-x f :: The footnote action command.  When the cursor is
1216      on a footnote reference, jump to the definition.  When it is
1217      at a definition, jump to the (first) reference.  Otherwise,
1218      create a new footnote.  Depending on the variable
1219      `org-footnote-define-inline' (with associated =#+STARTUP=
1220      options =fninline= and =nofninline=), the definitions will
1221      be placed right into the text as part of the reference, or
1222      separately into the location determined by the variable
1223      =org-footnote-section=.
1224      When this command is called with a prefix argument, a menu
1225      of additional options is offered:
1226      - s :: Sort the footnote definitions by reference sequence.
1227             During editing, Org makes no effort to sort footnote
1228             definitions into a particular sequence.  If you want
1229             them sorted, use this command, which will also move
1230             entries according to =org-footnote-section=.
1231      - n :: Normalize the footnotes by collecting all
1232             definitions (including inline definitions) into a
1233             special section, and then numbering them in
1234             sequence.  The references will then also be
1235             numbers.  This is meant to be the final step before
1236             finishing a document (e.g. sending off an email).
1237             The exporters do this automatically, and so could 
1238             something like `message-send-hook'.
1239      - d :: Delete the footnote at point, and all references to it.
1240             
1241 - C-c C-c :: If the cursor is on a footnote reference, jump to
1242      the definition.  If it is a the definition, jump back to the
1243      reference.  When called with a prefix argument at either
1244      location, offer the same menu as `C-u C-c C-x f'.
1246 - C-c C-o or mouse-1/2 :: Footnote labels are also links to the
1247      corresponding definition/reference, and you can use the
1248      usual commands to follow these links.
1250 Org-mode's footnote support is designed so that it should also
1251 work in buffers that are not in Org-mode, for example in email
1252 messages.  Just bind =org-footnote-action= to a global key like
1253 =C-c f=.
1255 The main trigger for this development came from a hook function
1256 written by Paul Rivier, to implement named footnotes and to
1257 convert them to numbered ones before export.  Thanks, Paul!
1259 Thanks also to Scot Becker for a thoughtful post bringing this
1260 subject back onto the discussion table, and to Matt Lundin for
1261 the idea of named footnotes and his prompt testing of the new
1262 features.
1264 *** Line numbers and references in literal examples
1266 Literal examples introduced with =#+BEGIN_EXAMPLE= or =#+BEGIN_SRC=
1267 do now allow optional line numbering in the example.
1268 Furthermore, links to specific code lines are supported, greatly
1269 increasing Org-mode's utility for writing tutorials and other
1270 similar documents.
1272 Code references use special labels embedded directly into the
1273 source code.  Such labels look like "(ref:name)" and must be
1274 unique within a document.  Org-mode links with "(name)" in the
1275 link part will be correctly interpreted, both while working with
1276 an Org file (internal links), and while exporting to the
1277 different backends.  Line numbering and code references are
1278 supported for all three major backends, HTML, LaTeX, and ASCII.
1279 In the HTML backend, hovering the mouse over a link to a source
1280 line will remote-highlight the referenced code line.
1282 The options for the BEGIN lines are:
1284  - -n :: Number the lines in the example
1285  - +n :: Like -n, but continue numbering from where the previous
1286          example left off.
1287  - -r :: Remove the coderef cookies from the example, and replace
1288          links to this reference with line numbers.  This option
1289          takes only effect if either -n or +n are given as well.
1290          If -r is not given, coderefs simply use the label name.
1291  - -l "fmt" :: Define a local format for coderef labels, see the
1292       variable =org-coderef-label-format= for details.  Use this
1293       of the default syntax causes conflicts with the code in the
1294       code snippet you are using.
1296 Here is an example:
1298 #+begin_example -k
1299 #+begin_src emacs-lisp -n -r
1300 (defmacro org-unmodified (&rest body)                   (ref:def)
1301   "Execute body without changing `buffer-modified-p'."
1302   `(set-buffer-modified-p                              (ref:back)
1303     (prog1 (buffer-modified-p) ,@body)))
1304 #+end_src
1305 [[(def)][Line (def)]] contains the macro name.  Later at line [[(back)]],
1306 backquoting is used.
1307 #+end_example
1309 When exported, this is translated to:
1310 #+begin_src emacs-lisp -n -r
1311 (defmacro org-unmodified (&rest body)                   (ref:def)
1312   "Execute body without changing `buffer-modified-p'."
1313   `(set-buffer-modified-p                              (ref:back)
1314     (prog1 (buffer-modified-p) ,@body)))
1315 #+end_src
1316 [[(def)][Line (def)]] contains the macro name.  Later at line [[(back)]],
1317 backquoting is used.
1319 Thanks to Ilya Shlyakhter for proposing this feature set.  Thanks
1320 to Sebastian Rose for the key Javascript element that made the
1321 remote highlighting possible.
1323 *** New hooks for export preprocessing
1324     The export preprocessor now runs more hooks, to allow
1325     better-timed tweaking by user functions:
1327 - =org-export-preprocess-hook= ::
1328   Pretty much the first thing in the preprocessor.  But org-mode
1329   is already active in the preprocessing buffer.
1331 - =org-export-preprocess-after-include-files-hook= ::
1332   This is run after the contents of included files have been inserted.
1334 - =org-export-preprocess-after-tree-selection-hook= ::
1335   This is run after selection of trees to be exported has
1336   happened.  This selection includes tags-based selection, as
1337   well as removal of commented and archived trees.
1339 - =org-export-preprocess-before-backend-specifics-hook= ::
1340   Hook run before backend-specific functions are called during preprocessing.
1342 - =org-export-preprocess-final-hook= ::
1343   Hook for preprocessing an export buffer.  This is run as the
1344   last thing in the preprocessing buffer, just before returning
1345   the buffer string to the backend.
1347 *** Capture column view into a different file
1349     The :id parameter for the dynamic block capturing column view
1350     can now truly be an ID that will also be found in a
1351     different file.  Also, it can be like =file:path/to/file=, to
1352     capture the global column view from a different file.
1354     Thanks to Francois Lagarde for his report that IDs outside
1355     the current file would not work.
1357 * Version 6.16
1358   Cleanup of many small bugs, and one new feature.
1360 ** Details
1362 *** References to last table row with special names
1364     Fields in the last row of a table can now be referenced with
1365     $LR1, $LR2, etc.  These references can appear both on the
1366     left hand side and right hand side of a formula.
1368 * Version 6.15f
1370   This version reverses the introduction of @0 as a reference to
1371   the last rwo in a table, because of a conflict with the use of
1372   @0 for the current row.
1374 * Version 6.15
1375 ** Overview
1377 - All known LaTeX export issues fixed 
1378 - Captions and attributes for figures and tables. 
1379 - Better implementation for entry IDs 
1380 - Spreadsheet references to the last table line. 
1381 - Old syntax for link attributes abandoned 
1383 ** Incompatible changes
1384 *** Old syntax for link attributes abandoned
1386 There used to be a syntax for setting link attributes for
1387 HTML export by enclosing the attributes into double braces
1388 and adding them to the link itself, like
1390 #+begin_example
1391 [[./img/a.jpg{{alt="an image"}}] ]
1392 #+end_example
1394 This syntax is not longer supported, use instead
1396 #+begin_src org
1397 ,#+ATTR_HTML: alt="an image"
1398 [[./img/a.jpg] ]
1399 #+end_src
1401 ** Details
1403 *** All known LaTeX export issues fixed
1405 All the remaining issues with the LaTeX exporter have hopefully
1406 been addressed in this release.  In particular, this covers
1407 quoting of special characters in tables and problems with
1408 exporting files where the headline is in the first line, or with
1409 an active region.
1411 *** Captions and attributes for figures and tables.
1413 Tables, and Hyperlinks that represent inlined images, can now be
1414 equipped with additional information that will be used during
1415 export.  The information will be taken from the following special
1416 lines in the buffer and apply to the first following table or
1417 link.
1419 - #+CAPTION: :: The caption of the image or table.  This string
1420      should be processed according to the export backend, but
1421      this is not yet done.
1423 - #+LABEL: :: A label to identify the figure/table for cross
1424      references.  For HTML export, this string will become the
1425      ID for the ~<div class="figure">~ element that encapsulates
1426      the image tag and the caption.  For LaTeX export, this
1427      string will be used as the argument of a ~\label{...}~
1428      macro.  These labels will be available for internal links
1429      like ~[[label][Table] ]~.
1431 - #+ATTR_HTML: :: Attributes for HTML export of image, to be
1432      added as attributes into the ~<img...>~ tag.  This string
1433      will not be processed, so it should have immediately the
1434      right format.
1436 - #+ATTR_LaTeX: :: Attributes for LaTeX export of images and
1437      tables.\\
1438      For /images/, this string is directly inserted into
1439      the optional argument of the ~\includegraphics[...]{file}~
1440      command, to specify scaling, clipping and other options.
1441      This string will not be processed, so it should have
1442      immediately the right format, like =width=5cm,angle=90=.\\       
1443      For /tables/, this can currently contain the keyword
1444      =longtable=, to request typesetting of the table using the
1445      longtable package, which automatically distributes the table
1446      over several pages if needed.  Also, the attributes line may
1447      contain an alignment string for the tabular environment, like
1448      =longtable,align=l|lrl=
1450 For LaTeX export, if either a caption or a label is given, the element
1451 will be exported as a float, i.e. wrapped into a figure or table
1452 environment.
1454 *** Better implementation for entry IDs
1455     
1456 Unique identifiers for entries can now be used more efficiently.
1457 Internally, a hash array has replaced the alist used so far to
1458 keep track of the files in which an ID is defined.  This makes it
1459 quite fast to find an entry by ID.
1461 There is a new link type which looks like this:
1463 #+begin_example
1464 id:GLOBALLY-UNIQUE-IDENTIFIER
1465 #+end_example
1467 This link points to a specific entry.  When you move the entry to
1468 a different file, for example if you move it to an archive
1469 file, the link will continue to work.
1471 The file /org-id.el/ contains an API that can be used to write
1472 code using these identifiers, including creating IDs and finding
1473 them wherever they are.
1475 Org has its own method to create unique identifiers, but if the system
1476 has /uuidgen/ command installed (Mac's and Linux systems generally
1477 do), it will be used by default (a change compared to the earlier
1478 implmentation, where you explicitdly had to opt for uuidgen).  You can
1479 also select the method by hand, using the variable =org-id-method=.
1481 If the ID system ever gets confused about where a certain ID is, it
1482 initiates a global scan of all agenda files with associated archives,
1483 all files previously known containing any IDs, and all currently
1484 visited Org-mode files to rebuild the hash.  You can also initiate
1485 this by hand: =M-x org-id-update-id-locations=.  Running this command
1486 will also dump into the =*Messages*= buffer information about any
1487 duplicate IDs.  These should not exist, and Org will never /make/ the
1488 same ID twice, but if you /copy/ an entry with its properties,
1489 duplicate IDs will inevitably be produced.  Unfortunately, this is
1490 unavoidable in a plain text system that allows you to edit the text in
1491 arbitrary ways, and a portion of care on your side is needed to keep
1492 this system clean.
1494 The hash is stored in the file =~/.emacs.d/.org-id-locations=.
1495 This is also a change from previous versions where the file was
1496 =~/.org=id-locations=.  Therefore, you can remove this old file
1497 if you have it.  I am not sure what will happen if the =.emacs.d=
1498 directory does not exists in your setup, but in modern Emacsen, I
1499 believe it should exist.  If you do not want to use IDs across
1500 files, you can avoid the overhead with tracking IDs by
1501 customizing the variable =org-id-track-globally=.  IDs can then
1502 still be used for links inside a single file.
1504 IDs will also be used when you create a new link to an Org-mode
1505 buffer.  If you use =org-store-link= (normally at =C-c l=) inside
1506 en entry in an Org-mode buffer, and ID property will be created
1507 if it does not exist, and the stored link will be an =id:= link.
1508 If you prefer the much less secure linking to headline text, you
1509 can configure the variable =org-link-to-org-use-id=.  The default
1510 setting for this variable is =create-if-interactive=, meaning
1511 that an ID will be created when you store a link interactively,
1512 but not if you happen to be in an Org-mode file while you create
1513 a remember note (which usually has a link to the place where you
1514 were when starting remember).
1516 *** Spreadsheet references to the last table line.
1518 You may now use =@0= to reference the last dataline in a table
1519 in a stable way.  This is useful in particular for automatically
1520 generated tables like the ones using /org-collector.el/ by Eric
1521 Schulte.
1523 * Version 6.14
1524 ** Overview
1526    - New relative timer to support timed notes 
1527    - Special faces can be set for individual tags 
1528    - The agenda shows now all tags, including inherited ones. 
1529    - Exclude some tags from inheritance. 
1530    - More special values for time comparisons in property searches 
1531    - Control for exporting meta data 
1532    - Cut and Paste with hot links from w3m to Org 
1533    - LOCATION can be inherited for iCalendar export 
1534    - Relative row references crossing hlines now throw an error 
1536 ** Incompatible Changes
1538 *** Relative row references crossing hlines now throw an error
1539     
1540     Relative row references in tables look like this: "@-4" which
1541     means the forth row above this one.  These row references are
1542     not allowed to cross horizontal separator lines (hlines).  So
1543     far, when a row reference violates this policy, Org would
1544     silently choose the field just next to the hline.
1546     Tassilo Horn pointed out that this kind of hidden magic is
1547     actually confusing and may cause incorrect formulas, and I do
1548     agree.  Therefore, trying to cross a hline with a relative
1549     reference will now throw an error.
1550     
1551     If you need the old behavior, customize the variable
1552     `org-table-error-on-row-ref-crossing-hline'.
1554 ** Details
1556 *** New relative timer to support timed notes
1558     Org now supports taking timed notes, useful for example while
1559     watching a video, or during a meeting which is also recorded.
1561     - =C-c C-x .= :: 
1562       Insert a relative time into the buffer.  The first time
1563       you use this, the timer will be started.  When called
1564       with a prefix argument, the timer is reset to 0.
1566     - =C-c C-x -= :: 
1567       Insert a description list item with the current relative
1568       time.  With a prefix argument, first reset the timer to 0.
1570     - =M-RET= ::
1571       Once the time list has been initiated, you can also use the
1572       normal item-creating command to insert the next timer item.
1574     - =C-c C-x 0= :: 
1575       Reset the timer without inserting anything into the buffer.
1576       By default, the timer is reset to 0.  When called with a
1577       =C-u= prefix, reset the timer to specific starting
1578       offset.  The user is prompted for the offset, with a
1579       default taken from a timer string at point, if any, So this
1580       can be used to restart taking notes after a break in the
1581       process.  When called with a double prefix argument
1582       =C-c C-u=, change all timer strings in the active
1583       region by a certain amount.  This can be used to fix timer
1584       strings if the timer was not started at exactly the right
1585       moment.
1587     Thanks to Alan Dove, Adam Spiers, and Alan Davis for
1588     contributions to this idea.
1590 *** Special faces can be set for individual tags
1592     You may now use the variable =org-tag-faces= to define the
1593     face used for specific tags, much in the same way as you can
1594     do for TODO keywords.
1596     Thanks to Samuel Wales for this proposal.
1598 *** The agenda shows now all tags, including inherited ones.
1600     This request has come up often, most recently it was
1601     formulated by Tassilo Horn.
1603     If you prefer the old behavior of only showing the local
1604     tags, customize the variable =org-agenda-show-inherited-tags=.
1606 *** Exclude some tags from inheritance.
1608     So far, the only way to select tags for inheritance was to
1609     allow it for all tags, or to do a positive selection using
1610     one of the more complex settings for
1611     `org-use-tag-inheritance'.  It may actually be better to
1612     allow inheritance for all but a few tags, which was difficult
1613     to achieve with this methodology.
1615     A new option, `org-tags-exclude-from-inheritance', allows to
1616     specify an exclusion list for inherited tags.
1618 *** More special values for time comparisons in property searches
1620     In addition to =<now>=, =<today>=, =<yesterday>=, and
1621     =<tomorrow>=, there are more special values accepted now in
1622     time comparisons in property searches:  You may use strings
1623     like =<+3d>= or =<-2w>=, with units d, w, m, and y for day,
1624     week, month, and year, respectively
1626     Thanks to Linday Todd for this proposal.
1628 *** Control for exporting meta data
1630     All the metadata in a headline, i.e. the TODO keyword, the
1631     priority cookie, and the tags, can now be excluded from
1632     export with appropriate options:
1634     | Variable                      | Publishing property | OPTIONS switch |
1635     |-------------------------------+---------------------+----------------|
1636     | org-export-with-todo-keywords | :todo-keywords      | todo:          |
1637     | org-export-with-tags          | :tags               | tags:          |
1638     | org-export-with-priority      | :priority           | pri:           |
1640 *** Cut and Paste with hot links from w3m to Org
1642     You can now use the key =C-c C-x M-w= in a w3m buffer with
1643     HTML content to copy either the region or the entire file in
1644     a special way.  When you yank this text back into an Org-mode
1645     buffer, all links from the w3m buffer will continue to work
1646     under Org-mode.
1648     For this to work you need to load the new file /org-w3m.el./
1649     Please check your org-modules variable to make sure that this
1650     is turned on.
1652     Thanks for Richard Riley for the idea and to Andy Stewart for
1653     the implementation.
1655 *** LOCATION can be inherited for iCalendar export
1657     The LOCATION property can now be inherited during iCalendar
1658     export if you configure =org-use-property-inheritance= like
1659     this:
1661 #+begin_src emacs-lisp
1662 (setq org-use-property-inheritance '("LOCATION"))
1663 #+end_src
1665 * Version 6.13
1667 ** Overview
1669    - Keybindings in Remember buffers can be configured
1670    - Support for ido completion
1671    - New face for date lines in agenda column view
1672    - Invisible targets become now anchors in headlines.
1673    - New contributed file /org-exp-blocks.el/
1674    - New contributed file /org-eval-light.el/
1675    - Link translation
1676    - BBDB links may use regular expressions.
1677    - Link abbreviations can use %h to insert a url-encoded target value
1678    - Improved XHTML compliance
1680 ** Details
1682 *** Keybindings in Remember buffers can be configured
1684     The remember buffers created with Org's extensions are in
1685     Org-mode, which is nice to prepare snippets that will
1686     actually be stored in Org-mode files.  However, this makes it
1687     hard to configure key bindings without modifying the Org-mode
1688     keymap.  There is now a minor mode active in these buffers,
1689     `org-remember-mode', and its keymap org-remember-mode-map can
1690     be used for key bindings.  By default, this map only contains
1691     the bindings for =C-c C-c= to store the note, and =C-c C-k=
1692     to abort it.  Use `org-remember-mode-hook' to define your own
1693     bindings like
1695 #+begin_src emacs-lisp
1696 (add-hook
1697  'org-remember-mode-hook
1698  (lambda ()
1699    (define-key org-remember-mode-map
1700      "\C-x\C-s" 'org-remember-finalize)))
1701 #+end_src
1703     If you wish, you can also use this to free the =C-c C-c=
1704     binding (by binding this key to nil in the minor mode map),
1705     so that you can use =C-c C-c= again to set tags.
1707     This modification is based on a request by Tim O'Callaghan.
1709 *** Support for ido completion
1711     You can now get the completion interface from /ido.el/ for
1712     many of Org's internal completion commands by turning on the
1713     variable =org-completion-use-ido=. =ido-mode= must also be
1714     active before you can use this.
1716     This change is based upon a request by Samuel Wales.
1718 *** New face for date lines in agenda column view
1720     When column view is active in the agenda, and when you have
1721     summarizing properties, the date lines become normal column
1722     lines and the separation between different days becomes
1723     harder to see.  If this bothers you, you can now customize
1724     the face =org-agenda-column-dateline=.
1726     This is based on a request by George Pearson.
1728 *** Invisible targets become now anchors in headlines.
1730     These anchors can be used to jump to a directly with an HTML
1731     link, just like the =sec-xxx= IDs.  For example, the
1732     following will make a http link
1733     =//domain/path-to-my-file.html#dummy= work:
1735 #+begin_src org
1736 ,# <<dummy>>
1737 ,*** a headline
1738 #+end_src
1740     This is based on a request by Matt Lundin.
1742 *** New contributed file /org-exp-blocks.el/
1744     This new file implements special export behavior of
1745     user-defined blocks.  The currently supported blocks are
1747     - comment :: Comment blocks with author-specific markup
1748     - ditaa ::  conversion of ASCII art into pretty png files
1749          using Stathis Sideris' /ditaa.jar/ program
1750     - dot :: creation of graphs in the /dot/ language
1751     - R :: Sweave type exporting using the R program
1753     For more details and examples, see the file commentary in
1754     /org-exp-blocks.el/.
1756     Kudos to Eric Schulte for this new functionality, after
1757     /org-plot.el/ already his second major contribution.  Thanks
1758     to Stathis for this excellent program, and for allowing us to
1759     bundle it with Org-mode.
1761 *** New contributed file /org-eval-light.el/
1763     This module gives control over execution Emacs Lisp code
1764     blocks included in a file.
1766     Thanks to Eric Schulte also for this file.
1768 *** Link translation
1770     You can now configure Org to understand many links created
1771     with the Emacs Planner package, so you can cut text from
1772     planner pages and paste them into Org-mode files without
1773     having to re-write the links.  Among other things, this means
1774     that the command =org-open-at-point-global= which follows
1775     links not only in Org-mode, but in arbitrary files like
1776     source code files etc, will work also with links created by
1777     planner. The following customization is needed to make all of
1778     this work
1780 #+begin_src emacs-lisp
1781 (setq org-link-translation-function
1782       'org-translate-link-from-planner)
1783 #+end_src
1785    I guess an inverse translator could be written and integrated
1786    into Planner.
1788 *** BBDB links may use regular expressions.
1790     This did work all along, but only now I have documented it.
1792 *** =yank-pop= works again after yanking an outline tree
1794     Samuel Wales had noticed that =org-yank= did mess up this
1795     functionality.  Now you can use =yank-pop= again, the only
1796     restriction is that the so-yanked text will not be
1797     pro/demoted or folded.
1799 *** Link abbreviations can use %h to insert a url-encoded target value
1801     Thanks to Steve Purcell for a patch to this effect.
1803 *** Improved XHTML compliance
1805     Thanks to Sebastian Rose for pushing this.
1807 *** Many bug fixes again.
1808     
1809 * Version 6.12
1810 ** Overview
1812    - A region of entries can now be refiled with a single command
1813    - Fine-tuning the behavior of `org-yank'
1814    - Formulas for clocktables
1815    - Better implementation of footnotes for HTML export
1816    - More languages for HTML export.
1818 ** Details
1820 *** A region of entries can now be refiled with a single command
1821     
1822     With =transient-make-mode= active (=zmacs-regions= under
1823     XEmacs), you can now select a region of entries and refile
1824     them all with a single =C-c C-w= command.
1826     Thanks to Samuel Wales for this useful proposal.
1828 *** Fine-tuning the behavior of =org-yank=
1830     The behavior of Org's yanking command has been further
1831     fine-tuned in order to avoid some of the small annoyances
1832     this command caused.
1834     - Calling =org-yank= with a prefix arg will stop any special
1835       treatment and directly pass through to the normal =yank=
1836       command.  Therefore, you can now force a normal yank with
1837       =C-u C-y=.
1839     - Subtrees will only be folded after a yank if doing so will
1840       now swallow any non-white characters after the yanked text.
1841       This is, I think a really important change to make the
1842       command work more sanely.
1844 *** Formulas for clocktables
1846     You can now add formulas to a clock table, either by hand, or
1847     with a =:formula= parameter.  These formulas can be used to
1848     create additional columns with further analysis of the
1849     measured times.
1851     Thanks to Jurgen Defurne for triggering this addition.
1853 *** Better implementation of footnotes for HTML export
1854     
1855     The footnote export in 6.11 really was not good enough.  Now
1856     it works fine.  If you have customized
1857     =footnote-section-tag=, make sure that your customization is
1858     matched by =footnote-section-tag-regexp=.
1860     Thanks to Sebastian Rose for pushing this change.
1862 *** More languages for HTML export.
1864     More languages are supported during HTML export.  This is
1865     only relevant for the few special words Org inserts, like
1866     "Table of Contents", or "Footnotes".  Also the encoding
1867     issues with this feature seem to be solved now.
1869     Thanks to Sebastian Rose for pushing me to fix the encoding
1870     problems.
1872 * Version 6.11
1874 ** Overview
1876    - Yanking subtree with =C-y= now adjusts the tree level
1877    - State changes can now be shown in the log mode in the agenda
1878    - Footnote in HTML export are now collected at the end of the document
1879    - HTML export now validates again as XHTML
1880    - The clock can now be resumed after exiting and re-starting Emacs
1881    - Clock-related data can be saved and resumed across Emacs sessions
1882    - Following file links can now use C-u C-u to force use of an external app
1883    - Inserting absolute files names now abbreviates links with "~"
1884    - Links to attachment files
1885    - Completed repeated tasks listed briefly in agenda
1886    - Remove buffers created during publishing are removed
1888 ** Details
1890 *** Yanking subtree with =C-y= now adjusts the tree level
1891     When yanking a cut/copied subtree or a series of trees, the
1892     normal yank key =C-y= now adjusts the level of the tree to
1893     make it fit into the current outline position, without losing
1894     its identity, and without swallowing other subtrees.
1896     This uses the command =org-past-subtree=.  An additional
1897     change in that command has been implemented: Normally, this
1898     command picks the right outline level from the surrounding
1899     *visible* headlines, and uses the smaller one.  So if the
1900     cursor is between a level 4 and a level 3 headline, the tree
1901     will be pasted as level 3.  If the cursor is actually *at*
1902     the beginning of a headline, the level of that headline will
1903     be used.  For example, lets say you have a tree like this:
1905 #+begin_src org
1906 ,* Level one
1907 ,** Level two
1908 ,(1)
1909 ,(2)* Level one again
1910 #+end_src
1912     with (1) and (2) indicating possible cursor positions for the
1913     insertion.  When at (1), the tree will be pasted as level 2.
1914     When at (2), it will be pasted as level 1.
1916     If you do not want =C-y= to behave like this, configure the
1917     variable =org-yank-adjusted-subtrees=.
1919     Thanks to Samuel Wales for this idea and a partial implementation.
1921 *** State changes can now be shown in the log mode in the agenda
1923     If you configure the variable =org-agenda-log-mode-items=,
1924     you can now request that all logged state changes be included
1925     in the agenda when log mode is active.  If you find this too
1926     much for normal applications, you can also temporarily
1927     request the inclusion of state changes by pressing =C-u l= in
1928     the agenda.
1930     This was a request by Hsiu-Khuern Tang.
1932     You can also press `C-u C-u l' to get *only* log items in the
1933     agenda, withour any timestamps/deadlines etc.
1935 *** Footnote in HTML export are now collected at the end of the document
1936     Previously, footnotes would be left in the document where
1937     they are defined, now they are all collected and put into a
1938     special =<div>= at the end of the document.
1940     Thanks to Sebastian Rose for this request.
1942 *** HTML export now validates again as XHTML.
1944     Thanks to Sebastian Rose for pushing this cleanup.
1946 *** The clock can now be resumed after exiting and re-starting Emacs
1948     If the option =org-clock-in-resume= is t, and the first clock
1949     line in an entry is unclosed, clocking into that task resumes
1950     the clock from that time.
1952     Thanks to James TD Smith for a patch to this effect.
1954 *** Clock-related data can be saved and resumed across Emacs sessions
1955     
1956     The data saved include the contents of =org-clock-history=,
1957     and the running clock, if there is one.
1958     
1959     To use this, you will need to add to your .emacs
1961 #+begin_src emacs-lisp
1962 (setq org-clock-persist t)
1963 (setq org-clock-in-resume t)
1964 (org-clock-persistence-insinuate)
1965 #+end_src
1967     Thanks to James TD Smith for a patch to this effect.
1969 *** Following file links can now use C-u C-u to force use of an external app.
1971     So far you could only bypass your setup in `org-file-apps'
1972     and force opening a file link in Emacs by using a =C-u= prefix arg
1973     with =C-c C-o=.  Now you can call =C-u C-u C-c C-o= to force
1974     an external application.  Which external application depends
1975     on your system.  On Mac OS X and Windows, =open= is used.  On
1976     a GNU/Linux system, the mailcap settings are used.
1978     This was a proposal by Samuel Wales.
1980 *** Inserting absolute files names now abbreviates links with "~".
1982     Inserting file links with =C-u C-c C-l= was buggy if the
1983     setting of `org-link-file-path-type' was `adaptive' (the
1984     default).  Absolute file paths were not abbreviated relative
1985     to the users home directory.  This bug has been fixed.
1987     Thanks to Matt Lundin for the report.
1989 *** Links to attachment files
1991     Even though one of the purposes of entry attachments was to
1992     reduce the number of links in an entry, one might still want
1993     to have the occasional link to one of those files.  You can
1994     now use link abbreviations to set up a special link type that
1995     points to attachments in the current entry.  Note that such
1996     links will only work from within the same entry that has the
1997     attachment, because the directory path is entry specific.
1998     Here is the setup you need:
2000 #+begin_src emacs-lisp
2001 (setq org-link-abbrev-alist '(("att" . org-attach-expand-link)))
2002 #+end_src
2004     After this, a link like this will work
2006 #+BEGIN_EXAMPLE
2007      [[att:some-attached-file.txt]]
2008 #+END_EXAMPLE
2009     This was a proposal by Lindsay Todd.
2011 *** Completed repeated tasks listed briefly in agenda
2013     When a repeating task, listed in the daily/weekly agenda under
2014     today's date, is completed from the agenda, it is listed as
2015     DONE in the agenda until the next update happens.  After the
2016     next update, the task will have disappeared, of course,
2017     because the new date is no longer today.
2018     
2019 *** Remove buffers created during publishing are removed
2021     Buffers that are created during publishing are now deleted
2022     when the publishing is over.  At least I hope it works like this.
2024 * Version 6.10
2026 ** Overview
2028    - Secondary agenda filtering is becoming a killer feature
2029    - Setting tags has now its own binding, =C-c C-q=
2030    - Todo state changes can trigger tag changes
2031    - C-RET will now always insert a new headline, never an item.
2032    - Customize org-mouse.el feature set to free up mouse events
2033    - New commands for export all the way to PDF (through LaTeX)
2034    - Some bug fixed for LaTeX export, more bugs remain.
2036 ** Details
2038 *** Enhancements to secondary agenda filtering
2040     This is, I believe, becoming a killer feature.  It allows you
2041     to define fewer and more general custom agenda commands, and
2042     then to do the final narrowing to specific tasks you are
2043     looking for very quickly, much faster than calling a new
2044     agenda command.
2046     If you have not tries this yet, you should!
2048 **** You can now refining the current filter by an additional criterion
2049       When filtering an existing agenda view with =/=, you can
2050       now narrow down the existing selection by an additional
2051       condition.  Do do this, use =\= instead of =/= to add the
2052       additional criterion.  You can also press =+= or =-= after
2053       =/= to add a positive or negative condition.  A condition
2054       can be a TAG, or an effort estimate limit, see below.
2056 **** It is now possible to filter for effort estimates
2057      This means to filter the agenda for the value of the Effort
2058      property.  For this you should best set up global allowed
2059      values for effort estimates, with
2061 #+begin_src emacs-lisp
2062 (setq org-global-properties
2063       '(("Effort_ALL" . "0 0:10 0:30 1:00 2:00 3:00 4:00")))
2064 #+end_src
2065       
2066      You may then select effort limits with single keys in the
2067      filter.  It works like this:  After =/= or =\=, first select
2068      the operator which you want to use to compare effort
2069      estimates:
2071      : <   Select entries with effort smaller than or equal to the limit
2072      : >   Select entries with effort larger than or equal to the limit
2073      : =   Select entries with effort equal to the limit
2075      After that, you can press a single digit number which is
2076      used as an index to the allowed effort estimates.
2078      If you do not use digits to fast-select tags, you can even
2079      skip the operator, which will then default to
2080      `org-agenda-filter-effort-default-operator', which is by
2081      default =<=.
2083      Thanks to Manish for the great idea to include fast effort
2084      filtering into the agenda filtering process.
2086 **** The mode line will show the active filter
2087      For example, if there is a filter in place that does select
2088      for HOME tags, against EMAIL tags, and for tasks with an
2089      estimated effort smaller than 30 minutes, the mode-line with
2090      show =+HOME-EMAIL+<0:30=
2092 **** The filter now persists when the agenda view is refreshed
2093      All normal refresh commands, including those that move the
2094      weekly agenda from one week to the next, now keep the
2095      current filter in place.
2097      You need to press =/ /= to turn off the filter.  However,
2098      when you run a new agenda command, for example going from
2099      the weekly agenda to the TODO list, the filter will be
2100      switched off.
2101    
2102 *** Setting tags has now its own binding, =C-c C-q=
2104     You can still use =C-c C-c= on a headline, but the new
2105     binding should be considered as the main binding for this
2106     command.  The reasons for this change are:
2108     - Using =C-c C-c= for tags is really out of line with other
2109       uses of =C-c C-c=.
2111     - I hate it in Remember buffers when I try to set tags and I
2112       cannot, because =C-c C-c= exits the buffer :-(
2114     - =C-c C-q= will also work when the cursor is somewhere down
2115       in the entry, it does not have to be on the headline.
2117 *** Todo state changes can trigger tag changes
2119     The new option =org-todo-state-tags-triggers= can be used to
2120     define automatic changes to tags when a TODO state changes.
2121     For example, the setting
2123     : (setq org-todo-state-tags-triggers
2124     :       '((done ("Today" . nil) ("NEXT" . nil))
2125     :         ("WAITING" ("Today" . t))))    
2127     will make sure that any change to any of the DONE states will
2128     remove tags "Today" and "NEXT", while switching to the
2129     "WAITING" state will trigger the tag "Today" to be added.
2131     I use this mostly to get rid of TODAY and NEXT tags which I
2132     apply to select an entry for execution in the near future,
2133     which I often prefer to specific time scheduling.
2135 *** C-RET will now always insert a new headline, never an item.
2136     The new headline is inserted after the current subtree.
2138     Thanks to Peter Jones for patches to fine-tune this behavior.
2140 *** Customize org-mouse.el feature set
2141     There is a new variable =org-mouse-features= which gives you
2142     some control about what features of org-mouse you want to
2143     use.  Turning off some of the feature will free up the
2144     corresponding mouse events, or will avoid activating special
2145     regions for mouse clicks.  By default I have urned off the
2146     feature to use drag mouse events to move or promote/demote
2147     entries.  You can of course turn them back on if you wish.
2149     This variable may still change in the future, allowing more
2150     fine-grained control.
2152 *** New commands for export to PDF
2154     This is using LaTeX export, and then processes it to PDF
2155     using pdflatex.
2157     : C-c C-e p     process to PDF.
2158     : C-c C-e d     process to PDF, and open the file.
2160 *** LaTeX export
2161     - \usepackage{graphicx} is now part of the standard class
2162       definitions.
2163     - Several bugs fixed, but definitely not all of them :-(
2165 *** New option `org-log-state-notes-insert-after-drawers'
2167     Set this to =t= if you want state change notes to be inserted
2168     after any initial drawers, i.e drawers the immediately follow
2169     the headline and the planning line (the one with
2170     DEADLINE/SCHEDULED/CLOSED information).
2172 * Version 6.09
2173 ** Incompatible
2174 *** =org-file-apps= now uses regular expressions, see [[*%20org%20file%20apps%20now%20uses%20regular%20repressions%20instead%20of%20extensions][below]]
2176 ** Details
2178 *** =org-file-apps= now uses regular repressions instead of extensions
2179     Just like in =auto-mode-alist=, car's in the variable
2180     =org-file-apps= that are strings are now interpreted as
2181     regular expressions that are matched against a file name.  So
2182     instead of "txt", you should now write "\\.txt\\'" to make
2183     sure the matching is done correctly (even though "txt" will
2184     be recognized and still be interpreted as an extension).
2186     There is now a shortcut to get many file types visited by
2187     Emacs.  If org-file-apps contains `(auto-mode . emacs)', then
2188     any files that are matched by `auto-mode-alist' will be
2189     visited in emacs.
2191 *** Changes to the attachment system
2193     - The default method to attach a file is now to copy it
2194       instead of moving it.
2195     - You can modify the default method using the variable
2196       `org-attach-method'.  I believe that most Unix people want
2197       to set it to `ln' to create hard links.
2198     - The keys =c=, =m=, and =l= specifically select =copy=,
2199       =move=, or =link=, respectively, as the attachment method
2200       for a file, overruling  `org-attach-method'.
2201     - To create a new attachment as an Emacs buffer, you have not
2202       now use =n= instead of =c=.
2203     - The file list is now always retrieved from the directory
2204       itself, not from the "Attachments" property.  We still
2205       keep this property by default, but you can turn it off, by
2206       customizing the variable =org-attach-file-list-property=.
2208 * Version 6.08
2210 ** Incompatible changes
2212    - Changes in the structure of IDs, see [[*The%20default%20structure%20of%20IDs%20has%20changed][here]] for details.
2214    - C-c C-a has been redefined, see [[*%20C%20c%20C%20a%20no%20longer%20calls%20show%20all][here]] for details.
2216 ** Details
2218 *** The default structure of IDs has changed
2220     IDs created by Org have changed a bit:
2221     - By default, there is no prefix on the ID.  There used to be
2222       an "Org" prefix, but I now think this is not necessary.
2223     - IDs use only lower-case letters, no upper-case letters
2224       anymore.  The reason for this is that IDs are now also used
2225       as directory names for org-attach, and some systems do not
2226       distinguish upper and lower case in the file system.
2227     - The ID string derived from the current time is now
2228       /reversed/ to become an ID.  This assures that the first
2229       two letters of the ID change fast, so hat it makes sense to
2230       split them off to create subdirectories to balance load.
2231     - You can now set the `org-id-method' to `uuidgen' on systems
2232       which support it.
2234 *** =C-c C-a= no longer calls `show-all'
2236     The reason for this is that =C-c C-a= is now used for the
2237     attachment system.  On the rare occasions that this command
2238     is needed, use =M-x show-all=, or =C-u C-u C-u TAB=.
2240 *** New attachment system
2242     You can now attach files to each node in the outline tree.
2243     This works by creating special directories based on the ID of
2244     an entry, and storing files in these directories.  Org can
2245     keep track of changes to the attachments by automatically
2246     committing changes to git.  See the manual for more
2247     information.
2249     Thanks to John Wiegley who contributed this fantastic new
2250     concept and wrote org-attach.el to implement it.
2252 *** New remember template escapes
2254     : %^{prop}p   to insert a property
2255     : %k          the heading of the item currently being clocked
2256     : %K          a link to the heading of the item currently being clocked
2258     Also, when you exit remember with =C-2 C-c C-c=, the item
2259     will be filed as a child of the item currently being
2260     clocked.  So the idea is, if you are working on something and
2261     think of a new task related to this or a new note to be
2262     added, you can use this to quickly add information to that
2263     task.
2265     Thanks to James TD Smith for a patch to this effect.
2267 *** Clicking with mouse-2 on clock info in mode-line visits the clock.
2268     
2269     Thanks to James TD Smith for a patch to this effect.
2271 *** New file in contrib: lisp/org-checklist.el
2273     This module deals with repeated tasks that have checkbox
2274     lists below them.
2276     Thanks to James TD Smith for this contribution.
2278 *** New in-buffer setting #+STYLE
2280     It can be used to locally set the variable
2281     `org-export-html-style-extra'.  Several such lines are
2282     allowed-, they will all be concatenated.  For an example on
2283     how to use it, see the [[http://orgmode.org/worg/org-tutorials/org-publish-html-tutorial.php][publishing tutorial]].
2285 * Version 6.07
2287 ** Overview
2289    - Filtering existing agenda views with respect to a tag
2290    - Editing fixed-width regions with picture or artist mode
2291    - /org-plot.el/ is now part of Org
2292    - Tags can be used to select the export part of a document
2293    - Prefix interpretation when storing remember notes
2294    - Yanking inserts folded subtrees
2295    - Column view capture tables can have formulas, plotting info
2296    - In column view, date stamps can be changed with S-cursor keys
2297    - The note buffer for clocking out now mentions the task
2298    - Sorting entries alphabetically ignores TODO keyword and priority
2299    - Agenda views can sort entries by TODO state
2300    - New face =org-scheduled= for entries scheduled in the future.
2301    - Remember templates for gnus links can use the :to escape.
2302    - The file specification in a remember template may be a function
2303    - Categories in iCalendar export include local tags
2304    - It is possible to define filters for column view
2305    - Disabling integer increment during table Field copy
2306    - Capturing column view is on `C-c C-x i'
2307    - And tons of bugs fixed.  
2310 ** Incompatible changes
2312 *** Prefix interpretation when storing remember notes has changed
2314     The prefix argument to the `C-c C-c' command that finishes a
2315     remember process is now interpreted differently:
2317     : C-c C-c       Store the note to predefined file and headline
2318     : C-u C-c C-c   Like C-c C-c, but immediately visit the note
2319     :               in its new location.
2320     : C-1 C-c C-c   Select the storage location interactively
2321     : C-0 C-c C-c   Re-use the last used location
2323     This was requested by John Wiegley.
2325 *** Capturing column view is now on `C-c C-x i'
2327     The reason for this change was that `C-c C-x r' is also used
2328     as a tty key replacement.
2330 *** Categories in iCalendar export now include local tags
2332     The locally defined tags are now listed as categories when
2333     exporting to iCalendar format.  Org's traditional file/tree
2334     category is now the last category in this list.  Configure
2335     the variable =org-icalendar-categories= to modify or revert
2336     this behavior.
2338     This was a request by Charles Philip Chan.
2340 ** Details
2342 *** Secondary filtering of agenda views.
2344     You can now easily and interactively filter an existing
2345     agenda view with respect to a tag.  This command is executed
2346     with the =/= key in the agenda.  You will be prompted for a
2347     tag selection key, and all entries that do not contain or
2348     inherit the corresponding tag will be hidden.  With a prefix
2349     argument, the opposite filter is applied: entries that
2350     do have the tag will be hidden.
2352     This operation only /hides/ lines in the agenda buffer, it
2353     does not remove them.  Changing the secondary filtering does
2354     not require a new search and is very fast.
2356     If you press TAB at the tag selection prompt, you will be
2357     switched to a completion interface to select a tag.  This is
2358     useful when you want to select a tag that does not have a
2359     direct access character.
2361     A double =/ /= will restore the original agenda view by
2362     unhiding any hidden lines.
2364     This functionality was John Wiegley's idea.  It is a simpler
2365     implementation of some of the query-editing features proposed
2366     and implemented some time ago by Christopher League (see the
2367     file contrib/lisp/org-interactive-query.el).
2369 *** Editing fixed-width regions with picture or artist mode
2371     The command @<code>C-c '@</code> (that is =C-c= followed by a
2372     single quote) can now also be used to switch to a special
2373     editing mode for fixed-width sections.  The default mode is
2374     =artist-mode= which allows you to create ASCII drawings.
2376     It works like this: Enter the editing mode with
2377     @<code>C-c '@</code>.  An indirect buffer will be created and
2378     narrowed to the fixed-width region.  Edit the drawing, and
2379     press @<code>C-c '@</code> again to exit.
2381     Lines in a fixed-width region should be preceded by a colon
2382     followed by at least one space.  These will be removed during
2383     editing, and then added back when you exit the editing mode.
2385     Using the command in an empty line will create a new
2386     fixed-width region.
2388     This new feature arose from a discussion involving Scott
2389     Otterson, Sebastian Rose and Will Henney.
2391 *** /org-plot.el/ is now part of Org.
2393     You can run it by simple calling org-plot/gnuplot.
2394     Documentation is not yet included with Org, please refer to
2395     http://github.com/eschulte/org-plot/tree/master until we have
2396     moved the docs into Org or Worg.
2398     Thanks to Eric Schulte for this great contribution.
2400 *** Tags can be used to select the export part of a document
2402     You may now use tags to select parts of a document for
2403     inclusion into the export, and to exclude other parts.  This
2404     behavior is governed by two new variables:
2405     =org-export-select-tags= and =org-export-exclude-tags=.
2406     These default to =("export")= and =("noexport")=, but can be
2407     changed, even to include a list of several tags.
2409     Org first checks if any of the /select/ tags is present in
2410     the buffer.  If yes, all trees that do not carry one of these
2411     tags will be excluded.  If a selected tree is a subtree, the
2412     heading hierarchy above it will also be selected for export,
2413     but not the text below those headings.  If none of the select
2414     tags is found anywhere in the buffer, the whole buffer will
2415     be selected for export.  Finally, all subtrees that are
2416     marked by any of the /exclude/ tags will be removed from the
2417     export buffer.
2419     You may set these tags with in-buffer options
2420     =EXPORT_SELECT_TAGS= and =EXPORT_EXCLUDE_TAGS=.
2422     I love this feature.  Thanks to Richard G Riley for coming
2423     up with the idea.
2425 *** Prefix interpretation when storing remember notes
2427     The prefix argument to the `C-c C-c' command that finishes a
2428     remember process is now interpreted differently:
2430     : C-c C-c       Store the note to predefined file and headline
2431     : C-u C-c C-c   Like C-c C-c, but immediately visit the note
2432     :               in its new location.
2433     : C-1 C-c C-c   Select the storage location interactively
2434     : C-0 C-c C-c   Re-use the last used location
2436     This was requested by John Wiegley.
2438 *** Yanking inserts folded subtrees
2440     If the kill is a subtree or a sequence of subtrees, yanking
2441     them with =C-y= will leave all the subtrees in a folded
2442     state.  This basically means, that kill and yank are now
2443     much more useful in moving stuff around in your outline.  If
2444     you do not like this, customize the variable
2445     =org-yank-folded-subtrees=.
2447     Right now, I am only binding =C-y= to this new function,
2448     should I modify all bindings of yank?  Do we need to amend
2449     =yank-pop= as well?
2451     This feature was requested by John Wiegley.
2453 *** Column view capture tables can have formulas, plotting info
2455     If you attach formulas and plotting instructions to a table
2456     capturing column view, these extra lines will now survive an
2457     update of the column view capture, and any formulas will be
2458     re-applied to the captured table.  This works by keeping any
2459     continuous block of comments before and after the actual
2460     table.
2462 *** In column view, date stamps can be changed with S-cursor keys
2464     If a property value is a time stamp, S-left and S-right can
2465     now be used to shift this date around while in column view.
2467     This was a request by Chris Randle.
2469 *** The note buffer for clocking out now mentions the task
2470     
2471     This was a request by Peter Frings.
2473 *** Sorting entries alphabetically ignores TODO keyword and priority
2475     Numerical and alphanumerical sorting now skips any TODO
2476     keyword or priority cookie when constructing the comparison
2477     string.  This was a request by Wanrong Lin.
2479 *** Agenda views can sort entries by TODO state
2481     You can now define a sorting strategy for agenda entries that
2482     does look at the TODO state of the entries.  Sorting by TODO
2483     entry does first separate the non-done from the done states.
2484     Within each class, the entries are sorted not alphabetically,
2485     but in definition order.  So if you have a sequence of TODO
2486     entries defined, the entries will be sorted according to the
2487     position of the keyword in this sequence.
2489     This follows an idea and sample implementation by Christian
2490     Egli.
2492 *** New face =org-scheduled= for entries scheduled in the future.
2494     This was a request by Richard G Riley.
2496 *** Remember templates for gnus links can now use the :to escape.
2498     Thanks to Tommy Lindgren for a patch to this effect.
2499 *** The file specification in a remember template may now be a function
2501     Thanks to Gregory Sullivan for a patch to this effect.
2503 *** Categories in iCalendar export now include local tags
2505     The locally defined tags are now listed as categories when
2506     exporting to iCalendar format.  Org's traditional file/tree
2507     category is now the last category in this list.  Configure
2508     the variable =org-icalendar-categories= to modify or revert
2509     this behavior.
2511     This was a request by Charles Philip Chan.
2513 *** It is now possible to define filters for column view
2515     The filter can modify the value that will be displayed in a
2516     column, for example it can cut out a part of a time stamp.
2517     For more information, look at the variable
2518     =org-columns-modify-value-for-display-function=.
2520 *** Disabling integer increment during table field copy
2522     Prefix arg 0 to S-RET does the trick.
2524     This was a request by Chris Randle.
2527 * Older changes
2529   For older Changes, see [[file:Changes_old.org]]
2532