ChangeLog 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126
  1. 2008-04-06 Carsten Dominik <dominik@science.uva.nl>
  2. * lisp/org-agenda.el (org-agenda-start-with-clockreport-mode): New
  3. option.
  4. * lisp/org-clock.el (org-dblock-write:clocktable): Request the
  5. unrestricted list of files.
  6. (org-get-clocktable): New function.
  7. (org-dblock-write:clocktable): Make sure :tstart and :tend can not
  8. only be strings but also integers (an absolute day number) and
  9. lists (m d y).
  10. 2008-04-04 Carsten Dominik <dominik@science.uva.nl>
  11. * lisp/org-agenda.el (org-agenda-clocktable-mode): New variable.
  12. * doc/org.texi (Agenda commands): Document columns view in the
  13. agenda.
  14. * lisp/org.el (org-agenda-columns): Also try the #+COLUMNS line in
  15. the buffer associated with the entry at point (or with the first
  16. entry in the agenda view).
  17. 2008-04-03 Carsten Dominik <dominik@science.uva.nl>
  18. * lisp/org-clock.el: New file, split off from org.el.
  19. * doc/org.texi (Using the property API): Document the API for
  20. multi-valued properties.
  21. * lisp/org.el (org-modules): Add entry for org-bibtex.el.
  22. (org-completion-fallback-command): Moved into `org-completion'
  23. group.
  24. (org-clock-heading-function): Moved to `org-progress' group.
  25. * lisp/org-bibtex.el (org-create-file-search-in-bibtex): New file,
  26. a combination of the BibTeX that used to be in org.el, and the
  27. org-bibtex.el extension written by Bastien Guerry.
  28. * lisp/org-exp.el (org-export-html-handle-js-options): New function.
  29. (org-export-html-infojs-setup): New option.
  30. (org-export-as-html): Call `org-export-html-handle-js-options'.
  31. * lisp/org.el (org-auto-repeat-maybe): Make sure that a note can
  32. be enforces if `org-log-repeat' is `note'.
  33. 2008-04-01 Carsten Dominik <dominik@science.uva.nl>
  34. * lisp/org.el (org-modules): Allow additional symbols for external
  35. packages.
  36. (org-ctrl-c-ctrl-c): Allow for `org-clock-overlays' to be
  37. undefined.
  38. 2008-03-31 Carsten Dominik <dominik@science.uva.nl>
  39. * lisp/org.el (org-clock-goto): Hide drawers after showing an
  40. entry with `org-clock-goto.'
  41. (org-shiftup, org-shiftdown, org-shiftright, org-shiftleft): Try
  42. also a clocktable block shift.
  43. (org-clocktable-try-shift): New function.
  44. 2008-03-31 Bastien Guerry <bzg@altern.org>
  45. * lisp/org-publish.el (org-publish-get-base-files-1): Bug fix: get
  46. the proper list of files when recursing thru a directory.
  47. (org-publish-get-base-files): Use the :exclude property to skip
  48. both files and directories.
  49. (org-publish-project): Removed third arg of defalias.
  50. 2008-03-30 Carsten Dominik <dominik@science.uva.nl>
  51. * lisp/org.el (org-columns-hscoll-title): New function.
  52. (org-columns-previous-hscroll): New variable.
  53. (org-columns-full-header-line-format): New variable.
  54. (org-columns-display-here-title, org-columns-remove-overlays):
  55. Install `org-columns-hscoll-title' in post-command-hook.
  56. 2008-03-28 Carsten Dominik <dominik@science.uva.nl>
  57. * lisp/org.el (org-auto-repeat-maybe): Make sure that repeating
  58. dates are pushed into the future, and that the shift is at least
  59. one interval, never 0.
  60. * lisp/org-agenda.el (org-agenda-deadline-leaders): Allow a
  61. function value for the deadline leader.
  62. (org-agenda-get-deadlines): Deal with new function value.
  63. * lisp/org.el (org-update-checkbox-count): Fix bug with checkbox
  64. counting.
  65. (org-add-note): New command.
  66. (org-add-log-setup): Renamed from `org-add-log-maybe'.
  67. (org-log-note-headings): New entry for plain notes (i.e. notes not
  68. related to state changes or clocking).
  69. 2008-03-27 Carsten Dominik <dominik@science.uva.nl>
  70. * org-agenda.el: New file, split out from org.el.
  71. * org-wl.el (org-wl-open): Initialize `wl' when not running yet.
  72. 2008-03-25 Carsten Dominik <dominik@science.uva.nl>
  73. * org-remember.el: New file, split out from org.el.
  74. (org-remember): Call `org-do-remember' as an intermediate to
  75. `remember'.
  76. (org-ignore-remember): New option.
  77. (org-remember): Fix bug with re-applying template.
  78. * org.el (org-get-org-file): Check for availability of
  79. `remember-data-file'.
  80. * org-exp.el: Add autoload to all entry points.
  81. (org-skip-comments): Function removed.
  82. 2008-03-24 Carsten Dominik <dominik@science.uva.nl>
  83. * org-exp.el: New file, split out from org.el.
  84. * org-table.el: New file, split out from org.el.
  85. (org-table-current-column): No longer interactive.
  86. 2008-03-22 Carsten Dominik <dominik@science.uva.nl>
  87. * org-compat.el: New file, split out from org.el.
  88. * org-macs.el: New file, split out from org.el.
  89. 2008-03-21 Carsten Dominik <dominik@science.uva.nl>
  90. * org.el (org-cached-entry-get): Allow a regexp value for
  91. `org-use-property-inheritance'.
  92. (org-use-property-inheritance): Allow regexp value. Fix bug in
  93. customization type.
  94. (org-use-tag-inheritance): Allow a list and a regexp value for
  95. this variable.
  96. (org-scan-tags, org-get-tags-at): Implement selective tag
  97. inheritance.
  98. (org-entry-get): Respect value `selective' for the INHERIT
  99. argument.
  100. (org-tag-inherit-p, org-property-inherit-p): New functions.
  101. (org-agenda-format-date-aligned): Allow 10 characters for
  102. weekday, to acomodate German locale.
  103. * org.texi (Property inheritance, Tag inheritance): Document
  104. selective inheritance.
  105. 2008-03-20 Carsten Dominik <dominik@science.uva.nl>
  106. * org.el (org-agenda-compute-time-span): Make argument N optional.
  107. (org-agenda-format-date-aligned): Require `cal-iso'.
  108. (org-agenda-list): Include week into into agenda heading, don't
  109. list it at each date (only on Mondays).
  110. (org-read-date-analyze): Define local variable `iso-date'.
  111. (org-agenda-format-date-aligned): Remove dependency on
  112. `calendar-time-from-absolute'.
  113. (org-remember-apply-template, org-go-to-remember-target):
  114. Interpret filenames relative to `org-directory'.
  115. 2008-03-19 Bastien Guerry <bzg@altern.org>
  116. * org.el (org-complete): Silently fail when trying to complete
  117. keywords that don't have a default value.
  118. (org-get-current-options): Added a #+DATE: option.
  119. (org-additional-option-like-keywords): Removed "DATE:" from the
  120. list of additional keywords.
  121. (org-export-as-html): Removed (current-time) as unnecessary second
  122. argument of `format-time-string'.
  123. 2008-03-18 Carsten Dominik <dominik@science.uva.nl>
  124. * org.el (org-clock-find-position): Handle special case at end of
  125. buffer.
  126. (org-agenda-day-view): New argument DAY-OF-YEAR, pass it on to
  127. `org-agenda-change-time-span'.
  128. (org-agenda-week-view): New argument ISO-WEEK, pass it on to
  129. `org-agenda-change-time-span'.
  130. (org-agenda-month-view): New argument MONTH, pass it on to
  131. `org-agenda-change-time-span'.
  132. (org-agenda-year-view): New argument YEAR, pass it on to
  133. `org-agenda-change-time-span'.
  134. (org-agenda-change-time-span): New optional argument N, pass it on
  135. to `org-agenda-compute-time-span'.
  136. (org-agenda-compute-time-span): New argument N, interpret it by
  137. changing the starting day.
  138. (org-small-year-to-year): New function.
  139. 2008-03-17 Carsten Dominik <dominik@science.uva.nl>
  140. * org.el (org-scheduled-past-days): Respect
  141. `org-scheduled-past-days'.
  142. 2008-03-14 Bastien Guerry <bzg@altern.org>
  143. * org-publish.el (org-publish-get-base-files-1): New function.
  144. (org-publish-get-base-files): Use it.
  145. (org-publish-temp-files): New variable.
  146. Don't require 'dired-aux anymore.
  147. 2008-03-15 Carsten Dominik <dominik@science.uva.nl>
  148. * org-info.el: New file.
  149. (org-info-follow-link): Renamed from `org-follow-info-link'.
  150. * org-gnus.el: New file.
  151. (org-gnus-follow-link): Renamed from `org-flow-gnus-link'.
  152. * org-mhe.el: New file.
  153. (org-mhe-follow-link): Renamed from `org-follow-mhe-link'
  154. * org-wl.el: New file.
  155. (org-wl-follow-link): Renamed from `org-follow-wl-link'.
  156. 2008-03-14 Carsten Dominik <dominik@science.uva.nl>
  157. * org-vm.el: New file.
  158. (org-vm-follow-link): Renamed from `org-follow-vm-link'.
  159. * org-bbdb.el: New file.
  160. * org-rmail.el: New file.
  161. (org-rmail-follow-link): Renamed from `org-follow-rmail-link'.
  162. * org.el (org-export-as-html): Use `org-link-protocols' to
  163. retrieve the export form of the link.
  164. (org-add-link-type): Final parameter renamed from PUBLISH. Better
  165. documentation of how it is to be used. Avoid double entries for
  166. the same link type.
  167. (org-add-link-props): New function.
  168. 2008-03-14 Glenn Morris <rmg@gnu.org>
  169. * org-publish.el (declare-function): Add compatibility stub.
  170. (org-publish-delete-dups): Declare as function.
  171. * org-mac-message.el Fix commentary.
  172. * org-irc.el (top-level): CL not required when compiling.
  173. (org-irc-visit-erc): Replace runtime CL functions.
  174. 2008-03-14 Carsten Dominik <dominik@science.uva.nl>
  175. * org.el (org-modules-loaded): New variable.
  176. (org-load-modules-maybe, org-set-modules): New function.
  177. (org-modules): New option.
  178. (org-mode, org-cycle, orgstruct-mode, org-run-like-in-org-mode)
  179. (orgtbl-mode, org-store-link, org-insert-link-global)
  180. (org-open-at-point): Call `org-load-modules-maybe'.
  181. 2008-03-13 Carsten Dominik <dominik@science.uva.nl>
  182. * org.el (org-search-view): Add more text properties.
  183. (org-agenda-schedule, org-agenda-deadline): Allow also in
  184. search-type agendas.
  185. (org-search-view): Order of arguments has been changed.
  186. Interpret prefix-arg as TODO-ONLY.
  187. (org-agenda, org-run-agenda-series, org-agenda-manipulate-query):
  188. Take new argument order of `org-search-view' into account.
  189. (org-todo-only): New variable.
  190. (org-search-syntax-table): New variable and function.
  191. (org-search-view): Do the search with the special syntax table.
  192. 2008-03-13 Phil Jackson <phil@shellarchive.co.uk>
  193. * org-irc.el: New function to ensure port number is always
  194. numeric. Reports came in of it being a string /or/ a number.
  195. 2008-03-13 Carsten Dominik <dominik@science.uva.nl>
  196. * org.el (org-html-level-start): Always have id's in HTML
  197. headlines, even if there is no TOC to jump from. Put extra <divs>
  198. in. One around the toc, one around the text between a headline
  199. and its first subsection. Insert ids into div's that surround
  200. whole sections including subsections.
  201. (define-obsolete-function-alias): Make work with XEmacs.
  202. (org-add-planning-info): Use old date as default when modifying an
  203. existing deadline or scheduled item.
  204. 2008-03-11 Bastien Guerry <bzg@altern.org>
  205. * org-publish.el (org-publish-initial-buffer): New variable.
  206. (org-publish-org-to, org-publish): Use it.
  207. =====================================================================
  208. In Emacs CVS as 5.23
  209. 2008-03-10 Bastien Guerry <bzg@altern.org>
  210. * org-publish.el (org-publish-expand-components): Remove null
  211. projects from the list of components.
  212. (org-publish-attachment): Bugfix: handle the mandatory argument
  213. pub-dir. Removed unused retrieval of the :publishing-directory
  214. property.
  215. (org-publish-file): Bugfix: when using a relative directory as
  216. the publishing directory, convert it to a directory filename.
  217. (org-publish-project): New alias.
  218. 2008-03-10 Phil Jackson <phil@shellarchive.co.uk>
  219. * org-irc.el (org-irc-get-erc-link): port now converted to a
  220. string when building the link.
  221. 2008-03-10 Carsten Dominik <dominik@science.uva.nl>
  222. * org-publish.el (org-publish-get-files): Protect against empty p.
  223. * org.el (org-ctrl-c-star): Implement a missing branch in the
  224. decision tree.
  225. 2008-03-10 Bastien Guerry <bzg@altern.org>
  226. * org-publish.el (org-publish-file): Send an error when file is
  227. not part of any project.
  228. (org-publish-file): Offer to refresh the list of files in known
  229. project when the current file is not part of any project.
  230. * org.el (org-select-remember-template): Cleaned the code.
  231. * org-publish.el (org-publish-before-export-hook)
  232. (org-publish-after-export-hook): New hooks.
  233. (org-publish-org-to): Use new hooks and kill buffers.
  234. (org-publish-file): Remove the code for killing buffers.
  235. (org-publish-initialize-files-alist): Use interactive.
  236. * org.el (org-prepare-dblock): Added the extra :content parameter.
  237. 2008-03-09 Carsten Dominik <dominik@science.uva.nl>
  238. * org.texi (Exporting Agenda Views): Document agenda export to
  239. iCalendar.
  240. * org.el (org-write-agenda): New output type ".ics" files.
  241. (org-write-agenda): Call `org-icalendar-verify-function', both for
  242. time stamps and for TODO entries.
  243. (org-agenda-collect-markers, org-create-marker-find-array)
  244. (org-check-agenda-marker-table): New functions.
  245. (org-agenda-marker-table): New variable.
  246. 2008-03-08 Glenn Morris <rmg@gnu.org>
  247. (list-diary-entries-hook): Declare for compiler.
  248. (org-get-entries-from-diary): Require diary-lib.
  249. 2008-03-07 Glenn Morris <rmg@gnu.org>
  250. (org-agenda-sunrise-sunset): Require solar.
  251. (calendar-longitude, calendar-latitude, calendar-location-name):
  252. Declare for compiler.
  253. 2008-03-07 Bastien Guerry <bzg@altern.org>
  254. * org-export-latex.el (org-export-as-latex): Revert the change
  255. that killed the LaTeX buffer.
  256. * org-publish.el (org-publish-file): If the publishing function
  257. creates a new buffer, kill it after publishing.
  258. 2008-03-07 Carsten Dominik <dominik@science.uva.nl>
  259. * org.el (org-export-as-html): Revert the change that killed the
  260. html buffer. Side effects first need to be studied carefully.
  261. (org-get-tags-at): Fix the structure of the condition-case statement.
  262. 2008-03-07 Carsten Dominik <dominik@science.uva.nl>
  263. * org.el (org-ts-regexp0, org-repeat-re, org-display-custom-time)
  264. (org-timestamp-change): Fix regulear expressions to swallow the
  265. extra character for repeat-shift control.
  266. (org-auto-repeat-maybe): Implement the new repeater mechanisms.
  267. 2008-03-06 Bastien Guerry <bzg@altern.org>
  268. * org.el (org-get-legal-level): Aliased to `org-get-valid-level'.
  269. (org-dblock-write:clocktable): Added a :link parameter, linking
  270. headlines to their location in the Org agenda files.
  271. (org-get-tags-at): Bugfix: prevent `org-back-to-heading' from
  272. throwing an error when getting tags before headlines.
  273. 2008-03-06 Carsten Dominik <dominik@science.uva.nl>
  274. * org.el (org-timestamp-change, org-modify-ts-extra)
  275. (org-ts-regexp1): Fix timestamp editing.
  276. 2008-03-06 Carsten Dominik <dominik@science.uva.nl>
  277. * org.el (org-agenda-custom-commands-local-options): New constant.
  278. (org-agenda-custom-commands): Use
  279. `org-agenda-custom-commands-local-options' to improve customize
  280. type.
  281. 2008-03-05 Carsten Dominik <dominik@science.uva.nl>
  282. * org.el "htmlize": Removed hack to fix face problem with
  283. htmlize, it no longer seem necessary.
  284. 2008-03-05 Bastien Guerry <bzg@altern.org>
  285. * org.el (org-follow-link-hook): New hook.
  286. (org-agenda-custom-commands): Added "Component" as a tag for each
  287. item in a command serie.
  288. (org-open-at-point): Run `org-follow-link-hook'.
  289. 2008-03-04 Bastien Guerry <bzg@altern.org>
  290. * org.el (org-agenda-schedule): Bugfix: don't display marker type
  291. when it is `nil'.
  292. 2008-02-19 Phil Jackson <phil@shellarchive.co.uk>
  293. * org.el (org-store-link): org-irc required.
  294. * org-irc.el (org-irc-get-erc-link): Fixed to allow the extraction
  295. of a nick from both CVS and stable versions of erc.
  296. 2008-02-19 Carsten Dominik <dominik@science.uva.nl>
  297. * org.el (org-set-regexps-and-options): Parse the new logging
  298. options.
  299. (org-extract-log-state-settings): New function.
  300. (org-todo): Handle the new ways of recording state change stuff.
  301. (org-local-logging): New function.
  302. 2008-02-18 Carsten Dominik <dominik@science.uva.nl>
  303. * org.el (org-columns-open-link): Fixed bug with opening link in
  304. column view.
  305. * org-mac-message.el (org-mac-message-get-link): New function for
  306. non-interactive use.
  307. 2008-02-17 Carsten Dominik <dominik@science.uva.nl>
  308. * org.el (org-local-logging): New function
  309. 2008-02-15 Carsten Dominik <dominik@science.uva.nl>
  310. * org.el (org-todo): Make sure that LOGGING properties are
  311. honoured.
  312. 2008-02-14 Carsten Dominik <dominik@science.uva.nl>
  313. * org.el:
  314. (org-todo-keywords): Improve docstring.
  315. (org-startup-options): Cleanup startup options.
  316. (org-set-regexps-and-options): Process the "!" markers.
  317. (org-todo): Respect the new logging stuff.
  318. (org-log-note-how): New variable.
  319. (org-add-log-maybe): New parameter HOW that defines how logging
  320. should be done and also overrides PURPOSE. Add a docstring.
  321. (org-add-log-note): Check if we really need to ask for a note.
  322. (org-get-current-options): Digest the new keyword.
  323. * org.texi (Progress logging): Document the new progress logging
  324. stuff.
  325. 2008-02-13 Carsten Dominik <dominik@science.uva.nl>
  326. * org.el (org-agenda-reset-markers): Renamed from
  327. `org-agenda-maybe-reset-markers'. FORCE argument removed.
  328. (org-diary, org-agenda-quit, org-prepare-agenda): Call the renamed
  329. function, without force argument.
  330. (org-buffer-property-keys): Bind local variables s and p.
  331. 2008-02-12 Carsten Dominik <dominik@science.uva.nl>
  332. * org.el (org-make-tags-matcher): Allow "" to match an empty or
  333. non-existent property value.
  334. (org-export-as-html): Join unsorted lists when they directly
  335. follow each other. Such lists may be created by headlines that
  336. are converted to lists.
  337. (org-nofm-to-completion): New function.
  338. 2008-02-12 Bastien Guerry <bzg@altern.org>
  339. * org.el (org-export-as-html): Use :html-extension instead of
  340. org-export-html-extension.
  341. (org-store-link): Support for links from `rmail-summary-mode'.
  342. 2008-02-11 Carsten Dominik <dominik@science.uva.nl>
  343. * org.el (org-columns-new, org-complete, org-set-property): Set
  344. the `include-columns' argument in the call to
  345. `org-buffer-property-keys'.
  346. (org-buffer-property-keys): New argument `include-columns', to
  347. include properties expected by any of the COLUMS formats in the
  348. current buffer.
  349. 2008-02-09 Carsten Dominik <dominik@science.uva.nl>
  350. * org.el (org-cleaned-string-for-export): Get rid of drawers
  351. first, so that they will be removed also in the text before the
  352. first headline.
  353. 2008-02-08 Carsten Dominik <dominik@science.uva.nl>
  354. * org.el (org-clock-report): Show the clocktable when found.
  355. (org-refile): Fix positioning bug when `org-reverse-note-order' is
  356. nil.
  357. 2008-02-07 Carsten Dominik <dominik@science.uva.nl>
  358. * org.el (org-version): With prefix argument, insert `org-version'
  359. at point.
  360. (org-agenda-goto): Recenter the window after finding the target
  361. location, to make sure the correct position will be displayed.
  362. (org-agenda-get-deadlines): Don't scale priority with the warning
  363. period.
  364. (org-insert-heading): Don't break line in the middle of the line.
  365. 2008-02-06 Carsten Dominik <dominik@science.uva.nl>
  366. * org.el (org-agenda-get-deadlines): Allow
  367. `org-deadline-warning-days' to be 0.
  368. 2008-02-05 Carsten Dominik <dominik@science.uva.nl>
  369. * org-publish.el (org-publish-timestamp-filename): Protect ":" in
  370. file name path under windows.
  371. * org.el (org-update-checkbox-count): Revamped to deal with
  372. hierarchical beckboxes. This was a patch from Miguel
  373. A. Figueroa-Villanueva.
  374. 2008-02-04 Carsten Dominik <dominik@science.uva.nl>
  375. * org-mac-message.el: New file.
  376. * org.el (org-remove-timestamp-with-keyword): New function.
  377. (org-schedule, org-deadline): Use
  378. `org-remove-timestamp-with-keyword' to make sure all such time
  379. stamps are removed.
  380. (org-mode): Support for `align'.
  381. 2008-02-03 Carsten Dominik <dominik@science.uva.nl>
  382. * org.el (org-agenda-get-deadlines): Make sure priorities increase
  383. as the due date approaches and is passed.
  384. (org-remember-apply-template): Fixed problem with tags that
  385. contain "_" or "@".
  386. 2008-02-01 Carsten Dominik <dominik@science.uva.nl>
  387. * org.el (org-make-link-regexps): Improve the regular expression
  388. for plain links.
  389. 2008-01-31 Carsten Dominik <dominik@science.uva.nl>
  390. * org.el (org-agenda-get-closed): List each clocking entry.
  391. (org-set-tags): Only tabify before tags if indent-tabs-mode is t.
  392. (org-special-ctrl-k): New option.
  393. (org-kill-line): New function.
  394. 2008-01-26 Carsten Dominik <dominik@science.uva.nl>
  395. * org.el (org-archive-all-done): Fixed incorrect number of stars
  396. in regexp.
  397. 2008-01-25 Carsten Dominik <dominik@science.uva.nl>
  398. * org.el (org-refile-get-location): New function.
  399. (org-refile-goto-last-stored): New function.
  400. (org-global-tags-completion-table): Add the value of org-tag-alist
  401. in each buffer, to make sure that also unused tags will be
  402. available for completion.
  403. 2008-01-24 Carsten Dominik <dominik@science.uva.nl>
  404. * org.el (org-columns-edit-value)
  405. (org-columns-next-allowed-value): Only update if not in agenda.
  406. 2008-01-22 Carsten Dominik <dominik@science.uva.nl>
  407. * org.el (org-clocktable-steps): New function.
  408. (org-dblock-write:clocktable): Call `org-clocktable-steps'.
  409. (org-archive-subtree): Add the outline tree context as a
  410. property.
  411. (org-closest-date): New optional argument `prefer'.
  412. (org-goto-auto-isearch): New option.
  413. (org-goto-map, org-get-location): Implement auto-isearch.
  414. (org-goto-local-auto-isearch-map): New variable.
  415. (org-goto-local-search-forward-headings)
  416. (org-goto-local-auto-isearch): New functions
  417. -----------------------------------------------------------------------
  418. Installed as 5.19a
  419. 2008-01-18 Carsten Dominik <dominik@science.uva.nl>
  420. * org.el (org-entry-properties): Include the CLOCKSUM special
  421. property.
  422. (org-columns-edit-value): Do not allow to edit the special
  423. CLOCKSUM property.
  424. (org-flag-drawer): Use the original value of
  425. `outline-regexp'.
  426. (org-remember-handler): Add invisible-ok flag to call to
  427. `org-end-of-subtree'
  428. (org-agenda-highlight-todo): Respect
  429. `org-agenda-todo-keyword-format'.
  430. (org-agenda-todo-keyword-format): New option.
  431. (org-infile-export-plist): No restriction while searching
  432. for options.
  433. (org-remember-handler): Remove comments at the end of the buffer.
  434. (org-remember-use-refile-when-interactive): New option.
  435. (org-table-sort-lines): Make sure sorting works on link
  436. descritions only, and ignores the link.
  437. (org-sort-entries-or-items): Make sure the end of the
  438. subtree is included.
  439. (org-refile-use-outline-path): New allowed values `file' and
  440. `full-file-path'.
  441. (org-get-refile-targets): Respect new values for
  442. `org-refile-use-outline-path'.
  443. (org-agenda-get-restriction-and-command): DEL goes back to initial
  444. list.
  445. (org-export-as-xoxo): Restore point when done.
  446. (org-open-file): Allow multiple %s in command.
  447. (org-clock-in-switch-to-state): New option.
  448. (org-first-list-item-p): New function.
  449. (org-last-remember-storage-locations): New variable.
  450. (org-get-refile-targets): Interpret the new maxlevel setting.
  451. (org-refile-targets): New option `:maxlevel'.
  452. (org-copy-subtree): Include empty lines before but not
  453. after subtree.
  454. (org-back-over-empty-lines, org-skip-whitespace): New functions.
  455. (org-move-item-down, org-move-item-up): Include empty lines before
  456. but not after item.
  457. (org-first-sibling-p): New function.
  458. (org-remember-apply-template): Defaults, completions and
  459. history for template prompts. Also, interpret new `%!' escape.
  460. (org-context-choices): New constant.
  461. (org-bound-and-true-p): New macro.
  462. (org-imenu-depth): New option.
  463. (org-imenu-markers): New variable.
  464. (org-imenu-new-marker, org-imenu-get-tree)
  465. (org-speedbar-set-agenda-restriction): New functions.
  466. (org-agenda-set-restriction-lock)
  467. (org-agenda-remove-restriction-lock, org-agenda-maybe-redo): New
  468. functions.
  469. (org-agenda-restriction-lock): New face.
  470. (org-agenda-restriction-lock-overlay)
  471. (org-speedbar-restriction-lock-overlay): New variables.
  472. (org-open-at-point): Removed obsolete way to do redirection in
  473. shell links.
  474. (org-imenu-and-speedbar): New customization group.
  475. (org-entry-properties): Return keyword-less time strings.
  476. (org-clock-heading-function): New option.
  477. (org-clock-in): Use `org-clock-heading-function'.
  478. (org-calendar-holiday): Try to use
  479. `calendar-check-holidays' instead of the obsolete
  480. `check-calendar-holidays'.
  481. (org-export-html-special-string-regexps): New constant.
  482. (org-massive-special-regexp): New variable.
  483. (org-compute-latex-and-specials-regexp)
  484. (org-do-latex-and-special-faces): New functions.
  485. (org-latex-and-export-specials): New face.
  486. (org-highlight-latex-fragments-and-specials): New option.
  487. (org-link-escape-chars): Use characters instead of strings.
  488. (org-link-escape-chars-browser, org-link-escape)
  489. (org-link-unescape): Use characters instead of strings.
  490. (org-export-html-convert-sub-super, org-html-do-expand): Check for
  491. protected text.
  492. (org-emphasis-alist): Additional `verbatim' flag.
  493. (org-set-emph-re): Handle the verbatim flag and compute
  494. `org-verbatim-re'.
  495. (org-cleaned-string-for-export): Protect verbatim elements.
  496. (org-verbatim-re): New variable.
  497. (org-hide-emphasis-markers): New option.
  498. (org-additional-option-like-keywords): Add new keywords.
  499. (org-get-entry): Renamed from `org-get-cleaned-entry'.
  500. (org-icalendar-cleanup-string): New function for quoting icalendar
  501. text.
  502. (org-agenda-skip-scheduled-if-done): New option.
  503. (org-agenda-get-scheduled, org-agenda-get-blocks): Use
  504. `org-agenda-skip-scheduled-if-done'.
  505. (org-prepare-agenda-buffers): Allow buffers as arguments.
  506. (org-entry-properties): Add CATEGORY as a special property.
  507. (org-use-property-inheritance): Allow a list of properties as a
  508. value.
  509. (org-eval-in-calendar): No longer update the prompt.
  510. (org-read-date-popup-calendar): Renamed from
  511. `org-popup-calendar-for-date-prompt'.
  512. (org-read-date-display-live): New variable.
  513. (org-read-date-display): New function.
  514. (org-read-date-analyze): New function.
  515. (org-remember-apply-template): Define `remember-finalize' if it is
  516. not yet defined.
  517. (org-remember-insinuate): New function.
  518. (org-read-date-prefer-future): New option.
  519. (org-read-date): Respect the setting of
  520. `org-read-date-prefer-future'. Use `org-read-date-analyze'.
  521. (org-set-font-lock-defaults): Use `org-archive-tag' instead of a
  522. hardcoded string.
  523. (org-remember-apply-template): Use `remember-finalize' instead of
  524. `remember-buffer'.
  525. (org-columns-compute, org-column-number-to-string)
  526. (org-columns-uncompile-format, org-columns-compile-format)
  527. (org-columns-compile-format): Handle printf format specifier.
  528. (org-columns-new, org-column-number-to-string)
  529. (org-columns-uncompile-format, org-columns-compile-format):
  530. Support for new currency summary type.
  531. (org-tree-to-indirect-buffer): Do not kill old buffer when
  532. `org-indirect-buffer-display' is `new-frame'.
  533. (org-indirect-buffer-display): Document that `new-frame' leads to
  534. indiret buffer proliferation.
  535. (org-agenda-list): Use `org-extend-today-until'.
  536. (org-extend-today-until): New option.
  537. (org-format-org-table-html): Use lower-case for <col> tag.
  538. (org-agenda-execute): New command.
  539. (org-agenda-mode-map): Keybindings of "g" "G", "e" modified.
  540. (org-select-remember-template): New function.
  541. (org-remember-apply-template): Use `org-select-remember-template'.
  542. (org-go-to-remember-target): New function.
  543. * org-publish.el (org-publish-current-project): Fix bug with
  544. forcing publication.
  545. * org.texi (Property inheritance): New section
  546. (Conventions): New section.
  547. (Structure editing): Document C-RET, the prefix arg to the cut/cpy
  548. commands, and the new bindings for refiling.
  549. (Sparse trees): Document the new special command for sparse trees.
  550. (References): Be more clear about the counting of hilines.
  551. (Handling links): Document M-p/n for accessing links.
  552. (Fast access to TODO states): New section.
  553. (Per file keywords): New section.
  554. (Property inheritance): New section.
  555. (Column attributes): New summary types.
  556. (Capturing Column View): New section.
  557. (The date/time prompt): Cover the new features in the date/time
  558. prompt. Compactify the table of keys for the calendar remote
  559. control.
  560. (Clocking work time): Document the new :scope parameter.
  561. (Remember): Promoted to chapter.
  562. (Quoted examples): New section.
  563. (Enhancing text): New verbatim environments.
  564. 2007-11-04 Bastien Guerry <Bastien.Guerry@ens.fr>
  565. * org.el (org-export-with-special-strings): New option.
  566. (org-export-html-convert-special-strings): New function.
  567. (org-html-do-expand): `org-export-html-convert-special-strings'
  568. added to the list of conversion.
  569. (org-infile-export-plist, org-get-current-options): Added support
  570. for "-" in the #+OPTION line to let user switch on/off special
  571. strings conversion.
  572. (org-export-plist-vars): New :html-table-tag property.
  573. (org-export-as-html, org-format-org-table-html)
  574. (org-format-table-table-html) Use the :html-table-tag property
  575. instead of the `org-export-html-table-tag' global value.
  576. (org-additional-option-like-keywords): Added "TBLFM".
  577. 2007-11-27 Bastien Guerry <bzg@altern.org>
  578. * org-export-latex.el (org-export-latex-cleaned-string): Fixed.
  579. (org-export-latex-special-chars): Convert "..." in \ldots and skip
  580. tables
  581. (org-export-latex-fontify-headline): Changed parameter name
  582. (org-export-as-latex): Handle export of subtrees
  583. (org-export-latex-make-header): New argument TITLE
  584. (org-export-latex-content): New argument EXCLUDE-LIST
  585. (org-list-parse-list): New name for org-export-latex-parse-list
  586. (org-export-latex-make-header): New name for
  587. org-export-latex-make-preamble
  588. (org-list-to-generic): New name of org-export-list-to-generic
  589. (org-list-to-latex): New name of org-export-list-to-latex
  590. (org-list-item-begin, org-list-end, org-list-insert-radio-list)
  591. (org-list-send-list, org-list-to-texinfo)
  592. (org-list-to-html): New functions
  593. (org-export-latex-tables-column-borders)
  594. (org-export-latex-default-class, org-export-latex-classes)
  595. (org-export-latex-classes-sectioning)
  596. (org-list-radio-list-templates): New options
  597. (org-export-latex-header): New variable
  598. (org-latex-entities): New constant
  599. (org-export-latex-default-sectioning, org-export-latex-preamble)
  600. (org-export-latex-prepare-text-option)
  601. (org-export-latex-get-sectioning): Removed
  602. -----------------------------------------------------------------------
  603. Installed as 5.13g
  604. 2007-10-25 Carsten Dominik <dominik@science.uva.nl>
  605. * org.el (org-remember-handler): Make sure the amount of
  606. whitespace after the note is right.
  607. 2007-10-24 Carsten Dominik <dominik@science.uva.nl>
  608. * org-publish.el (org-publish-get-plist-from-filename): Use `mapc'
  609. instead of `mapcar'.
  610. * org.el (org-agenda-get-restriction-and-command): Use `mapc'
  611. instead of `mapcar'.
  612. (org-agenda-list): Numeric prefix argument can specify the number
  613. of days.
  614. (remember-register, remember-buffer): Prevent byte compiler from
  615. complaining.
  616. * org.el (org-agenda-get-restriction-and-command): Fix window
  617. size.
  618. (org-read-date-get-relative): Require [-+] at the beginning.
  619. (org-open-link-from-string): New function.
  620. (org-columns-open-link): New commands.
  621. (org-scan-tags): Handle indirect buffers.
  622. (org-read-date-get-relative): New function.
  623. (org-agenda-file-regexp): New variable.
  624. (org-agenda-files): Allow directories in the variable.
  625. (org-agenda-get-restriction-and-command): New function.
  626. (org-agenda): Use `org-agenda-get-restriction-and-command'.
  627. (org-todo-blocker-hook, org-todo-trigger-hook): New hook.
  628. (org-entry-is-todo-p, org-entry-is-done-p, org-get-todo-state):
  629. New functions.
  630. (org-entry-add-to-multivalued-property)
  631. (org-entry-remove-from-multivalued-property)
  632. (org-entry-member-in-multivalued-property): New functions.
  633. (org-remember-apply-template): Catch C-g and make sure window
  634. configuration is restored.
  635. (org-agenda-open-link): Make is work with several links in the
  636. line.
  637. (org-drawers, org-set-regexps-and-options)
  638. (org-get-current-options): Added support for a DRAWERS in-buffer
  639. option.
  640. (org-agenda-window-frame-fractions): New option.
  641. (org-fit-agenda-window): Use `org-agenda-window-frame-fractions'.
  642. (org-columns-cleanup-item, org-find-entry-with-id)
  643. (org-insert-columns-dblock, org-listtable-to-string)
  644. (org-dblock-write:columnview, org-columns-capture-view)
  645. (org-edit-headline): New functions.
  646. (org-agenda-to-appt): Require calendar.
  647. (org-entry-get-with-inheritance): Widen for search.
  648. (org-columns-display-here): Don't mark buffer as modified when
  649. adding space characters to accomodate column overlays.
  650. (org-export-as-html): Better formatting of tags in the toc.
  651. (org-columns-display-here): Make the ITEM column as compact as
  652. possible.
  653. (org-remember-templates): Customization interface improved.
  654. (org-export-with-property-drawer): Variable removed.
  655. (org-export-with-drawers): New option.
  656. (org-complex-heading-regexp): New variable.
  657. (org-sort-entries): Rewrite using `sort-subr'.
  658. (org-set-property): More appropriate completion during interactive
  659. use.
  660. (org-sort-entries): Allow sorting by property.
  661. (org-additional-option-like-keywords): Added more values.
  662. (org-sort-entries-or-items): Renamed from `org-sort-entries'.
  663. ----------------------------------------------------------------------
  664. installed as 5.12
  665. 2007-10-12 Carsten Dominik <dominik@science.uva.nl>
  666. * org.texi: Small fixes.
  667. 2007-10-11 Carsten Dominik <dominik@science.uva.nl>
  668. * org.el (org-get-date-from-calendar): New function.
  669. (org-at-timestamp-p, org-timestamp-change)
  670. (org-remember-templates): First element of each entry is now a
  671. name for the template.
  672. (org-store-log-note): Check for `org-note-abort'.
  673. (org-kill-note-or-show-branches): New command.
  674. (org-fontify-priorities): New option.
  675. (org-fontify-priorities): New function.
  676. (org-cut-subtree, org-copy-subtree): New argument N to
  677. act on N sequential subtrees.
  678. (org-paste-subtree): Fix the level at which a tree is pasted.
  679. (org-fit-agenda-window): Limitations on window size removed.
  680. (org-agenda-find-same-or-today-or-agenda): Renamed from
  681. `org-agenda-find-today-or-agenda'.
  682. (org-scheduled-past-days): New option.
  683. (org-agenda-scheduled-leaders)
  684. (org-agenda-deadline-leaders): New options.
  685. (org-agenda-get-deadlines): Use `org-agenda-deadline-leaders'.
  686. (org-agenda-get-scheduled): Use `org-agenda-scheduled-leaders'.
  687. (org-export-with-tags, org-export-plist-vars)
  688. (org-infile-export-plist): New "tags" option.
  689. (org-use-property-inheritance): New option.
  690. (org-cached-entry-get): Use `org-use-property-inheritance'.
  691. (org-remember-apply-template): Fixed typo.
  692. ----------------------------------------------------------------------
  693. Installed as 5.11
  694. 2007-10-05 Carsten Dominik <dominik@science.uva.nl>
  695. * org.el (org-additional-option-like-keywords): New constant.
  696. (org-complete): Use `org-additional-option-like-keywords'.
  697. (org-parse-local-options): New function.
  698. 2007-10-04 Carsten Dominik <dominik@science.uva.nl>
  699. * org.el (org-in-clocktable-p): New function.
  700. (org-clock-report): Only update the table at point, or insert a
  701. new one.
  702. (org-clock-goto): New function.
  703. (org-open-file): Use `start-process-shell-command' instead of
  704. `shell-command' with an ampersand.
  705. (org-deadline, org-schedule): New argument REMOVE to remove the
  706. date from the entry.
  707. (org-agenda-schedule, org-agenda-deadline): Pass the prefix
  708. argument to `org-schedule' and `org-deadline'.
  709. (org-trim): Use the correct expressions for beginning and end of
  710. the string.
  711. (org-get-cleaned-entry): Trim the string before returning it.
  712. (org-clock-find-position): New function.
  713. (org-clock-into-drawer): New option.
  714. (org-agenda-tags-column): Renamed from
  715. `org-agenda-align-tags-to-column'.
  716. (org-agenda-align-tags): Allow negative values for
  717. `org-agenda-tags-column'.
  718. (org-insert-labeled-timestamps-before-properties-drawer): Variable
  719. removed.
  720. (org-agenda-to-appt): new optional argument FILTER.
  721. (org-completion-fallback-command): New variable.
  722. (org-complete): Use `org-completion-fallback-command'.
  723. (org-find-base-buffer-visiting): Catch the case that there is no
  724. buffer visiting the file.
  725. (org-property-or-variable-value): New function.
  726. (org-todo): Use `org-property-or-variable-value'
  727. (org-agenda-compact-blocks): New option.
  728. (org-prepare-agenda, org-agenda-list): Use
  729. `org-agenda-compact-blocks'.
  730. (org-agenda-schedule, org-agenda-deadline): Call
  731. `org-agenda-show-new-time'.
  732. (org-agenda-show-new-time): New argument PREFIX.
  733. (org-colgroup-info-to-vline-list): Fixed but that cause a
  734. shift in the vertical lines.
  735. (org-buffer-property-keys): New argument INCLUDE-DEFAULTS.
  736. (org-maybe-renumber-ordered-list, org-cycle-list-bullet)
  737. (org-indent-item): No arg in call to `org-fix-bullet-type'.
  738. (org-fix-bullet-type): Removed argument.
  739. (org-read-date): Check for am/pm twice, to catch the end time.
  740. (org-goto-map): Use `suppress-keymap'.
  741. (org-remember-apply-template): Respect the dynamically scoped
  742. selection character.
  743. * org.texi (Appointment reminders): New section.
  744. 2007-10-05 Bastien Guerry <Bastien.Guerry@ens.fr>
  745. * org-export-latex.el (org-export-latex-protect-string):
  746. Renaming of `org-latex-protect'.
  747. (org-export-latex-emphasis-alist): By default, don't protect
  748. any emphasis formatter from further conversion.
  749. (org-export-latex-tables): honor column grouping for tables.
  750. (org-export-latex-title-command): New option.
  751. (org-export-latex-treat-backslash-char): Use \textbackslash{} to
  752. export backslash character.
  753. ------------------------------------------------------------
  754. Installed as 5.10
  755. 2007-09-26 Carsten Dominik <dominik@science.uva.nl>
  756. * org.el (turn-on-orgstruct++): New function.
  757. (org-table-convert-region): Prefix arg interpreted differently in
  758. terms of field separator.
  759. (org-icalendar-include-body-as-description): New option.
  760. (org-export-icalendar-clean-description): New function.
  761. (org-link-escape): New argument TABLE.
  762. (org-link-escape-chars-browser): New constant.
  763. (org-open-at-point): Call `org-link-escape' with new argument.
  764. (org-export-html-extension): New option.
  765. (org-read-date): New argument DEFAULT-TIME. No longer determine
  766. default time from buffer context.
  767. (org-time-stamp): Pass default time to `org-read-date'.
  768. (org-refresh-category-properties): New function.
  769. (org-dblock-write:clocktable): Interpret the :scope parameter.
  770. (org-archive-subtree): Use category properties.
  771. (org-prepare-agenda-buffers): Call
  772. `org-refresh-category-properties'.
  773. (org-category-table): Variable removed.
  774. (org-get-category-table): Function removed.
  775. (org-get-category): Just get the property now.
  776. (org-tags-view, org-agenda-get-day-entries)
  777. (org-print-icalendar-entries): No longer create the category table.
  778. (org-columns-check-computed): New function.
  779. (org-columns-compute): Mark computed values.
  780. (org-columns-update): Set also the `org-columns-value' property.
  781. (org-indent-item): Fix bullet type before thinking about
  782. renumbering.
  783. 2007-09-26 Bastien Guerry <Bastien.Guerry@ens.fr>
  784. * org-export-latex.el (org-export-latex-emphasis-alist):
  785. Each list of the alist now requires three elements.
  786. -----------------------------------------------------------------
  787. Installed as 5.09
  788. 2007-09-14 Bastien Guerry <bzg@altern.org>
  789. * org-export-latex.el (org-export-latex-tables-verbatim): New
  790. function.
  791. (org-export-latex-remove-from-headlines): Name changed because of
  792. typo.
  793. (org-export-latex-quotation-marks-convention): Option removed.
  794. (org-export-latex-make-preamble): Handle the DATE option.
  795. (org-export-latex-cleaned-string): Now the only cleaning function,
  796. synched up with org.el.
  797. (org-export-latex-lists, org-export-latex-parse-list)
  798. (org-export-list-to-latex): New functions.
  799. 2007-09-13 Carsten Dominik <dominik@science.uva.nl>
  800. * org.el (org-kill-is-subtree-p): Use `org-outline-regexp'.
  801. (org-outline-regexp): New constant.
  802. (org-remember-handler): Throw error when the target file is not in
  803. org-mode.
  804. (org-cleaned-string-for-export): No longer call
  805. `org-export-latex-cleaned-string' with an argument.
  806. (org-get-tags): Returns now a list, not a string.
  807. (org-get-tags-string): New function.
  808. (org-archive-subtree): No need to split return of `org-get-tags'.
  809. (org-set-tags, org-entry-properties): Call `org-get-tags-string'
  810. instead of `org-get-tags'.
  811. (org-agenda-format-date): Renamed from `org-agenda-date-format'.
  812. (org-time-from-absolute, org-agenda-format-date-aligned): New
  813. functions.
  814. (org-compatible-face): New argument INHERITS. Inherit from this
  815. face if possible.
  816. (org-level-1, org-level-2, org-level-3, org-level-4)
  817. (org-level-5, org-level-6, org-level-7, org-level-8)
  818. (org-special-keyword, org-drawer, org-column, org-warning)
  819. (org-archived, org-todo, org-done, org-headline-done, org-table)
  820. (org-formula, org-code, org-agenda-structure)
  821. (org-scheduled-today, org-scheduled-previously)
  822. (org-upcoming-deadline, org-time-grid): Call `org-compatible-face'
  823. in the new way.
  824. (org-get-heading): New argument NO-TAGS.
  825. (org-fast-tag-selection-include-todo): Made defvar instead of
  826. defcustom, feature is not deprecated.
  827. (org-remember-store-without-prompt): New default value t.
  828. (org-todo-log-states): New variable.
  829. (org-set-regexps-and-options): #+TODO is an alias for SEQ_TODO.
  830. Compute the log states.
  831. (org-goto-map): More commands copied from global map. Also bind
  832. `org-occur'.
  833. (org-goto): Made into a general lookup command.
  834. (org-get-location): Complete rewrite.
  835. (org-goto-exit-command): New variable.
  836. (org-goto-selected-point): New variable.
  837. (org-goto-ret, org-goto-left, org-goto-right, org-goto-quit): Set
  838. the new variables.
  839. (org-paste-subtree): Whitespace insertion strategy revised.
  840. (org-remember-apply-template): Protect v-A from the possibility
  841. that v-a might be nil.
  842. (org-remember-handler): Insertion rules revised.
  843. (org-todo): Respect org-todo-log-states.
  844. (org-up-heading-safe): New function.
  845. (org-entry-get-with-inheritance): Use `org-up-heading-safe'.
  846. * org.texi: Change links to webpage and maintained email.
  847. (Remember): Promoted to Chapter, significant changes.
  848. (Fast access to TODO states): New section.
  849. (Faces for TODO keywords): New section.
  850. (Export options): Example for #+DATE.
  851. (Progress logging): Section moved.
  852. ----------------------------------------------------------------------
  853. installed in Emacs as 5.08
  854. 2007-09-09 Carsten Dominik <dominik@science.uva.nl>
  855. * org.el (org-re): Also replace the :alpha: class.
  856. (org-todo-tag-alist): Variable removed.
  857. (org-todo-key-alist, org-todo-key-trigger) New variables.
  858. (org-use-fast-todo-selection): New option.
  859. (org-log-done): Docstring fixed.
  860. (org-deadline-warning-days): New default value 14.
  861. (org-edit-timestamp-down-means-later) New option.
  862. (org-tag-alist): Docstring fixed.
  863. (org-fast-tag-selection-include-todo): New option.
  864. (org-export-language-setup): New languages added.
  865. (org-set-regexps-and-options): Compute the new variables.
  866. (org-paste-subtree): Cleaning up.
  867. (org-remember-apply-template): New escape %A.
  868. (org-todo): Call fast TODO selection.
  869. (org-fast-todo-selection): New function.
  870. (org-add-log-note): Allow prefix for abort exit.
  871. (org-at-property-p, org-entry-properties)
  872. (org-columns-get-autowidth-alist): Use :alpha: class.
  873. (org-get-wdays): New function.
  874. (org-agenda-remove-date): New variable.
  875. (org-agenda-get-deadlines): Use `org-get-wdays'.
  876. (org-agenda-get-deadlines): Reverse ee before returning.
  877. (org-format-agenda-item): New argument REMOVE-RE.
  878. (org-agenda-convert-date): Baha'i calendar added.
  879. (org-infile-export-plist): Also find DATE line.
  880. (org-get-min-level): New function.
  881. (org-export-as-html, org-export-as-ascii): Use the date format.
  882. (org-shiftup, org-shiftdown): Use.
  883. `org-edit-timestamp-down-means-later'.
  884. (org-assign-fast-keys): New function.
  885. ----------------------------------------------------------------------
  886. 2007-08-30 Carsten Dominik <dominik@science.uva.nl>
  887. * org.el (org-export-visible): Fix drawers before export.
  888. (org-do-sort): Allow sorting by priority.
  889. (org-agenda-files): Ignore non-existing files.
  890. (org-agenda-skip-unavailable-files): New variable.
  891. (org-ellipsis): All a face as value.
  892. (org-mode): Interprete the face value of `org-ellipsis'.
  893. (org-archive-save-context-info): New option.
  894. (org-archive-subtree): Store context info in archived entry.
  895. (org-fast-tag-selection-can-set-todo-state): New variable.
  896. (org-fast-tag-selection): Allow setting TODO states through this
  897. interface.
  898. (org-cycle): Docstring updated.
  899. (org-todo-keyword-faces): New option.
  900. (org-get-todo-face): New function.
  901. (org-set-font-lock-defaults, org-agenda-highlight-todo): Use
  902. `org-get-todo-face'.
  903. (org-switch-to-buffer-other-window): New function.
  904. (org-table-edit-field, org-table-show-reference)
  905. (org-table-edit-formulas, org-add-log-note)
  906. (org-fast-tag-selection, org-agenda, org-prepare-agenda)
  907. (org-timeline): Use `org-switch-to-buffer-other-window' instead of
  908. `switch-to-buffer-other-window' to make sure that the temporary
  909. windows show up on the current frame.
  910. (org-mhe-get-message-real-folder, org-batch-store-agenda-views)
  911. (org-get-entries-from-diary, org-replace-region-by-html): Don't
  912. allow pop-up frames.
  913. (org-agenda-get-deadlines, org-agenda-get-scheduled): Fixed
  914. problems with time-of-day.
  915. (org-export-get-title-from-subtree): New function.
  916. (org-agenda-get-scheduled, org-agenda-get-deadlines): Fix problems
  917. with listing items that are DONE.
  918. (org-change-tag-in-region): New command.
  919. (org-agenda-skip-scheduled-if-done)
  920. (org-agenda-skip-deadline-if-done): Docstring clarified.
  921. (org-mode): Hide drawers on startup.
  922. (org-get-todo-face): New function.
  923. (org-todo-keyword-faces): New option.
  924. -------------------------------------------------------------------------
  925. 2007-08-21 Carsten Dominik <dominik@science.uva.nl>
  926. * org.el (org-agenda-skip): Allow a form for
  927. `org-agenda-skip-function'.
  928. (org-agenda-redo): Re-use local settings.
  929. (org-agenda): Store local settings.
  930. (org-agenda-deadline-faces): New option.
  931. (org-agenda-deadline-face): New function.
  932. (org-agenda-get-deadlines, org-agenda-get-scheduled): Also handle
  933. entries on their due date.
  934. (org-agenda-get-timestamps): No longer handle the due dates of
  935. schedules and deadline items.
  936. (org-insert-link-global, org-open-at-point-global): New commands.
  937. (org-export-as-ascii): Call
  938. `org-cleaned-string-for-export' with a :for-ascii parameter.
  939. (org-skip-comments): Function removed.
  940. (org-cleaned-string-for-export): Handle special table lines.
  941. (org-global-properties): New option.
  942. (org-entry-get-with-inheritance): Check global properties.
  943. (org-local-properties): New variable.
  944. (org-set-regexps-and-options): Find the #+PROPERTY line.
  945. (org-link-types): Change type into variable (was constant).
  946. (org-make-link-regexps): New function.
  947. (org-link-re-with-space, org-link-re-with-space2)
  948. (org-angle-link-re, org-plain-link-re, org-bracket-link-regexp)
  949. (org-bracket-link-analytic-regexp, org-any-link-re): Creation of
  950. these regular expressions happens now in the function
  951. `org-make-link-regexps'.
  952. (org-store-link): Call the functions in `org-store-link-functions'.
  953. (org-add-link-type): New function.
  954. (org-store-link-functions): New variable.
  955. (org-activate-tags): Force matches to be in headlines.
  956. (org-batch-store-agenda-views): Fix bug with killing agenda buffer.
  957. (org-columns-display-here): Make sure this works in a narrowed
  958. buffer by checking for point-min.
  959. (org-columns-display-here): Make the rest of the line intangible,
  960. so that point never can be there.
  961. (org-cleaned-string-for-export): Use `with-current-buffer'.
  962. (org-replace-region-by-html): Use `with-current-buffer'.
  963. (org-unfontify-region, org-do-occur, org-columns-display-here)
  964. (org-columns-remove-overlays, org-columns-quit)
  965. (org-columns-edit-value, org-columns-next-allowed-value)
  966. (org-eval-in-calendar, org-agenda-undo, org-no-read-only)
  967. (org-finalize-agenda, org-remove-subtree-entries-from-agenda)
  968. (org-agenda-todo, org-agenda-change-all-lines)
  969. (org-agenda-align-tags, org-agenda-priority)
  970. (org-agenda-set-tags, org-agenda-toggle-archive-tag)
  971. (org-agenda-show-new-time, org-cleaned-string-for-export)
  972. (org-export-grab-title-from-buffer):
  973. (org-export-as-ascii, org-export-as-html): Use `inhibit-read-only'
  974. instead of `buffer-read-only'.
  975. (org-export-as-html): Set `coding-system-for-write'.
  976. (org-remember-store-without-prompt): New option.
  977. (org-archive-subtree): Fixed bug with modifying TODO keyword.
  978. (org-beginning-of-line): Also treat C-a special in items.
  979. (org-table-convert-refs-to-rc): Fixed problem with column
  980. reference after "..".
  981. (org-columns-compute): Don't mark buffer modified because of text
  982. properties.
  983. (org-batch-store-agenda-views): Use the variable
  984. `default-directory', not the function.
  985. (org-clock-out-if-current): Respect
  986. `org-clock-out-when-done'.
  987. (org-clock-out-when-done): New option.
  988. (org-html-entities): Added HTML entities for smileys.
  989. * org.texi (Adding hyperlink types): New section.
  990. (Embedded LaTeX): Chapter updated because of LaTeX export.
  991. (LaTeX export): New section.
  992. (Using links out): New section.
  993. -----------------------------------------------------------------
  994. 2007-07-10 Carsten Dominik <dominik@science.uva.nl>
  995. * org.texi (Properties and columns): Chapter rewritten.
  996. 2007-07-03 Carsten Dominik <dominik@science.uva.nl>
  997. * org.el (org-agenda-day-view, org-agenda-week-view): Remember
  998. span as default.
  999. (org-columns-edit-value): Renamed from `org-column-edit'.
  1000. (org-columns-display-here-title): Renamed from
  1001. `org-overlay-columns-title'.
  1002. (org-columns-remove-overlays): ` Renamed from
  1003. org-remove-column-overlays'.
  1004. (org-columns-get-autowidth-alist): ` Renamed from
  1005. org-get-columns-autowidth-alist'.
  1006. (org-columns-display-here): Renamed from `org-overlay-columns'.
  1007. (org-columns-new-overlay): Renamed from `org-new-column-overlay'.
  1008. (org-columns-quit): Renamed from `org-column-quit'.
  1009. (org-columns-show-value): Renamed from `org-column-show-value'.
  1010. (org-columns-content, org-columns-widen)
  1011. (org-columns-next-allowed-value)
  1012. (org-columns-edit-allowed, org-columns-store-format)
  1013. (org-columns-uncompile-format, org-columns-redo)
  1014. (org-columns-edit-attributes, org-delete-property)
  1015. (org-set-property, org-columns-update)
  1016. (org-columns-compute, org-columns-eval)
  1017. (org-columns-not-in-agenda, org-columns-compute-all)
  1018. (org-property-next-allowed-value)
  1019. (org-columns-compile-format)
  1020. (org-fill-paragraph-experimental)
  1021. (org-string-to-number, org-property-action)
  1022. (org-columns-move-left, org-columns-new )
  1023. (org-column-number-to-string)
  1024. (org-property-previous-allowed-value)
  1025. (org-at-property-p, org-columns-delete)
  1026. (org-columns-previous-allowed-value)
  1027. (org-columns-move-right, org-columns-narrow)
  1028. (org-property-get-allowed-values)
  1029. (org-verify-version, org-column-string-to-number)
  1030. (org-delete-property-globally): New functions.
  1031. (org-columns-current-fmt): Renamed from `org-current-columns-fmt'.
  1032. (org-columns-overlays): Renamed from `org-column-overlays'.
  1033. (org-columns-map): Renamed from `org-column-map'.
  1034. (org-columns-current-maxwidths): Renamed from
  1035. `org-current-columns-maxwidths'.
  1036. (org-columns-begin-marker, org-columns-current-fmt-compiled)
  1037. (org-previous-header-line-format)
  1038. (org-columns-inhibit-recalculation)
  1039. (org-columns-top-level-marker): New variables.
  1040. (org-columns-default-format): Renamed from
  1041. `org-default-columns-format'.
  1042. (org-property-re): New constant.
  1043. =====================================================================
  1044. Installed as 5.01b
  1045. 2007-07-02 Carsten Dominik <dominik@science.uva.nl>
  1046. * org.el (orgstruct-mode-map): New variable.
  1047. (orgstruct-mode): New minor mode.
  1048. (turn-on-orgstruct, orgstruct-error, orgstruct-setup)
  1049. (orgstruct-make-binding, org-context-p, org-get-local-variables)
  1050. (org-run-like-in-org-mode): New functions.
  1051. (org-cycle-list-bullet): New command.
  1052. (org-special-properties, org-property-start-re)
  1053. (org-property-end-re): New constants.
  1054. (org-with-point-at): New macro.
  1055. (org-get-property-block, org-entry-properties, org-entry-get)
  1056. (org-entry-delete, org-entry-get-with-inheritance)
  1057. (org-entry-put, org-buffer-property-keys): New functions.
  1058. (org-insert-property-drawer): New command.
  1059. (org-entry-property-inherited-from): New variable.
  1060. (org-column): New face.
  1061. (org-column-overlays, org-current-columns-fmt)
  1062. (org-current-columns-maxwidths, org-column-map): New variables.
  1063. (org-column-menu): New menu.
  1064. (org-new-column-overlay, org-overlay-columns)
  1065. (org-overlay-columns-title, org-remove-column-overlays)
  1066. (org-column-show-value, org-column-quit, org-column-edit): New
  1067. functions.
  1068. (org-columns, org-agenda-columns): New commands.
  1069. (org-get-columns-autowidth-alist): New functions.
  1070. (org-properties): New customize group.
  1071. (org-default-columns-format): New option.
  1072. 2007-06-28 Carsten Dominik <dominik@science.uva.nl>
  1073. * org.el (org-priority): Realign tags after changing priority.
  1074. (org-preserve-lc): New macro.
  1075. (org-update-checkbox-count): Catch case when there is no headline.
  1076. (org-agenda-quit): Remove any column overlays.
  1077. 2007-06-25 Carsten Dominik <dominik@science.uva.nl>
  1078. * org.el (org-beginning-of-item-list): Fixed bug when non-item
  1079. line is indented too deep.
  1080. 2007-06-24 Carsten Dominik <dominik@science.uva.nl>
  1081. * org.el (org-cached-props): New variable.
  1082. (org-cached-entry-get): New function.
  1083. (org-make-tags-matcher): Handle property matches.
  1084. 2007-06-22 Carsten Dominik <dominik@science.uva.nl>
  1085. * org.el (org-table-recalculate): Swap evaluation order: Field
  1086. formula first, then column formulas, but don't allow them to
  1087. overwrite the field formulas.
  1088. (org-table-eval-formula): New argument untouchable.
  1089. (org-table-put-field-property): New function.
  1090. ========================================================================
  1091. 2007-06-21 Carsten Dominik <dominik@science.uva.nl>
  1092. * org.el (org-export-with-footnotes): New option.
  1093. 2007-06-20 Carsten Dominik <dominik@science.uva.nl>
  1094. * org.el (org-export-as-html): Fixed replacement bug for XEmacs.
  1095. (org-agenda-default-appointment-duration): New option.
  1096. 2007-06-19 Carsten Dominik <dominik@science.uva.nl>
  1097. * org.texi (Tag): Section swapped with node Timestamps.
  1098. (Formula syntax for Lisp): Document new `L' flag.
  1099. * org.el (org-end-time-was-given): New variable.
  1100. (org-read-date): Look for time range.
  1101. (org-timestamp-change): Deal with time range issues.
  1102. (org-modify-ts-extra): New function.
  1103. (org-remember-apply-template, org-add-planning-info)
  1104. (org-time-stamp, org-time-stamp-inactive): Make use of
  1105. `org-end-time-was-given'.
  1106. (org-set-regexps-and-options, org-activate-tags)
  1107. (org-archive-subtree, org-toggle-tag)
  1108. (org-make-org-heading-search-string, org-open-at-point)
  1109. (org-link-search, org-remember-handler, org-complete)
  1110. (org-scan-tags, org-make-tags-matcher, org-fast-tag-selection)
  1111. (org-get-tags, org-get-buffer-tags, org-dblock-write:clocktable)
  1112. (org-agenda-list-stuck-projects, org-format-agenda-item)
  1113. (org-agenda-align-tags, org-get-tags-at, org-export-as-ascii)
  1114. (org-ascii-level-start, org-export-as-html)
  1115. (org-export-cleanup-toc-line, org-html-level-start): Use [:alnum:]
  1116. to match tags, in order to allow lanufage-specific characters in
  1117. tags.
  1118. (org-beginning-of-item-list): New command.
  1119. (org-target): New face.
  1120. (org-activate-links): New link type target.
  1121. ======================================================================
  1122. 2007-06-06 Carsten Dominik <dominik@science.uva.nl>
  1123. * textmodes/org.el:
  1124. (org-export-region-as-html, org-replace-region-by-html)
  1125. (org-number-to-letters, org-table-fedit-finish)
  1126. (org-normalize-color, org-table-fedit-ref-right)
  1127. (org-date-to-gregorian, org-table-fedit-move)
  1128. (org-table-convert-refs-to-rc, org-calendar-holiday)
  1129. (org-table-fedit-toggle-ref-type, org-write-agenda)
  1130. (org-colgroup-info-to-vline-list, org-agenda-todo-previousset)
  1131. (org-defkey, org-encode-for-stdout)
  1132. (org-indent-line-function, org-export-as-html-to-buffer)
  1133. (org-store-agenda-views, org-update-mode-line)
  1134. (org-find-if, org-delete-all)
  1135. (org-table-fedit-convert-buffer, org-emphasize)
  1136. (org-uniquify, org-table-fedit-lisp-indent)
  1137. (org-table-fedit-scroll, org-get-todo-sequence-head)
  1138. (org-table-fedit-scroll-down, org-table-fedit-line-down)
  1139. (org-table-fedit-ref-left, org-agenda-export-csv-mapper)
  1140. (org-table-fedit-toggle-coordinates, org-dvipng-color)
  1141. (org-table-fedit-line-up, org-table-fedit-ref-down)
  1142. (org-table-formula-from-user, org-mode-flyspell-verify)
  1143. (org-cycle-show-empty-lines, org-ctrl-c-ret)
  1144. (org-table-formula-to-user, org-diary-to-ical-string)
  1145. (orgtbl-export, org-table-fedit-post-command)
  1146. (org-closed-in-range, org-shiftcontrolright)
  1147. (org-table-convert-refs-to-an, org-table-hline-and-move)
  1148. (org-table-formula-less-p, org-format-table-ascii)
  1149. (org-agenda-get-sexps, org-shift-refpart)
  1150. (org-diary-sexp-entry, org-time-string-to-absolute)
  1151. (org-table-show-reference, org-letters-to-number)
  1152. (org-fix-agenda-info, org-table-fedit-ref-up)
  1153. (org-table-fedit-shift-reference, org-table-fedit-abort)
  1154. (org-closest-date, org-shiftcontrolleft)
  1155. (org-at-heading-or-item-p, org-rematch-and-replace)
  1156. (org-agenda-todo-nextset, org-export-grab-title-from-buffer): New
  1157. function.
  1158. (org-table-edit-scroll-down, org-finish-edit-formulas)
  1159. (org-table-edit-next-field, org-abort-edit-formulas)
  1160. (org-font-lock-level, org-export-find-first-heading-line)
  1161. (org-table-edit-line-down, org-table-edit-backward-field)
  1162. (org-edit-formula-lisp-indent, org-table-edit-move)
  1163. (org-check-log-option, org-this-word)
  1164. (org-table-edit-line-up, org-table-edit-formulas-post-command)
  1165. (org-agenda-file-to-end, org-expand-file-name)
  1166. (org-fake-empty-table-line, org-table-edit-scroll)
  1167. (org-toggle-log-option, org-show-reference): Function removed.
  1168. (org-inhibit-invisibility, org-table-formula-make-cmp-string): New
  1169. defsubst.
  1170. (org-unmodified, org-batch-store-agenda-views)
  1171. (org-batch-agenda-csv): New macro.
  1172. (org-agenda-export): New customization group.
  1173. (org-agenda-skip-deadline-if-done, org-agenda-remove-tags)
  1174. (org-highest-priority, org-agenda-exporter-settings)
  1175. (org-log-done-with-time, org-replace-disputed-keys)
  1176. (org-format-latex-header, org-export-table-header-tags)
  1177. (org-cycle-separator-lines, org-export-table-data-tags)
  1178. (org-icalendar-include-sexps)
  1179. (org-empty-line-terminates-plain-lists)
  1180. (org-log-repeat, org-special-ctrl-a)
  1181. (org-table-use-standard-references, org-disputed-keys)
  1182. (org-export-skip-text-before-1st-heading, org-agenda-with-colors)
  1183. (org-agenda-export-html-style): New option.
  1184. (org-allow-auto-repeat, org-agenda-remove-tags-when-in-prefix)
  1185. (org-CUA-compatible): Option removed.
  1186. (org-agenda-structure, org-sexp-date): New face.
  1187. (org-todo-keywords-for-agenda, org-not-done-keywords)
  1188. (org-planning-or-clock-line-re, org-agenda-name)
  1189. (org-table-colgroup-info, org-todo-sets)
  1190. (constants-unit-system, org-clock-mode-line-entry)
  1191. (org-mode-line-timer, org-table-current-begin-pos)
  1192. (org-todo-keywords-1, org-mode-line-string)
  1193. (org-table-clean-did-remove-column, org-table-fedit-map)
  1194. (org-clock-heading, org-table-buffer-is-an)
  1195. (org-agenda-info, org-done-keywords)
  1196. (org-done-keywords-for-agenda, org-todo-heads)
  1197. (org-todo-kwd-alist, org-clock-start-time): New variable.
  1198. (org-todo-kwd-priority-p, org-edit-formulas-map)
  1199. (org-repeat-re, org-todo-kwd-max-priority)
  1200. (org-version, org-done-string)
  1201. (org-table-clean-did-remove-column-1, org-disputed-keys): Variable
  1202. removed.
  1203. (org-table-translate-regexp, org-repeat-re, org-version): New
  1204. constant.
  1205. (org-ts-lengths): Constant removed.
  1206. (org-follow-gnus-link): Don't ask how many articles to read.
  1207. (org-export-find-first-export-line): Renamed from
  1208. `org-export-find-first-heading'. Use
  1209. `org-export-skip-text-before-1st-heading'.
  1210. (org-table-fedit-post-command): Renamed from
  1211. `org-table-edit-formulas-post-command'.
  1212. (org-table-fedit-finish): Renamed from `org-finish-edit-formulas'.
  1213. (org-table-fedit-abort): Renamed from `org-abort-edit-formulas'.
  1214. (org-table-fedit-lisp-indent): Renamed from
  1215. `org-edit-formula-lisp-indent'.
  1216. (org-table-show-reference): Renamed from `org-show-reference'.
  1217. (org-table-store-formulas): Use `org-table-formula-less-p'.
  1218. (org-table-edit-formulas): Position cursor to current field
  1219. equation.
  1220. (org-update-checkbox-count, org-hide-archived-subtrees)
  1221. (org-timestamp-up-day, org-timestamp-down-day)
  1222. (org-shiftmetaleft, org-shiftmetaright, org-shiftmetaup)
  1223. (org-shiftmetadown, org-metaleft, org-metaright, org-metaup)
  1224. (org-metadown, org-shiftup, org-shiftdown, org-shiftright)
  1225. (org-shiftleft, org-ctrl-c-ctrl-c, org-context): Let
  1226. `org-on-heading-p' also check for invisible heading.
  1227. (org-read-date): Match am/pm times.
  1228. (org-eval-in-calendar): Fix default date in prompt.
  1229. -------------------------------------------------------------------------
  1230. installed as 4.67
  1231. 2007-02-25 Carsten Dominik <dominik@science.uva.nl>
  1232. * org.texi (The spreadsheet): Renamed from "Table calculations".
  1233. Completely reorganized and rewritten.
  1234. (CamelCase links): Section removed.
  1235. (Repeating items): New section.
  1236. (Tracking TODO state changes): New section.
  1237. (Agenda views): Chapter reorganized and rewritten.
  1238. (HTML export): Section rewritten.
  1239. (Tables in arbitrary syntax): New section.
  1240. (Summary): Better feature summary.
  1241. (Activation): Document problem with cut-and-paste of Lisp code
  1242. from PDF files.
  1243. (Visibility cycling): Document indirect buffer use.
  1244. (Structure editing): Document sorting.
  1245. (Remember): Section rewritten.
  1246. (Time stamps): Better description of time stamp types.
  1247. (Tag searches): DOcument regular expression search for tags.
  1248. (Stuck projects): New section.
  1249. (In-buffer settings): New keywods.
  1250. (History and Acknowledgments): Updated description.
  1251. 2007-02-22 Carsten Dominik <dominik@science.uva.nl>
  1252. * org.el (org-table-overlay-coordinates)
  1253. (org-table-toggle-coordinate-overlays): New functions.
  1254. (org-table-overlay-coordinates, org-table-coordinate-overlays):
  1255. New variables.
  1256. (org-startup-with-deadline-check): Option removed.
  1257. (org-mode): Remove deadline check on startup.
  1258. (org-table-limit-column-width): Option removed.
  1259. (org-table-formula-numbers-only): Option removed.
  1260. (org-link-style, org-link-format): Options removed.
  1261. (org-select-agenda-window, org-fit-agenda-window): Options
  1262. removed.
  1263. (org-export-ascii-show-new-buffer)
  1264. (org-export-html-show-new-buffer): Options removed.
  1265. (org-activate-links): Camel option removed.
  1266. (org-file-link-context-use-camel-case): Option removed.
  1267. (org-camel-regexp): Veriable removed.
  1268. (org-activate-camels): Function removed.
  1269. (org-store-link): Removed Camel stuff.
  1270. (org-make-org-heading-camel): Function removed.
  1271. (org-open-at-point): Removed camel stuff.
  1272. (org-link-search): Removed camel stuff.
  1273. (org-camel-to-words): Function removed.
  1274. (org-get-agenda-file-buffer): Make sure we prepare the
  1275. base buffers, not any indirect buffers.
  1276. (org-sort-entries): Sort top-level when not on a
  1277. headline, and no active region.
  1278. (org-in-regexp): New function.
  1279. (org-search-not-self): Renamed from `org-search-not-link'.
  1280. (org-open-link-marker): New variable.
  1281. (org-open-at-point): Set `org-open-link-marker'.
  1282. (org-print-icalendar-entries): Fixed bug with excluding DONE
  1283. entries from the exported list.
  1284. (org-edit-formula-lisp-indent): New command.
  1285. (orgtbl-to-texinfo, orgtbl-to-html): New functions.
  1286. (orgtbl-to-latex, orgtbl-insert-radio-table)
  1287. (orgtbl-toggle-comment, orgtbl-send-table): New functions.
  1288. (orgtbl-radio-table-templates): New option.
  1289. (org-store-link-props):
  1290. (org-remember-templates): More possibilities to insert
  1291. info into templates.
  1292. (org-remember-apply-template): Make use of the extended template
  1293. capabilities.
  1294. (org-remember-redo-template): New command.
  1295. (org-upgrade-old-links)
  1296. (org-table-modify-formulas, org-table-replace-in-formulas)
  1297. (org-table-find-dataline)
  1298. (org-table-get-vertical-vector): Functions removed.
  1299. (org-table-remove-rectangle-highlight)
  1300. (org-time-stamp-format, org-toggle-log-option)
  1301. (org-table-highlight-rectangle)
  1302. (org-table-iterate, org-table-make-reference):
  1303. (org-translate-time, org-tree-to-indirect-buffer)
  1304. (org-table-field-info, org-table-fix-formulas)
  1305. (org-table-force-dataline, org-table-get-descriptor-line)
  1306. (org-table-get-range)
  1307. (org-skip-comments, org-sort)
  1308. (org-sort-entries, org-sublist, org-table-add-rectangle-overlay)
  1309. (org-table-current-dline, org-table-current-field-formula)
  1310. (org-table-edit-backward-field)
  1311. (org-table-edit-formulas-post-command)
  1312. (org-table-edit-line-down, org-table-edit-line-up)
  1313. (org-agenda-archive)
  1314. (org-agenda-clock-cancel)
  1315. (org-agenda-clock-out, org-agenda-list-stuck-projects)
  1316. (org-agenda-open-link, org-agenda-show-new-time)
  1317. (org-agenda-skip-subtree-when-regexp-matches)
  1318. (org-agenda-tree-to-indirect-buffer, org-agenda-undo)
  1319. (org-at-regexp-p, org-auto-repeat-maybe, org-check-log-option)
  1320. (org-do-sort, org-file-image-p, org-find-overlays)
  1321. (org-find-row-type, org-get-indirect-buffer, org-get-repeat)
  1322. (org-highlight-until-next-command, org-isearch-end)
  1323. (org-match-any-p, org-next-link, org-previous-link):
  1324. (org-remove-subtree-entries-from-agenda, org-replace-escapes)
  1325. (org-rewrite-old-row-references)
  1326. (org-isearch-post-command)
  1327. (org-table-edit-move, org-table-edit-next-field)
  1328. (org-table-edit-scroll, org-table-edit-scroll-down)
  1329. (org-set-frame-title, org-show-reference)
  1330. (org-unhighlight-once, org-verify-change-for-undo): New
  1331. functions.
  1332. (org-show-variable): Command removed.
  1333. (org-add-log-maybe): New arguments STATE, FINDPOS
  1334. (org-table-sort-lines): Rewritten from scratch.
  1335. (org-link-search): New argument AVOID-POS.
  1336. (org-print-icalendar-entries): Argument CATEGORY removed.
  1337. (org-run-agenda-series): Argument WONDOW removed.
  1338. (org-next-link, org-previous-link): New commands.
  1339. (org-agenda-date-format): New option.
  1340. (org-table-iterate): New command.
  1341. (org-table-modify-formulas)
  1342. (org-table-replace-in-formulas): Functions removed.
  1343. (org-table-fix-formulas): New function.
  1344. (org-table-insert-column, org-table-delete-column)
  1345. (org-table-move-column): Use `org-table-fix-formulas'.
  1346. (org-follow-gnus-link): Patch from Bastien/Leo.
  1347. (org-table-current-field-formula): New function.
  1348. (org-file-image-p): New function.
  1349. (org-agenda-show-new-time): New function.
  1350. (org-agenda-date-later): Call `org-agenda-show-new-time'.
  1351. (org-with-remote-undo): New macro.
  1352. (org-agenda-undo): New command.
  1353. (org-verify-change-for-undo): New function.
  1354. (org-time-stamp-format): New function.
  1355. (org-agenda-get-timestamps): Skip scheduled if DONE and requested
  1356. by user.
  1357. (org-match-any-p): New function.
  1358. (org-make-tags-matcher): Handle regular expressions for tag and
  1359. todo matches.
  1360. (org-read-date): Accept "+N" as input for a date relative to the
  1361. current date.
  1362. (org-remove-subtree-entries-from-agenda): New function.
  1363. (org-agenda-archive, org-agenda-kill): Use
  1364. `org-remove-subtree-entries-from-agenda'.
  1365. (org-do-sort, org-sort-entries): New functions.
  1366. (org-sort): New command.
  1367. (org-table-sort-lines): Use `org-do-sort'.
  1368. (org-fix-decoded-time): New function.
  1369. (org-table-number-regexp): Require 0x... to identify as number in
  1370. tables.
  1371. (org-startup-options): New keywords for note taking.
  1372. (org-upgrade-old-links): Function removed.
  1373. (org-get-repeat): New function.
  1374. (org-show-context): Also show siblings on current level.
  1375. (org-show-siblings): New function.
  1376. (org-isearch-end, org-isearch-post-command): New functions.
  1377. (org-show-siblings): New option.
  1378. (org-show-context): Use `org-show-siblings'.
  1379. (org-table-maybe-recalculate-line): No longer require `calc-eval'
  1380. to be bound, because user may just use elisp.
  1381. ----------------------------------------------------------------------
  1382. installed as 4.56
  1383. 2006-11-15 Carsten Dominik <dominik@science.uva.nl>
  1384. * org.texi: Fix typos
  1385. (Agenda commands): Document `C-k'.
  1386. * orgcard.tex (section{Agenda Views}): Document `C-k'.
  1387. * org.el (org-scan-tags): Re-align code fixed.
  1388. (org-detach-overlay): Renamed from `org-detatch-overlay'.
  1389. (org-table-convert-region): Insert space after column separator.
  1390. (org-agenda-kill): New command.
  1391. (org-metaleft): Call `org-outdent-item' on bullets.
  1392. (org-metaright): Call `org-indent-item' on bullets.
  1393. (org-timestamp-change): Set `org-last-changed-timestamp'.
  1394. (org-current-line): Make sure (bolp) returns correct result.
  1395. (org-agenda-change-all-lines): Make sure TODO are highlighted.
  1396. ----------------------------------------------------------------------------
  1397. Installed as 4.54
  1398. 2006-11-10 Carsten Dominik <dominik@science.uva.nl>
  1399. * org.el (org-scan-tags): Make the search case-sensitive.
  1400. (org-tags-sparse-tree): Don't overrule
  1401. `org-show-following-heading' and `org-show-hierarchy-above'.
  1402. (org-reveal): New command.
  1403. (org-show-context): Renamed from `org-show-hierarchy-above'.
  1404. (org-fast-tag-selection-single-key): New option.
  1405. (org-fast-tag-show-exit, org-set-current-tags-overlay): New
  1406. functions.
  1407. (org-tags-overlay): New variable.
  1408. (org-agenda-todo-ignore-deadlines): New option.
  1409. ("session"): Add circular data structure `org-mark-ring' to
  1410. exceptions list in session.el.
  1411. (org-agenda-window-setup, org-agenda-restore-windows-after-quit):
  1412. New options.
  1413. (org-agenda-quit): Use `org-agenda-restore-windows-after-quit'.
  1414. (org-prepare-agenda, org-agenda-quit): Use
  1415. `org-agenda-window-setup'.
  1416. (org-pre-agenda-window-conf, org-blank-before-new-entry): New
  1417. variables.
  1418. (org-finalize-agenda): Activate bracket links in agenda.
  1419. (org-at-timestamp-p, org-at-date-range-p): Additional argument
  1420. INACTIVE-OK.
  1421. (org-show-hierarchy-above, org-show-following-heading): List
  1422. values allowed for fine-tuned configuration.
  1423. (org-show-hierarchy-above): New argument CONTEXT, use the
  1424. fine-tuned settings in `org-show-hierarchy-above' and
  1425. `org-show-following-heading'.
  1426. (org-display-custom-time): New function.
  1427. (org-toggle-time-stamp-overlays, org-insert-time-stamp): New
  1428. function.
  1429. (org-display-custom-times, org-time-stamp-custom-formats):
  1430. (org-maybe-intangible): New macro.
  1431. (org-activate-bracket-links, org-hide-wide-columns): Use
  1432. `org-maybe-intangible'.
  1433. (org-open-file): Use `shell-quote-argument'.
  1434. (org-display-internal-link-with-indirect-buffer): New option.
  1435. (org-file-remote-p): Get regexp from list.
  1436. (org-link-expand-abbrev): New function.
  1437. (org-link-abbrev-alist): New option.
  1438. (org-open-at-point, org-cleaned-string-for-export): Call
  1439. `org-link-expand-abbrev'.
  1440. (org-timeline, org-agenda-list, org-todo-list)
  1441. (org-tags-view): Remove the KEEP-MODES argument.
  1442. (org-finalize-agenda-hook): New hook.
  1443. (org-get-alist-option): New function.
  1444. (org-follow-timestamp-link): New function.
  1445. (org-open-at-point): Call `org-follow-timestamp-link'.
  1446. (org-log-note-marker, org-log-note-purpose)
  1447. (org-log-note-window-configuration): New variables.
  1448. (org-add-log-maybe, org-add-log-note, org-store-log-note): New
  1449. functions.
  1450. (org-log-note-headings): New option.
  1451. (org-dblock-write:clocktable): Bug fix, removed infinite loop.
  1452. (org-store-link): Support for dired-mode.
  1453. (org-open-file): Substitute environment variables into filename.
  1454. (org-last): New defsubst.
  1455. (org-agenda-re-align-tags): New function.
  1456. (org-agenda-align-tags-to-column): New option.
  1457. (org-agenda-timeline): Group removed.
  1458. (org-prepare-agenda, org-prepare-agenda-buffers)
  1459. (org-run-agenda-series, org-timeline, org-agenda-list)
  1460. (org-todo-list, org-tags-view): Call `org-agenda-prepare' and set
  1461. the text property inticating the agenda type.
  1462. (org-agenda-post-command-hook): Get agenda type from text property
  1463. at point.
  1464. (org-agenda): Handle command sets. Set
  1465. `org-agenda-last-arguments' and obey
  1466. `org-agenda-overriding-arguments'.
  1467. (org-agenda-overriding-arguments, org-agenda-last-arguments): New
  1468. variables.
  1469. (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
  1470. (org-agenda-week-view, org-agenda-day-view): Use
  1471. `org-agenda-overriding-arguments' to make updating work with
  1472. multi-block agendas.
  1473. (org-agenda-prefix-format): Allow different formats for the
  1474. different agenda entry types.
  1475. (org-timeline-prefix-format): Option removed, use
  1476. `org-agenda-prefix-format' instead.
  1477. (org-prepare-agenda): New function.
  1478. (org-select-timeline-window): Option removed, use
  1479. `org-select-agenda-window' instead.
  1480. (org-respect-restriction): Variable removed.
  1481. (org-cmp-tag): New function.
  1482. (org-agenda-sorting-strategy, org-entries-lessp): Implement
  1483. sorting by last tag.
  1484. (org-complete): Better completion in in-buffer option lines.
  1485. (org-in-item-p): New function.
  1486. (org-org-menu): Added entries for checkboxes.
  1487. (org-cycle): Extra brouping in outline-regexp, because it is used
  1488. in a search with "^" prepended.
  1489. (org-provide-checkbox-statistics): New option.
  1490. (org-set-font-lock-defaults): Highlight checkbox statistics.
  1491. (org-update-checkbox-count-maybe)
  1492. (org-get-checkbox-statistics-face): New functions.
  1493. (org-update-checkbox-count): New command.
  1494. (org-insert-item, org-toggle-checkbox): Call
  1495. `org-update-checkbox-count-maybe'.
  1496. (org-export-as-html): XEmacs compatibility for coding system.
  1497. (org-force-cycle-archived): New command.
  1498. (org-cycle-hide-archived-subtrees): Display message when ARCHIVE
  1499. overrules cycling.
  1500. (org-fix-position-after-promote): If the line contains only a todo
  1501. keyword, add a final space.
  1502. (org-promote-subtree, org-demote-subtree): Call
  1503. `org-fix-position-after-promote'.
  1504. * orgcard.tex (section{Archiving}): Document C-TAB.
  1505. (section{TODO Items and Checkboxes}): Checkbox keys moved to this
  1506. section, added documentation for the key `C-c #'.
  1507. * org.texi (ARCHIVE tag): Document C-TAB for forcing cycling of
  1508. archived trees.
  1509. (Checkboxes): Section moved to chapter 5, and extended.
  1510. (The date/time prompt): New section.
  1511. (Link abbreviations): New section.
  1512. (Presentation and sorting): New section.
  1513. (Custom agenda views): Section completely rewritten.
  1514. (Summary): Compare with Planner.
  1515. (Feedback): More info about creating backtraces.
  1516. (Plain lists): Modified example.
  1517. (Breaking down tasks): New section.
  1518. (Custom time format): New section.
  1519. (Time stamps): Document inactive timestamps.
  1520. (Setting tags): More details about fast tag selection.
  1521. (Block agenda): New section.
  1522. (Custom agenda views): Section rewritten.
  1523. (Block agenda): New section.
  1524. ----------------------------------------------------------------------
  1525. installed as 4.44
  1526. 2006-08-15 Carsten Dominik <dominik@science.uva.nl>
  1527. * org.el (org-clock-special-range, org-clock-update-time-maybe):
  1528. New functions.
  1529. (org-stamp-time-of-day-regexp): Allow weekday to be of word chars,
  1530. not only a-z.
  1531. (org-agenda-get-blocks): Allow multiple blocks per headline.
  1532. (org-timestamp-change): Call `org-clock-update-time-maybe'.
  1533. (org-export-html-title-format)
  1534. (org-export-html-toplevel-hlevel): New options.
  1535. (org-export-language-setup): Added support for Czech.
  1536. (org-mode, org-insert-todo-heading, org-find-visible)
  1537. (org-find-invisible, org-invisible-p, org-invisible-p2)
  1538. (org-back-to-heading, org-on-heading-p, org-up-heading-all)
  1539. (org-show-subtree, org-show-entry, org-make-options-regexp):
  1540. Removed compatibility support for old outline-mode.
  1541. (org-check-occur-regexp): Funtion removed.
  1542. (org-on-heading-p, org-back-to-heading): Made defalias.
  1543. (org-set-local): New defsubst.
  1544. (org-set-regexps-and-options, org-mode)
  1545. (org-set-font-lock-defaults, org-edit-agenda-file-list)
  1546. (org-timeline, org-agenda-list, org-todo-list, org-tags-view)
  1547. (org-remember-apply-template, org-table-edit-field)
  1548. (org-table-edit-formulas, orgtbl-mode, org-export-as-ascii)
  1549. (org-set-autofill-regexps): Use `org-set-local'.
  1550. (org-table-eval-formula): Fixed bug with parsing of display flags.
  1551. ----------------------------------------------------------------------
  1552. installed as 4.43
  1553. 2006-07-07 Carsten Dominik <dominik@science.uva.nl>
  1554. * org.texi (Exporting): Document `C-c C-e' as the prefix for
  1555. exporting commands.
  1556. (Global TODO list): Document the use of the variables
  1557. `org-agenda-todo-ignore-scheduled' and
  1558. `org-agenda-todo-list-sublevels'.
  1559. * org.el (org-agenda-get-todos): Skip subtree also if entry is
  1560. skipped because it has been scheduled.
  1561. (org-prepare-agenda-buffers): Don't mark buffers as modified when
  1562. changing `:org-archived' and `:org-comment' properties.
  1563. ----------------------------------------------------------------------
  1564. installed as 4.42
  1565. 2006-07-03 Carsten Dominik <dominik@science.uva.nl>
  1566. * org.el (org-mode): Removed no invalid settings for calc embedded
  1567. mode.
  1568. (org-mode-p): New defsubst.
  1569. (org-save-all-org-buffers): New function.
  1570. (org-first-headline-recenter): Enclose outline-regexp in group
  1571. delimiters.
  1572. * org.texi (Agenda commands): Document `s' key to save all
  1573. org-mode buffers.
  1574. * orgcard.tex (section{Agenda Views}): Document `s' key to save
  1575. all org-mode buffers.
  1576. ----------------------------------------------------------------------
  1577. installed as 4.41
  1578. 2006-06-29 Carsten Dominik <dominik@science.uva.nl>
  1579. * org.texi (Checkboxes): New section.
  1580. * orgcard.tex (section{Structure Editing}): Document checkbox
  1581. toggling.
  1582. * org.el (org-prepare-agenda-buffers): Use `invisible-OK' argument
  1583. for `org-end-of-subtree'.
  1584. (org-export-cleanup-toc-line): Renamed from
  1585. `org-html-cleanup-toc-line'.
  1586. (org-beginning-of-item): Fixed bug in regular expression for white
  1587. line.
  1588. (org-export-as-html): Enforce space after bullet in plain list
  1589. items.
  1590. 2006-06-28 Carsten Dominik <dominik@science.uva.nl>
  1591. * org.el (org-set-autofill-regexps): Require space after plain
  1592. list bullet for paragraph-start.
  1593. (org-ts-regexp3): New constant.
  1594. (org-at-timestamp-p): New optional argument ALSO-INACTIVE.
  1595. (org-timestamp-up-day, org-timestamp-down-day)
  1596. (org-timestamp-change): Work with inactive timestamps.
  1597. (org-ts-regexp1): Don't allow brackets in time stamps.
  1598. ----------------------------------------------------------------------
  1599. installed as 4.40
  1600. 2006-06-28 Carsten Dominik <dominik@science.uva.nl>
  1601. * org.el (org-context): New contexts :item-bullet, :latex-fragment,
  1602. :latex-preview.
  1603. (org-overlays-at, org-overlay-start, org-overlay-end): New
  1604. compatibility functions.
  1605. 2006-06-27 Carsten Dominik <dominik@science.uva.nl>
  1606. * org.el (org-inside-LaTeX-fragment-p): More accurate matching,
  1607. using the exact regexp that will be used during export.
  1608. (org-latex-regexps): New variable.
  1609. (org-cdlatex-mode): Improved advice for `texmathp'.
  1610. (turn-on-org-cdlatex): New function.
  1611. ----------------------------------------------------------------------
  1612. installed as 4.39
  1613. 2006-06-23 Carsten Dominik <dominik@science.uva.nl>
  1614. * org.el (org-cdlatex-mode-map)
  1615. (org-cdlatex-texmathp-advice-is-done): New variables.
  1616. (org-cdlatex-mode): New minor mode.
  1617. (org-inside-LaTeX-fragment-p, org-try-cdlatex-tab): New
  1618. functions.
  1619. (org-cdlatex-underscore-caret, org-cdlatex-math-modify): New
  1620. commands.
  1621. (org-export-with-archived-trees): New option.
  1622. (org-open-file): Removed the call to
  1623. `convert-standard-filename'.
  1624. (org-archive-tag, org-agenda-skip-archived-trees)
  1625. (org-cycle-open-archived-trees)
  1626. (org-sparse-tree-open-archived-trees): New options.
  1627. (org-cycle-hide-archived-subtrees, org-hide-archived-subtrees)
  1628. (org-toggle-tag, org-prepare-agenda-buffers, org-agenda-skip): New
  1629. functions.
  1630. (org-agenda-toggle-archive-tag, org-toggle-archive-tag): New
  1631. commands.
  1632. (org-agenda-mode-map): Add binding of
  1633. `org-agenda-toggle-archive-tag'.
  1634. (org-mode-map): Add binding for `org-toggle-archive-tag'.
  1635. (org-timeline, org-agenda-list, org-todo-list, org-tags-view):
  1636. Call `org-prepare-agenda-buffers'.
  1637. (org-occur, org-scan-tags): Call `org-hide-archived-subtrees'.
  1638. (org-file-apps, org-file-apps-defaults-gnu)
  1639. (org-file-apps-defaults-macosx)
  1640. (org-file-apps-defaults-windowsnt): Handle remote files by forcing
  1641. them to be opened in Emacs.
  1642. * orgcard.tex (section{LaTeX and cdlatex-mode}): New section.
  1643. * org.texi (Embedded LaTeX): New chapter.
  1644. (Archiving): Section rewritten.
  1645. (Enhancing text): Some parts moved to the new chapter about
  1646. LaTeX.
  1647. ----------------------------------------------------------------------
  1648. installed as 4.38
  1649. 2006-06-18 Carsten Dominik <dominik@science.uva.nl>
  1650. * org.texi (Publishing links): Document the
  1651. `:link-validation-function' property.
  1652. (Extensions and Hacking): New chapter, includes some sections of
  1653. the "Miscellaneous" chapter.
  1654. * orgcard.tex (section{Clocking Time}): Add new clocking commands.
  1655. (section{Structure Editing}): Add global archiving command.
  1656. * org.el Require noutline, also on XEmacs.
  1657. (org-end-of-subtree): Return point.
  1658. (org-dblock-start-re, org-dblock-end-re): New constants.
  1659. (org-create-dblock, org-prepare-dblock, org-map-dblocks)
  1660. (org-dblock-update, org-update-dblock, org-beginning-of-dblock)
  1661. (org-update-all-dblocks, org-find-dblock): New functions.
  1662. (org-collect-clock-time-entries): New function.
  1663. (org-html-handle-time-stamps): Never export CLOCK timeranges.
  1664. (org-fixup-indentation): Modified to deadl correctly with lines
  1665. starting with TAB. Only one argument DIFF now.
  1666. (org-demote, org-promote): Call `org-fixup-indentation' with just
  1667. one argument, DIFF.
  1668. (org-mode): Don't mark buffer as modified when aligning tables.
  1669. (org-clock-sum): Don't makr buffer modified when adding time sum
  1670. properties.
  1671. (org-export-as-html): Added support for a link validation
  1672. function.
  1673. (org-archive-all-done): New function.
  1674. (org-archive-subtree): New prefix argument. When set, archive all
  1675. done subtrees in this buffer.
  1676. (org-remove-clock-overlays)
  1677. (org-remove-occur-highlights): Use
  1678. `org-inhibit-highlight-removal'.
  1679. (org-inhibit-highlight-removal): New variable, for dyn amic
  1680. scoping.
  1681. (org-put-clock-overlay): Don't swallow last headline character
  1682. when displaying overlay.
  1683. (org-store-link): Link to `image-mode' with just the file name.
  1684. ----------------------------------------------------------------------
  1685. installed as 4.37
  1686. 2006-06-10 Carsten Dominik <dominik@science.uva.nl>
  1687. * org.el (org-agenda-mode-map): Add bindings for clocking
  1688. functions.
  1689. (org-agenda-clock-in, org-check-running-clock)
  1690. (org-clock-out-if-current, org-remove-clock-overlays)
  1691. (org-put-clock-overlay): New functions.
  1692. (org-clock-marker, org-clock-file-total-minutes)
  1693. (org-clock-overlays): New variables
  1694. (org-clock-display, org-clock-sum, org-clock-cancel)
  1695. (org-clock-out, org-clock-in): New commands.
  1696. (org-export): New function.
  1697. (org-emph-re): New constant.
  1698. (org-set-emph-re, org-do-emphasis-faces): New functions.
  1699. (org-emphasis-regexp-components, org-emphasis-alist): New options.
  1700. (org-set-font-lock-defaults): Call `org-do-emphasis-faces'.
  1701. (org-export-html-convert-emphasize): Use the configurable
  1702. emphasis.
  1703. (org-cleaned-string-for-export): Make multiline emphasis visible
  1704. to the exporter. New optional argument PARAMETERS.
  1705. (org-export-as-html): Specify :emph-multiline parameter to
  1706. `org-cleaned-string-for-export'.
  1707. * org.texi (Progress logging): New section.
  1708. ----------------------------------------------------------------------
  1709. installed as 4.36
  1710. 2006-06-02 Carsten Dominik <dominik@science.uva.nl>
  1711. * org.el (org-archive-subtree): Use end-of-subtree as insertion
  1712. point and control the number of empty lines.
  1713. (org-paste-subtree): Limit the number of empty lines at the end of
  1714. the inserted tree.
  1715. (org-agenda): Use buffer name of current file for narrowing.
  1716. (org-export-as-xml): Command removed.
  1717. (org-export-xml-type): Option removed.
  1718. (org-mode-map): Call `org-export-as-xoxo' directly.
  1719. (org-get-indentation): New optional argument LINE.
  1720. (org-fix-indentation, org-remove-tabs): New functions.
  1721. (org-export-as-ascii, org-ascii-level-start): Determine and apply
  1722. correct indentation for headlines that are converted it items.
  1723. (org-skip-comments): Remove table lines that contain narrowing
  1724. cookies but no other non-empty fields.
  1725. (org-set-tags): Allow groups of mutually exclusive tags.
  1726. (org-cmp-time): Sort 24:21 before items without time.
  1727. (org-get-time-of-day): Fixed the interpretation of 12pm and 12am.
  1728. (org-open-at-point): Require double colon also for numbers.
  1729. * org.texi (ASCII export): Document indentation adaptation.
  1730. (Setting tags): Document mutually-exclusive tags.
  1731. ----------------------------------------------------------------------
  1732. installed as 4.35
  1733. 2006-05-30 Carsten Dominik <dominik@science.uva.nl>
  1734. * org.el (org-agenda-highlight-todo): Make sure regexp does only
  1735. match in the right place.
  1736. (org-upcoming-deadline): New face.
  1737. (org-agenda-get-deadlines): Use new face `org-upcoming-deadline'.
  1738. (org-export-ascii-underline): Renamed and made an option (was
  1739. constant `org-ascii-underline').
  1740. (org-export-ascii-bullets): New option.
  1741. (org-export-as-html): Many changes to emit valid XHTML.
  1742. (org-par-open): New variable.
  1743. (org-open-par, org-close-par-maybe, org-close-li-maybe): New
  1744. functions.
  1745. (org-html-do-expand, org-section-number): Fixedcase in
  1746. `replace-match'.
  1747. (org-timeline): Pass `org-timeline-show-empty-dates' to
  1748. `org-get-all-dates'. Interpret empty dates returned by
  1749. `org-get-all-dates'.
  1750. (org-get-all-dates): New argument EMPTY. Add dates without
  1751. entries to the list, mark large ranges of empty dates.
  1752. (org-point-in-group, org-context): New functions.
  1753. ----------------------------------------------------------------------
  1754. installed as 4.34
  1755. 2006-05-26 Carsten Dominik <dominik@science.uva.nl>
  1756. * org.el (org-next-item, org-previous-item): Emit more compact
  1757. error message.
  1758. (org-tags-view): Refresh category table in each file.
  1759. (org-table-justify-field-maybe): Removed superfluous arguments to
  1760. `format'.
  1761. (org-export-as-html): Insert "<p>" before postamble.
  1762. (org-paste-subtree, org-kill-is-subtree-p): Check for empty kill
  1763. ring.
  1764. ---------------------------------------------------------------------
  1765. installed as 4.33
  1766. 2006-05-23 Carsten Dominik <dominik@science.uva.nl>
  1767. * org.el (org-open-at-point): Use renamed variable
  1768. `org-confirm-shell-link-function'.
  1769. (org-confirm-shell-link-function): Renamed from
  1770. `org-confirm-shell-links'.
  1771. (org-export-directory): New function.
  1772. (org-export-as-ascii, org-export-as-html, org-export-as-xoxo)
  1773. (org-export-icalendar): Use `org-export-directory'.
  1774. (org-indent-item): Keep cursor position.
  1775. (org-link-file-path-type): New option.
  1776. (org-export-as-html): Fixed bug with plain lists starting in
  1777. column 0.
  1778. (org-export-as-html): Removed deadline formatting, this happens
  1779. now already in `org-html-handle-time-stamps'.
  1780. (org-export-html-style): Deadline class removed.
  1781. (org-insert-labeled-timestamps-at-point): New option.
  1782. (org-cycle, org-occur, org-scan-tags): Use `org-overview' instead
  1783. of `hide-sublevels 1', in case the first headline is not level 1.
  1784. (org-overview, org-content): New fuction.
  1785. (org-cycle-global-status, org-cycle-subtree-status): Make these
  1786. variables buffer-local.
  1787. (org-global-cycle): New command.
  1788. (org-shifttab): Use `org-global-cycle'.
  1789. (org-insert-heading, org-insert-item): Go to end of new
  1790. headline/item after creating it.
  1791. (org-export-visible): Renames from `org-export-copy-visible'. Now
  1792. creates a temporary org-file and applies an exporting command to
  1793. it.
  1794. (org-table-eval-formula): Support for lisp forms.
  1795. (org-agenda-todo-ignore-scheduled): New option.
  1796. (org-agenda-get-todos): Use new option
  1797. `org-agenda-todo-ignore-scheduled'.
  1798. (org-export-html-inline-images): New value `maybe'.
  1799. (org-export-as-html): Inlining of images dependent on link
  1800. description.
  1801. (org-archive-subtree): Check for end-of-buffer before trying
  1802. `kill-line'.
  1803. (org-agenda-follow-mode): New option.
  1804. (org-export-with-tags, org-export-with-timestamps): New options.
  1805. (org-html-handle-time-stamps): New function.
  1806. (org-keyword-time-regexp): New variable.
  1807. (org-agenda-get-todos): Use `org-agenda-todo-list-sublevels'.
  1808. (org-agenda-todo-list-sublevels): New option.
  1809. (org-html-level-start): When TITLE is nil, just close all levels.
  1810. (org-parse-key-lines, org-parse-export-options): Functions
  1811. removed, replaced by `org-infile-export-plist'.
  1812. (org-combine-plists, org-infile-export-plist)
  1813. (org-default-export-plist): New functions.
  1814. (org-export-html-preamble, org-export-html-postamble)
  1815. (org-export-html-auto-preamble, org-export-html-auto-postamble):
  1816. New variables.
  1817. (org-export-publishing-directory): New option.
  1818. (org-export-as-html, org-export-as-ascii): Use the new property
  1819. lists for settings.
  1820. (org-export-copy-visible, org-export-as-xoxo): Respect
  1821. `org-export-publishing-directory'.
  1822. (org-link-search, org-store-link, org-file-apps): Support for
  1823. links to BibTeX database entries..
  1824. (org-get-current-options, org-set-regexps-and-options): Implement
  1825. logging as a startup option.
  1826. (org-store-link): Make sure context string is never empty
  1827. (org-insert-link): Use relative path when possible.
  1828. (org-at-item-checklet-p): New function.
  1829. (org-shifttab, org-shiftmetaleft, org-shiftmetaright)
  1830. (org-shiftmetaup, org-shiftmetadown, org-metaleft)
  1831. (org-metaright, org-metaup, org-metadown, org-shiftup)
  1832. (org-shiftdown, org-shiftright, org-shiftleft)
  1833. (org-ctrl-c-ctrl-c, org-cycle, org-return, org-meta-return):
  1834. Dispatch using `call-interactively'.
  1835. (org-call-with-arg): New defsubst.
  1836. (org-tag-alist, org-use-fast-tag-selection): New options.
  1837. (org-complete): Use `org-tag-alist'.
  1838. (org-fast-tag-insert, org-fast-tag-selection): New functions.
  1839. (org-next-item, org-previous-item): New commands.
  1840. (org-beginning-of-item, org-end-of-item): Added (interactive) to
  1841. make command.
  1842. (org-shiftup, org-shiftdown): Accommodate the item-navigation commands.
  1843. * org.texi (Plain lists): Added new item navigation commands.
  1844. (External links): Documented elisp and info links.
  1845. * orgcard.tex (section{Motion}): Added the item navigation
  1846. commands.
  1847. (section{Publishing}): New section.
  1848. (section{Links}): Documented elisp and shell links.
  1849. (Custom searches): New section.
  1850. (Publishing): New chapter.
  1851. (HTML export): Include a list of supported CSS classes.
  1852. (Setting tags): Describe the fast-tag-setting interface.
  1853. ----------------------------------------------------------------------
  1854. installed as 4.26
  1855. 2006-04-21 Carsten Dominik <dominik@science.uva.nl>
  1856. * org.texi Many small fixes.
  1857. (Handling links): Renamed from "Managing links".
  1858. * org.el (org-mode-map): Catch conflict with old allout.el.
  1859. (org-open-at-point): Remove the "...done" message to keep
  1860. output in the echo area visible.
  1861. ----------------------------------------------------------------------
  1862. installed as 4.25
  1863. 2006-04-19 Carsten Dominik <dominik@science.uva.nl>
  1864. * org.el (org-deadline-announce): Face removed.
  1865. (org-level-faces, org-n-levels): Converted to constant.
  1866. (org-compatible-face): New function.
  1867. (org-hide, org-level-1, org-level-2, org-level-3, org-level-4)
  1868. (org-level-5, org-level-6, org-level-7, org-level-8)
  1869. (org-special-keyword, org-warning, org-headline-done, org-link)
  1870. (org-date, org-tag, org-todo, org-done, org-table, org-formula)
  1871. (org-scheduled-today, org-scheduled-previously, org-time-grid):
  1872. Face definition revised for better color tty support.
  1873. (org-bold-re, org-italic-re, org-underline-re): New constants.
  1874. (org-set-font-lock-defaults): Use the new constants.
  1875. (org-agenda-highlight-todo): New function.
  1876. (org-agenda-todo): Fixed bug with point at end of line.
  1877. (org-agenda-change-all-lines, org-finalize-agenda-entries):
  1878. Fontify TODO keywords.
  1879. (org-insert-link): Preserve relative path in ../ links.
  1880. (org-export-as-html): Convert links pointing to .org files into
  1881. links that will work beteen the exported HTML files.
  1882. (org-todo-list): Fix bug when arg=0.
  1883. (org-insert-heading): More fine-tuning.
  1884. * org.texi (Time stamps): Better explanation of the purpose of
  1885. different time stamps.
  1886. ----------------------------------------------------------------------
  1887. installed as 4.24
  1888. * org.texi (Formula syntax): Fixed link to Calc Manual.
  1889. * org.el (org-insert-heading): Insert heading before current if at
  1890. beginning of line.
  1891. (org-todo, org-date): New faces.
  1892. (org-table-align): Make sure tooltip window contains full text.
  1893. (org-no-properties): New defsubst.
  1894. (org-set-font-lock-defaults): Use new faces.
  1895. ----------------------------------------------------------------------
  1896. installed as 4.23
  1897. * org.texi (Visibility cycling): Better names for the startup
  1898. folding options.
  1899. (Exporting): Completely restructured.
  1900. (The very busy C-c C-c key): New section.
  1901. (Summary of in-buffer settings): New section.
  1902. * org.el (org-set-regexps-and-options, org-get-current-options):
  1903. Better names for the startup folding options.
  1904. ----------------------------------------------------------------------
  1905. installed as 4.22
  1906. 2006-04-13 Carsten Dominik <dominik@science.uva.nl>
  1907. * org.el (org-ctrl-c-ctrl-c): Improved documentation string.
  1908. (org-agenda-mouse-1-follows-link)
  1909. (org-mouse-1-follows-link): New options.
  1910. (org-format-agenda-item): Fixed bug if TAGS is nil.
  1911. (org-agenda-get-scheduled): Quote `priority' symbol in plist.
  1912. * org.texi (Updating settings): New section.
  1913. ----------------------------------------------------------------------
  1914. installed as 4.21
  1915. 2006-04-11 Carsten Dominik <dominik@science.uva.nl>
  1916. * org.texi (Link format): New section, emphasis on bracket links.
  1917. (External links): Document bracket links.
  1918. (FAQ): Expanded to cover shell links and the new link format.
  1919. * orgcard.tex (section{Tables}): Document column narrowing.
  1920. (section{Links}): Document bracket links.
  1921. * org.el
  1922. (org-export-plain-list-max-depth)
  1923. (org-table-spaces-around-separators)
  1924. (org-radio-targets, org-activate-camels)
  1925. (org-table-spaces-around-invisible-separators): Options removed.
  1926. (org-time-stamp-rounding-minutes, org-remember-templates)
  1927. (org-ellipsis, org-activate-links, org-descriptive-links): New
  1928. options.
  1929. (org-remember-apply-template, org-current-time)
  1930. (org-finish-edit-table-field)
  1931. (org-link-unescape, org-link-escape)
  1932. (org-string-width, org-table-clean-line, org-html-do-expand)
  1933. (org-edit-agenda-file-list, org-store-new-agenda-file-list)
  1934. (org-read-agenda-file-list): New functions.
  1935. (org-table-edit-field)
  1936. (org-table-create-or-convert-from-region): New commands
  1937. (org-table-toggle-vline-visibility): Command removed.
  1938. (org-table-convert-region): Made a command.
  1939. (orgtbl-deleta-backward-char,orgtbl-delete-char): Commands
  1940. removed, replaced with the normal org- functions.
  1941. (org-self-insert-command): Don't trigger realign unnecessarily
  1942. when blanking a field that is not full.
  1943. (org-mode): `Set buffer-invisibility-spec' for links.
  1944. (org-activate-links2): Hide link part and only show descriptive
  1945. part of the link.
  1946. (org-insert-link): Modified for new linking system.
  1947. (org-store-link): Store description separately, for use by
  1948. `org-insert-link'.
  1949. (org-table-align): Use `org-string-width'.
  1950. (defgroup): Completely new group structure for custom variables.
  1951. (org-agenda-files): Option: Single file name allowed. Function:
  1952. Optional argument unrestrited means ignore any restricitons.
  1953. (org-install-agenda-files-menu): Find a buffer in Org-mode before
  1954. trying to modify the menu. Use generalized access to
  1955. `org-agenda-files.'
  1956. (org-agenda-list, org-todo-list, org-cycle-agenda-files)
  1957. (org-agenda-file-to-front, org-remove-file, org-diary)
  1958. (org-tags-view, org-export-icalendar-all-agenda-files)
  1959. (org-export-icalendar-combine-agenda-files): Use generalized
  1960. access to `org-agenda-files'.
  1961. (org-remember-handler): Correctly preserve heading if present.
  1962. (org-table-insert-row, org-table-insert-hline): Deal with
  1963. invisible characters.
  1964. ----------------------------------------------------------------------
  1965. installes as 4.13
  1966. -------------------------------------------------------------------
  1967. installed as 4.10
  1968. 2006-03-14 Carsten Dominik <dominik@science.uva.nl>
  1969. * org.el (org-insert-centered): Use `string-width' to make
  1970. underlining work for wide characters.
  1971. 2006-03-13 Carsten Dominik <dominik@science.uva.nl>
  1972. * org.el (org-goto-map, org-agenda-mode-map, org-mode-map):
  1973. Explicitly bind TAB to `org-cycle', to make sure that no binding
  1974. in `outline-mode-map' can supercede it.
  1975. --------------------------------------------------------------
  1976. installed as 4.09
  1977. 2006-03-13 Carsten Dominik <dominik@science.uva.nl>
  1978. * org.el (org-link-search): Avoid self-matching of links, allow
  1979. target text to be distributed over several lines.
  1980. (org-search-not-link): New function.
  1981. (org-set-regexps-and-options, org-get-current-options): New
  1982. startup options.
  1983. (org-export-as-html): Take odd-level setting from local variable.
  1984. (org-fontify-emphasized-text): New option.
  1985. (org-set-font-lock-defaults): Include emphasized text.
  1986. (org-follow-mhe-link): Allow folder-only links, fix folder name.
  1987. (org-font-lock): Customize group renamed from `org-faces'.
  1988. * org.texi (Clean view): Startup options documented.
  1989. --------------------------------------------------------------
  1990. installed as 4.08
  1991. 2006-03-07 Carsten Dominik <dominik@science.uva.nl>
  1992. * org.el Move defvars out of eval-when-compile. Use
  1993. buffer-file-name variable.
  1994. (org-agenda-file-to-end, org-agenda-file-to-front): Remove unused
  1995. arg `file'.
  1996. (org-level-faces): Remove startup dependency.
  1997. (org-cycle, org-map-tree, org-scan-tags)
  1998. (org-remember-handler): Don't call `outline-level' directly.
  1999. (org-mhe-search-all-folders): New option.
  2000. (org-mhe-get-message-folder-from-index,
  2001. org-mhe-get-message-folder): Fix indexing search.
  2002. (org-format-agenda-item): Handle nil TAGS argument.
  2003. (org-cleaned-string-for-export, org-activate-target-links)
  2004. (org-make-target-link-regexp): Deal with empty radio target list.
  2005. (org-tag): New face.
  2006. (org-get-level-face): New function.
  2007. (org-set-font-lock-defaults): Simplify setup for headlines.
  2008. (org-complete): Pass common substring to `display-completion-list'.
  2009. --------------------------------------------------------------
  2010. installed as 4.07
  2011. 2006-02-28 Carsten Dominik <dominik@science.uva.nl>
  2012. * org.el (org-get-legal-level, org-tr-level): New functions.
  2013. (org-odd-levels-only): New option.
  2014. (org-level-faces, org-paste-subtree, org-convert-to-odd-levels,
  2015. org-demote, org-promote): Deal with double-star levels.
  2016. (org-convert-to-odd-levels): New command.
  2017. (org-tr-level):
  2018. * org.el (org-export-as-html): Fixed bugs in HTML
  2019. formatting (removed nested achors).
  2020. (org-all-targets): Fixed bug with XEmacs compatibility.
  2021. (org-read-date): Add (require 'parse-time).
  2022. (org-set-tags): Fixed bug with extra inserted space.
  2023. (org-export-html-style): Define a style class for targets.
  2024. (org-agenda-keymap, org-mouse-map): Added a binding for
  2025. `follow-link'.
  2026. (org-hide-leading-stars): New option.
  2027. (org-hide): New face.
  2028. (org-set-font-lock-defaults): Allow to hide leading stars.
  2029. * org.texi (Interaction): Added item about `org-mouse.el' by Piotr
  2030. Zielinski.
  2031. (Managing links, Managing links): Documented that also mouse-1 can
  2032. be used to activate a link.
  2033. (Headlines, FAQ): Added entry about hiding leading stars.
  2034. --------------------------------------------------------------------------
  2035. installed as 4.06
  2036. 2006-02-23 Carsten Dominik <dominik@science.uva.nl>
  2037. * org.el (org-cleaned-string-for-export, org-solidify-link-text):
  2038. New function.
  2039. (org-add-hook): Use `add-local-hook' instead of `make-local-hook'
  2040. for XEmacs, just to silence the compiler.
  2041. (org-export-as-ascii, org-export-as-html-and-open): Use
  2042. `org-cleaned-string-for-export' and create internal links.
  2043. (org-follow-mhe-link): Require mh-e, use folder.
  2044. (org-read-date):
  2045. --------------------------------------------------------------------------
  2046. Installed as 4.05
  2047. 2006-02-21 Carsten Dominik <dominik@science.uva.nl>
  2048. * org.el (org-mark-ring-previous, org-mark-ring-set): New
  2049. commands.
  2050. (org-mark-ring): New variable.
  2051. (org-mark-ring-length): New option.
  2052. (org-open-at-point, org-goto, org-open-file): Push old position
  2053. onto the mark ring.
  2054. (org-add-hook): New function.
  2055. (org-export-table-remove-special-lines): New option.
  2056. (org-skip-comments, org-format-org-table-html): Respect new option
  2057. `org-export-table-remove-special-lines'.
  2058. (org-open-file): Allow special command configuration for
  2059. directory link.
  2060. (org-file-apps): Fixed bugs in customize type, added setting for
  2061. directories.
  2062. (org-activate-tags, org-format-agenda-item, org-complete)
  2063. (org-get-tags-at, org-scan-tags, org-make-tags-matcher)
  2064. (org-get-tags, org-get-buffer-tags, org-open-at-point)
  2065. (org-link-search, org-make-org-heading-search-string)
  2066. (org-make-org-heading-camel): Allow @ and 0-9 as tags characters.
  2067. (org-radio-targets, org-file-link-context-use-camel-case)
  2068. (org-activate-camels): New options.
  2069. (org-update-radio-target-regexp, org-all-targets)
  2070. (org-make-target-link-regexp, org-activate-target-links): New
  2071. functions.
  2072. (org-make-org-heading-search-string): New function.
  2073. (org-store-link, org-insert-link): Use new option
  2074. `org-file-link-context-use-camel-case'.
  2075. (org-activate-camels): Use new option `org-activate-camels'.
  2076. (org-link-regexp): Added mhe prefix.
  2077. (org-open-at-point,org-store-link): Support for mhe links.
  2078. (org-mhe-get-message-id, org-mhe-get-message-folder)
  2079. (org-mhe-get-header,org-follow-mhe-link): New functions.
  2080. (org-remove-angle-brackets, org-add-angle-brackets): New
  2081. functions.
  2082. (org-bracked-link-regexp): New constant.
  2083. (org-read-date): Fixed bug that was rejecting all typed dates.
  2084. (org-link-search): Make hierarchy above visible after a match.
  2085. (org-follow-bbdb-link): Inhibit electric mode for BBDB.
  2086. (org-store-link): Fixed bug with link creation when cursor is in
  2087. an empty line.
  2088. (org-open-at-point): Fixed bug with matching a link. Fixed buggy
  2089. argument sequence in call to `org-view-tags'.
  2090. (org-compile-prefix-format): Set `org-prefix-has-tag'.
  2091. (org-prefix-has-tag): New variable.
  2092. (org-format-agenda-item): Remove tags from headline if
  2093. appropriate.
  2094. (org-agenda-remove-tags-when-in-prefix): New option.
  2095. * org.texi (Internal Links): Rewritten to cover the modified
  2096. linking system.
  2097. * orgcard.tex (section{Links}): Rewritten to cover the modified
  2098. link system.
  2099. (section{TODO Items}): Shortened to make space for more links
  2100. stuff.
  2101. ----------------------------------------------------------------------
  2102. installed as 4.03
  2103. 2006-01-13 Carsten Dominik <dominik@science.uva.nl>
  2104. * org.texi (Agenda commands): Document tags command.
  2105. * org.el (org-open-file): Use mailcap for selecting an
  2106. application.
  2107. (org-file-apps-defaults-gnu): Use mailcap as the default for
  2108. selecting an application on a UNIX system.
  2109. (org-agenda-show-tags): New command.
  2110. (org-table-insert-hline): Keep cursor in current table
  2111. line.
  2112. (org-table-convert): Offset effect of modifying
  2113. `org-table-insert-hline'.
  2114. (org-format-agenda-item): New optional argument TAG.
  2115. (org-compile-prefix-format): Handle %T format for the tag.
  2116. (org-expand-wide-chars): New function.
  2117. (org-table-insert-row, org-table-insert-hline): Use
  2118. `org-expand-wide-chars'.
  2119. (org-open-file): Fixed bug in program launch.
  2120. (org-get-time-of-day): Fixed bug with times before 1am.
  2121. (org-agenda-menu): Addes tags commands.
  2122. -----------------------------------------------------------------------
  2123. installed as 4.02
  2124. 2006-01-02 Carsten Dominik <dominik@science.uva.nl>
  2125. * org.el (org-end-of-subtree): New function.
  2126. (org-cycle, org-subtree-end-visible-p, org-scan-tags): Use
  2127. `org-end-of-subtree'.
  2128. (org-agenda, org-agenda-convert-date): Protect calls to
  2129. `fit-window-to-buffer'.
  2130. (org-tags-view): Force matching of sublevels when doing a
  2131. todo-only search. Define the correct redo command, including the
  2132. arguments.
  2133. (org-agenda-redo): Display message.
  2134. (org-check-for-org-mode): New function.
  2135. (org-agenda-type): New variable.
  2136. (org-timeline, org-agenda-list, org-todo-list, org-tags-view): Set
  2137. `org-agenda-type'.
  2138. (org-agenda-check-type): New function.
  2139. (org-agenda-goto-today, org-agenda-later, org-agenda-earlier)
  2140. (org-agenda-week-view, org-agenda-day-view)
  2141. (org-agenda-next-date-line, org-agenda-previous-date-line)
  2142. (org-agenda-log-mode, org-agenda-toggle-diary)
  2143. (org-agenda-toggle-time-grid, org-agenda-date-later)
  2144. (org-agenda-date-prompt, org-agenda-diary-entry)
  2145. (org-agenda-execute-calendar-command, org-agenda-goto-calendar)
  2146. (org-agenda-convert-date, org-agenda-menu): Use
  2147. `org-agenda-check-type'.
  2148. (org-make-overlay, org-delete-overlay)
  2149. (org-detatch-overlay, org-move-overlay, org-overlay-put): New
  2150. compatibility functions.
  2151. (org-calendar-select-mouse): New command.
  2152. * org.texi (Agenda Views): Chapter reorganized.
  2153. ------------------------------------------------------------------------
  2154. installed as 4.01
  2155. 2005-12-19 Carsten Dominik <dominik@science.uva.nl>
  2156. * org.texi (Tags): Booolean logic documented.
  2157. (Agenda Views): Document custom commands.
  2158. * org.el (org-agenda-custom-commands): New option.
  2159. (org-agenda): Offer custom commands on splash screen.
  2160. (org-make-tags-matcher): Parser for Boolean logic added.
  2161. (org-agenda-set-tags): New command.
  2162. (org-agenda-menu, org-agenda-mode-map): Add `org-agenda-set-tags'.
  2163. (org-set-tags): Efficiency improvements.
  2164. (org-auto-align-tags): New option.
  2165. (org-todo, org-demote, org-promote): Realign tags.
  2166. (org-tags-completion-function): Use also "&" and "|" as
  2167. separators.
  2168. (org-org-menu): Agenda commands simplified.
  2169. ---------------------------------------------------------------------------
  2170. installed as 4.00
  2171. 2005-12-16 Carsten Dominik <dominik@science.uva.nl>
  2172. * org.el (org-tags-match-list-sublevels): New option.
  2173. (org-open-at-point): implement tag searches as links
  2174. (org-fit-agenda-window, org-get-buffer-tags, org-get-tags)
  2175. (org-make-tags-matcher, org-scan-tags, org-activate-tags): New
  2176. functions
  2177. (org-tags-sparse-tree, org-tags-view, org-set-tags)
  2178. (org-agenda-dispatch): New commands.
  2179. (org-use-tag-inheritance, org-tags-column): New options.
  2180. (org-tab-follows-link, org-return-follows-link): New options.
  2181. (org-tags): New customize group.
  2182. (org-start-icalendar-file): Get local time zone.
  2183. (org-tags-completion-function): New function.
  2184. (org-set-font-lock-defaults): make sure links will also
  2185. be highlighted inside headlines.
  2186. * org.texi (Tags): New section.
  2187. (Agenda Views): Chapter reorganized.
  2188. ------------------------------------------------------------------------
  2189. installed as 3.24
  2190. 2005-12-12 Carsten Dominik <dominik@science.uva.nl>
  2191. * org.el (org-agenda, org-timeline, org-todo): Implement Logging
  2192. and the keep-modes setting.
  2193. (org-get-category): Make sure a string is returned.
  2194. (org-log-done): New function.
  2195. ------------------------------------------------------------------------
  2196. installed as 3.23
  2197. 2005-12-06 Carsten Dominik <dominik@science.uva.nl>
  2198. * org.el (org-insert-heading): Try to do items before headings.
  2199. (org-agenda-mode): Quote `org-agenda-mode-hook'.
  2200. (org-insert-item): New function.
  2201. (org-renumber-ordered-list): Don't skip to higher level lists.
  2202. ----------------------------------------------------------------------
  2203. installed as 3.22
  2204. 2005-12-05 Carsten Dominik <dominik@science.uva.nl>
  2205. * org.el (org-occur-highlights): New variable.
  2206. (org-highlight-new-match, org-remove-occur-highlights): New
  2207. functions.
  2208. (org-highlight-sparse-tree-matches): New option.
  2209. (org-do-occur): New function.
  2210. (org-get-heading): Make it work also at beginning of line.
  2211. (org-category-table): New variable.
  2212. (org-get-category-table, org-get-category)
  2213. (org-camel-to-words, org-link-search): New functions.
  2214. (org-select-this-todo-keyword): New variable.
  2215. (org-todo-list): New command.
  2216. (org-shiftright, org-shiftleft): New commands.
  2217. (org-agenda-todo): Added prefix argument.
  2218. (org-show-hierarchy-above): New option.
  2219. (org-show-todo-tree): Numerical prefix creates tree for specific
  2220. TODO keyword.
  2221. (org-outline-level): New function, to assign a level to plain
  2222. lists items.
  2223. (org-cycle-include-plain-lists): New option.
  2224. (org-mode): Use `org-outline-level' as value of `outline-level'.
  2225. (org-cycle): Temporarily switch `outline-regexp' if
  2226. `org-cycle-include-plain-lists' is non-nil.
  2227. (org-start-icalendar-file): Fixed format bug.
  2228. (org-agenda-get-day-entries): Create category table.
  2229. (org-agenda-get-todos, org-agenda-get-timestamps)
  2230. (org-agenda-get-deadlines, org-agenda-get-scheduled)
  2231. (org-agenda-get-blocks): Use `org-get-category'.
  2232. (org-context-in-file-links): Renamed from
  2233. `org-line-numbers-in-file-links' .
  2234. * org.texi (TODO basics): Document the global todo list.
  2235. (TODO items): Documents sparse tree for specific TODO
  2236. keywords.
  2237. ----------------------------------------------------------------------
  2238. installed as 3.21
  2239. 2005-11-23 Carsten Dominik <dominik@science.uva.nl>
  2240. * org.el (org-export-plain-list-max-depth): Renamed from
  2241. `org-export-local-list-max-depth'. Default values changed to 3.
  2242. (org-auto-renumber-ordered-lists,
  2243. org-plain-list-ordered-item-terminator): New options.
  2244. (org-at-item-p, org-beginning-of-item, org-end-of-item,
  2245. org-get-indentation, org-get-string-indentation,
  2246. org-maybe-renumber-ordered-list, org-renumber-ordered-list): New
  2247. functions.
  2248. (org-move-item-down, org-move-item-up): New commands.
  2249. (org-export-as-html): New classes for CSS support. Bug fix in
  2250. regular expression detecting fixed-width regions. Respect
  2251. `org-local-list-ordered-item-terminator'.
  2252. (org-set-autofill-regexps, org-adaptive-fill-function): "1)" is
  2253. also a list item.
  2254. (org-metaup, org-metadown, org-shiftmetaup, org-shiftmetadown):
  2255. New item moving functions added.
  2256. * org.texi (Structure editing): New item moving commands added.
  2257. (Plain Lists): New section.
  2258. ----------------------------------------------------------------------
  2259. installed as 3.20
  2260. 2005-11-16 Carsten Dominik <dominik@science.uva.nl>
  2261. * org.el (org-table-sort-lines): New command.
  2262. (org-tbl-menu): Add entry for `org-table-sort-lines'.
  2263. (org-add-file): Command removed, use `org-agenda-file-to-front'
  2264. instead.
  2265. (org-export-icalendar): Use `org-icalendar-combined-name'.
  2266. (org-cycle-agenda-files, org-agenda-file-to-end)
  2267. (org-agenda-file-to-front): New commands.
  2268. (org-table-tab-jumps-over-hlines,org-export-html-style): New
  2269. options.
  2270. (org-table-next-field): Use `org-table-tab-jumps-over-hlines'.
  2271. (org-at-table.el-p, org-set-autofill-regexps,org-html-protect):
  2272. New functions.
  2273. (org-fill-paragraph): Call `org-table-align' in tables.
  2274. (org-mode): Call `org-set-autofill-regexps'.
  2275. (org-export-as-html): Support for local handformatted lists.
  2276. Modified to produce valid HTML 4.0. Use `org-export-html-style'.
  2277. (org-export-local-list-max-depth): New option.
  2278. (org-html-expand): Use `org-html-protect'.
  2279. * org.texi (FAQ): Document `org-table-tab-jumps-over-hlines'.
  2280. (Agenda): Document commands `org-cycle-agenda-files' and
  2281. `org-agenda-file-to-front'
  2282. (Built-in table editor): Document `org-table-sort-lines'.
  2283. (HTML formatting): Export of hand-formatted lists.
  2284. ----------------------------------------------------------------------
  2285. installed as 3.19
  2286. 2005-10-28 Carsten Dominik <dominik@science.uva.nl>
  2287. * org.el (org-read-date, org-goto-calendar)
  2288. (org-recenter-calendar, org-agenda-goto-calendar): Temporarily
  2289. clear 'calendar-move-hook'.
  2290. ------------------------------------------------------------------------
  2291. installed as 3.18
  2292. 2005-10-19 Carsten Dominik <dominik@science.uva.nl>
  2293. * textmodes/org.el (org-combined-agenda-icalendar-file)
  2294. (org-icalendar-include-todo, org-icalendar-combined-name): New
  2295. options.
  2296. (org-export-icalendar-this-file)
  2297. (org-export-icalendar-all-agenda-files)
  2298. (org-export-icalendar-combine-agenda-files): New commands.
  2299. (org-export-icalendar, org-print-icalendar-entries)
  2300. (org-start-icalendar-file, org-finish-icalendar-file)
  2301. (org-ical-ts-to-string): New functions.
  2302. (org-read-date, org-goto-calendar)
  2303. (org-agenda-goto-calendar): Inhibit displaying diary entries by
  2304. call to `calendar'.
  2305. (orgtbl-setup): Removed the :keys arguments from the menu
  2306. description.
  2307. (org-after-save-iCalendar-file-hook): New variable.
  2308. * org.texi (Summary): Mention iCalendar support.
  2309. (Exporting): Document iCalendar support.
  2310. * orgcard.tex: Add iCalendar export keys.
  2311. ------------------------------------------------------------------------
  2312. installed as 3.17
  2313. 2005-10-10 Carsten Dominik <dominik@science.uva.nl>
  2314. * org.el (org-mode-map): Explicit definition of `C-c C-x' as a
  2315. prefix.
  2316. (orgtbl-mode-map): Full keymap instead of sparse, because all
  2317. `self-insert-command' keys are redifined in this map.
  2318. (org-export-as-html): Specify charset for HTML file, by taking it
  2319. from the codinf system.
  2320. * org.texi (Workflow states): Documented that change in keywords
  2321. becomes active only after restart of Emacs.
  2322. --------------------------------------------------------------------------
  2323. Installed as 3.16
  2324. 2005-09-21 Carsten Dominik <dominik@science.uva.nl>
  2325. * org.el (org-mode-map, orgtbl-mode-map): Move keybindings with
  2326. `C-c C-h' prefix to `C-c C-x' prefix. Make use of `remap' feature
  2327. when available. Additional key bindings for better tty support.
  2328. (org-mode-restart, org-force-self-insert): New commands.
  2329. (org-time-stamp-inactive): New command.
  2330. (org-remap): New function.
  2331. (org-table-auto-blank-field, org-level-color-stars-only): New
  2332. options.
  2333. (org-enable-fixed-width-editor): Moved to `org-structure'
  2334. customization group.
  2335. (org-self-insert-command, orgtbl-self-insert-command): Modified to
  2336. blank field after field motion commands.
  2337. ----------------------------------------------------------------------
  2338. installed as 3.15
  2339. 2005-08-30 Carsten Dominik <dominik@science.uva.nl>
  2340. * textmodes/org.el (org-special-keyword): New face.
  2341. (org-table-copy-down, org-table-eval-formula)
  2342. (org-table-recalculate, org-init-section-numbers): Use
  2343. `string-to-number' instead of `string-to-int'.
  2344. (org-get-location): Use `insert-buffer-substring' instead of
  2345. `insert-buffer'.
  2346. (org-modify-diary-entry-string): New function.
  2347. (org-get-entries-from-diary): Set the hook for
  2348. `add-to-diary-list'.
  2349. (org-disable-agenda-to-diary): renamed from `org-disable-diary'.
  2350. (org-toggle-fixed-width-section): Use QUOTE keyword if there is no
  2351. active region.
  2352. (org-export-as-html): Handle QUOTE keyword.
  2353. (org-quote-string): New option.
  2354. (org-bookmark-jump-unhide): New function, used for
  2355. `bookmark-after-jump-hook'.
  2356. (org-diary-default-entry): Apply only when not called through
  2357. `org-agenda'.
  2358. ----------------------------------------------------------------------
  2359. installed as 3.14
  2360. 2005-07-19 Carsten Dominik <dominik@science.uva.nl>
  2361. * org.el (org-table-column-names, org-table-column-name-regexp)
  2362. (org-table-named-field-locations): New variables.
  2363. (org-archive-subtree): Protect `this-command' when calling
  2364. `org-copy-subtree' and `org-cut-subtree', to avoid appending to
  2365. the kill buffer.
  2366. (org-complete): Removed fixed-formula completion.
  2367. (org-edit-formulas-map): New variable.
  2368. (org-table-edit-formulas): New command.
  2369. (org-finish-edit-formulas, org-abort-edit-formulas,
  2370. org-show-variable, org-table-get-vertical-vector): New functions.
  2371. (org-table-maybe-eval-formula): Handle `:=' fields.
  2372. (org-table-get-stored-formulas, org-table-store-formulas)
  2373. (org-table-get-formula, org-table-modify-formulas)
  2374. (org-table-replace-in-formulas): Handle named field formulas.
  2375. (org-table-get-specials): Store locations of named fields.
  2376. ---------------------------------------------------------------------------
  2377. Installed as 3.13
  2378. 2005-07-01 Carsten Dominik <dominik@science.uva.nl>
  2379. * org.el: Leading space replaced by TABS.
  2380. (org-recalc-marks, org-table-rotate-recalc-marks)
  2381. (org-table-get-specials): Treat "^" and "_" marks.
  2382. (org-table-justify-field-maybe): Optional argument NEW.
  2383. (org-table-eval-formula): Parsing of the format simplified. New
  2384. modes C,I. Honor the %= parameter in the current table. Avoid
  2385. unnecessary re-align by using the NEW argument to
  2386. `org-table-justify-field-maybe'. C-u prefix now interpreted as
  2387. request to store named field equation.
  2388. (org-calc-default-modes): Default for date-format mimicks
  2389. org-mode.
  2390. (org-agenda, org-timeline): Quote argument in
  2391. `org-agenda-redo-command'.
  2392. ----------------------------------------------------------------------------
  2393. installed as version 3.12
  2394. 2005-06-28 Carsten Dominik <dominik@science.uva.nl>
  2395. * org.el (orgtbl-setup): New function, for delayed setup for the
  2396. orgtbl commands.
  2397. (org-calc-default-modes): New option.
  2398. (orgtbl-make-binding): Use `defun' to get better help display.
  2399. (org-diary): Call `org-compile-prefix-format'.
  2400. (org-table-formula-substitute-names): New function.
  2401. (org-agenda-day-view, org-agenda-week-view): New commands.
  2402. (org-agenda-toggle-week-view): Command removed.
  2403. (org-tbl-menu): Split off from org-org-menu.
  2404. (org-mode): Moved removal of outline-mode menus to here.
  2405. (org-table-formula-debug): New option.
  2406. (org-table-insert-row): Keep first field if just "#" or "*".
  2407. (org-mode): Paragraph regexps fixed.
  2408. (org-table-recalculate-regexp): New constant.
  2409. (org-table-justify-field-maybe): Avoid replace if not necessary.
  2410. (org-copy-special, org-cut-special): Use `call-interactively'.
  2411. (org-table-copy-region): Take region from `interactive' call.
  2412. (org-trim): Return string even if no match.
  2413. (org-formula): New face.
  2414. (org-set-font-lock-defaults): No longer highlight "FIXME". But
  2415. highlight formula-related fields in table.
  2416. (org-table-p): Use regexp, not fontification.
  2417. (org-table-align): Handle white space at end of line.
  2418. (org-table-formula-evaluate-inline): New option.
  2419. (org-mode): Auto-wrapping in comment lines turned off.
  2420. (org-table-copy-down): Evaluate only in copied field, not in
  2421. destination.
  2422. (org-table-current-formula): Variable removed.
  2423. (org-table-store-formulas, org-table-get-stored-formulas)
  2424. (org-table-modify-formulas, org-table-replace-in-formulas)
  2425. (org-table-maybe-eval-formula): New functions.
  2426. (org-table-get-formula): Modified to use stored formulas.
  2427. (org-table-insert-column, org-table-delete-column)
  2428. (org-table-move-column): Call `org-table-modify-formulas'.
  2429. (org-complete): Add completion for keyword formulas.
  2430. (orgtbl-mode): Pull orgtbl-mode-map to start of
  2431. minor-mode-map-alist.
  2432. --------------------------------------------------------------------------
  2433. installed as 3.11
  2434. 2005-06-13 Carsten Dominik <dominik@science.uva.nl>
  2435. * textmodes/org.el (org-CUA-compatible): New option.
  2436. (org-disputed-keys): New variable.
  2437. (org-key): New function.
  2438. (orgtbl-make-binding): Add docstring to the created function.
  2439. (org-mode): Set paragraph start/separate regexps.
  2440. (orgtbl-mode): Don't start `orgtbl-mode' in `org-mode' buffers.
  2441. (org-archive-location, org-archive-mark-done)
  2442. (org-archive-stamp-time): New options.
  2443. (org-archive-subtree): New command.
  2444. (org-fill-paragraph): New function.
  2445. (org-mode): Set `fill-paragraph-function' to `org-fill-paragraph'.
  2446. (org-fake-empty-table-line): Function removed.
  2447. (org-format-org-table-html): Do not create empty table lines at
  2448. separator lines. Improved table header treatment.
  2449. (org-link-format): New option.
  2450. (org-make-link): New function.
  2451. (org-insert-link, org-store-link): Use org-make-link.
  2452. (org-open-file): Quote file name for shell command, to allow
  2453. spaces in file names.
  2454. (org-link-regexp): Fixed bug with mailto link.
  2455. (org-link-maybe-angles-regexp, org-protected-link-regexp): New
  2456. constant.
  2457. (org-export-as-html): Deal with the optional angles around a link.
  2458. Better treatment of file: links.
  2459. (org-open-at-point): Replace @{ and @} with < and >.
  2460. --------------------------------------------------------------------------
  2461. installed as 3.10
  2462. 2005-05-30 Carsten Dominik <dominik@science.uva.nl>
  2463. * org.el (org-agenda-mode): Use `run-mode-hooks' if available.
  2464. --------------------------------------------------------------------------
  2465. installed as 3.09
  2466. 2005-05-19 Carsten Dominik <dominik@science.uva.nl>
  2467. * textmodes/org.el (org-agenda-toggle-time-grid): New command.
  2468. (org-agenda-use-time-grid, org-agenda-time-grid): New options.
  2469. (org-agenda-add-time-grid-maybe): New function.
  2470. (org-agenda): Call `org-agenda-add-time-grid-maybe'.
  2471. (org-table-create): `dotimes' instead of `mapcar'.
  2472. (org-xor): Simplified implementation.
  2473. (org-agenda): `inhibit-redisplay' turned on.
  2474. (org-agenda-change-all-lines): Use `org-format-agenda-item' to get
  2475. a consistent line after a state change.
  2476. (org-agenda-remove-times-when-in-prefix): New option.
  2477. (org-prefix-has-time): New variable.
  2478. (org-parse-time-string): Optional argument NODEFAULT.
  2479. (org-format-agenda-item): Parse items for time-of-day
  2480. specifications and move these into the prefix if possible.
  2481. (org-agenda-priority): Get current heading, not previous heading
  2482. during agenda remote editing.
  2483. ======================================================================
  2484. Intsalled as 3.08
  2485. 2005-04-28 Carsten Dominik <dominik@science.uva.nl>
  2486. * org.el Many small changes to keep the byte compiler happy.
  2487. (org-prefix-format-compiled): New variable.
  2488. (org-compile-prefix-format): New function.
  2489. (org-timeline, org-agenda, org-diary): Call
  2490. `org-compile-prefix-format'.
  2491. (org-agenda-prefix-format,org-timeline-prefix-format): New
  2492. options.
  2493. (org-agenda-get-scheduled): Check if file is openned in
  2494. `org-mode'.
  2495. (org-get-entries-from-diary): Use `org-get-time-of-day', for
  2496. consistency with entries from `org-mode' files.
  2497. (org-get-time-of-day): Fixed bug with partial matches early in a
  2498. line.
  2499. (org-non-link-chars): New constant.
  2500. (org-link-regexp): Respect `org-non-link-chars'.
  2501. (org-agenda-day-view): Command removed.
  2502. (org-agenda-toggle-week-view): Renamed from
  2503. `org-agenda-week-view'.
  2504. (org-follow-bbdb-link, org-store-link): Search also company field.
  2505. (org-highlight-overlay): New variable.
  2506. (org-highlight, org-unhighlight): New functions.
  2507. (org-agenda-mode): Added pre-command-hook to remove highlight.
  2508. (org-evaluate-time-range): Behavior depend upon time stamp format:
  2509. Does it contain a time or not?
  2510. (org-show-subtree, org-show-entry): New functions.
  2511. (org-agenda-cleanup-fancy-diary): Remove empty lines.
  2512. ============================================================
  2513. installed as 3.06
  2514. 2005-04-14 Carsten Dominik <dominik@science.uva.nl>
  2515. * org.el (org-agenda-date-prompt): Renamed from
  2516. `org-agenda-date-today'.
  2517. (org-evaluate-time-range): Insert at point instead of directly
  2518. after time range.
  2519. (org-first-headline-recenter, org-subtree-end-visible-p)
  2520. (org-optimize-window-after-visibility-change): New functions
  2521. (org-agenda-post-command-hook): Don't allow point at end of line,
  2522. to make sure it always hits the text properties.
  2523. (org-agenda-next-date-line, org-agenda-previous-date-line): New
  2524. commands.
  2525. (org-set-regexps-and-options): Category may contain white space.
  2526. (org-agenda-get-deadlines, org-agenda-get-scheduled): Improved
  2527. marker positions.
  2528. (org-agenda-new-marker): Argument POS made optional.
  2529. (org-agenda-get-timestamps): Deadlines which are done are listed
  2530. in org-done-face now.
  2531. (org-agenda-get-todos, org-agenda-get-timestamps)
  2532. (org-agenda-get-deadlines, org-agenda-get-scheduled): set
  2533. `undone-face' and `done-face' properties.
  2534. (org-last-todo-state-is-todo): New variable.
  2535. (org-todo): Set `org-last-todo-state-is-todo'.
  2536. (org-agenda-todo): Change face according to
  2537. `org-last-todo-state-is-todo'. And change other lines refering to
  2538. the same entry.
  2539. (org-calendar-goto-agenda): New command.
  2540. (org-calendar-to-agenda-key): New option.
  2541. (org-startup-folded): New allowed value `content'.
  2542. (org-set-regexps-and-options): Accept new value `content' for
  2543. `org-startup-folded'.
  2544. (org-get-current-options): Handle new value `content' for
  2545. `org-startup-folded'.
  2546. (org-insert-todo-heading): New command.
  2547. (org-mode): Insert first line "*-* mode: org-mode -*-" when called
  2548. interactively in empty file and option
  2549. `org-insert-mode-line-in-empty-file' has been set.
  2550. (org-agenda-todo,org-agenda-priority): Modified to use
  2551. `org-agenda-change-all-lines'.
  2552. (org-warning-face): Changed color on dark background
  2553. ======================================================================
  2554. Installed as version 3.05
  2555. 2005-03-29 Carsten Dominik <dominik@science.uva.nl>
  2556. * org.el (org-agenda-phases-of-moon, org-agenda-sunrise-sunset)
  2557. (org-agenda-convert-date, org-agenda-goto-calendar): New commands.
  2558. 2005-03-28 Carsten Dominik <dominik@science.uva.nl>
  2559. * org.el (org-diary-default-entry): New function.
  2560. (org-get-entries-from-diary): Better parsing of diary entries
  2561. (org-agenda-check-no-diary): New function.
  2562. ("diary-lib"): Advice to function `add-to-diary-list', to allow
  2563. linking to diary entries.
  2564. (org-agenda-execute-calendar-command): New function
  2565. 2005-03-24 Carsten Dominik <dominik@science.uva.nl>
  2566. * org.el (org-agenda): Improved visible section in window. And
  2567. use `org-fit-agenda-window'.
  2568. (org-fit-agenda-window): New option.
  2569. 2005-03-17 Carsten Dominik <dominik@science.uva.nl>
  2570. * org.el (org-move-subtree-down): Better handling of empty lines
  2571. at end of subtree.
  2572. (org-cycle): Numeric prefix is interpreted now as show-subtree N
  2573. levels up.
  2574. 2005-03-16 Carsten Dominik <dominik@science.uva.nl>
  2575. * org.el (org-fontify-done-headline): New option.
  2576. (org-headline-done-face): New face.
  2577. (org-set-font-lock-defaults): Use `org-headline-done-face'.
  2578. 2005-03-11 Carsten Dominik <dominik@science.uva.nl>
  2579. * org.el (org-table-copy-down): renamed from
  2580. `org-table-copy-from-above'. When current field is non-empty, it
  2581. is copied to next row.
  2582. 2005-03-05 Carsten Dominik <dominik@science.uva.nl>
  2583. * org.el (org-table-copy-from-above): Fixed bug which made it
  2584. impossible to copy fields containing only a single non-white
  2585. character.
  2586. Release of 3.04 -------------------------------------------------------------
  2587. 2005-01-17 Carsten Dominik <dominik@science.uva.nl>
  2588. * org.el (org-version): Prefix arg removed, was not needed.
  2589. 2005-01-11 Carsten Dominik <dominik@science.uva.nl>
  2590. * org.el (org-show-following-heading): New option.
  2591. (org-show-hierarchy-above): Use `org-show-following-heading'.
  2592. 2005-01-03 Carsten Dominik <dominik@science.uva.nl>
  2593. * org.el (orgtbl-optimized): New option
  2594. (orgtbl-mode): New command, a minor mode.
  2595. (orgtbl-mode-map): New variable.
  2596. (turn-on-orgtbl, orgtbl-mode, orgtbl-make-binding)
  2597. (orgtbl-error, orgtbl-self-insert-command)
  2598. (orgtbl-delete-backward-char, orgtbl-delete-char): New functions.
  2599. 2004-12-22 Carsten Dominik <dominik@science.uva.nl>
  2600. * org.el (org-mode): `org-table-may-need-update' is now a local
  2601. variable in each org-mode buffer.
  2602. 2004-12-10 Carsten Dominik <dominik@science.uva.nl>
  2603. * org.el (org-set-regexps-and-options): Renamed from
  2604. `org-set-regexps'. Added checking for STARTUP keyword.
  2605. (org-get-current-options): Added STARTUP options.
  2606. (org-table-insert-row): Mode mode intelligent about when
  2607. realignment is needed.
  2608. (org-self-insert-command, org-delete-backward-char,
  2609. org-delete-char): New commands.
  2610. (org-enable-table-editor): new default value `optimized'.
  2611. (org-table-blank-field): Support blanking regions if active.