org-agenda.el 190 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025
  1. ;;; org-agenda.el --- The table editor for Org-mode
  2. ;; Copyright (C) 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 6.00pre-4
  7. ;;
  8. ;; This file is part of GNU Emacs.
  9. ;;
  10. ;; GNU Emacs is free software; you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation; either version 3, or (at your option)
  13. ;; any later version.
  14. ;; GNU Emacs is distributed in the hope that it will be useful,
  15. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. ;; GNU General Public License for more details.
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  20. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. ;; Boston, MA 02110-1301, USA.
  22. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  23. ;;
  24. ;;; Commentary:
  25. ;; This file contains the code for creating and using the Agenda for Org-mode.
  26. ;;; Code:
  27. (require 'org)
  28. (eval-when-compile
  29. (require 'calendar))
  30. (declare-function add-to-diary-list "diary-lib"
  31. (date string specifier &optional marker globcolor literal))
  32. (declare-function calendar-absolute-from-iso "cal-iso" (date))
  33. (declare-function calendar-astro-date-string "cal-julian" (&optional date))
  34. (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
  35. (declare-function calendar-check-holidays "holidays" (date))
  36. (declare-function calendar-chinese-date-string "cal-china" (&optional date))
  37. (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
  38. (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
  39. (declare-function calendar-french-date-string "cal-french" (&optional date))
  40. (declare-function calendar-goto-date "cal-move" (date))
  41. (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
  42. (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
  43. (declare-function calendar-iso-date-string "cal-iso" (&optional date))
  44. (declare-function calendar-iso-from-absolute "cal-iso" (&optional date))
  45. (declare-function calendar-julian-date-string "cal-julian" (&optional date))
  46. (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
  47. (declare-function calendar-persian-date-string "cal-persia" (&optional date))
  48. (defvar calendar-mode-map)
  49. ;; Defined somewhere in this file, but used before definition.
  50. (defvar org-agenda-buffer-name)
  51. (defvar org-agenda-overriding-header)
  52. (defvar entry)
  53. (defvar date)
  54. (defvar org-agenda-undo-list)
  55. (defvar org-agenda-pending-undo-list)
  56. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  57. (defcustom org-agenda-confirm-kill 1
  58. "When set, remote killing from the agenda buffer needs confirmation.
  59. When t, a confirmation is always needed. When a number N, confirmation is
  60. only needed when the text to be killed contains more than N non-white lines."
  61. :group 'org-agenda
  62. :type '(choice
  63. (const :tag "Never" nil)
  64. (const :tag "Always" t)
  65. (number :tag "When more than N lines")))
  66. (defcustom org-agenda-compact-blocks nil
  67. "Non-nil means, make the block agenda more compact.
  68. This is done by leaving out unnecessary lines."
  69. :group 'org-agenda
  70. :type nil)
  71. (defgroup org-agenda-export nil
  72. "Options concerning exporting agenda views in Org-mode."
  73. :tag "Org Agenda Export"
  74. :group 'org-agenda)
  75. (defcustom org-agenda-with-colors t
  76. "Non-nil means, use colors in agenda views."
  77. :group 'org-agenda-export
  78. :type 'boolean)
  79. (defcustom org-agenda-exporter-settings nil
  80. "Alist of variable/value pairs that should be active during agenda export.
  81. This is a good place to set uptions for ps-print and for htmlize."
  82. :group 'org-agenda-export
  83. :type '(repeat
  84. (list
  85. (variable)
  86. (sexp :tag "Value"))))
  87. (defcustom org-agenda-export-html-style ""
  88. "The style specification for exported HTML Agenda files.
  89. If this variable contains a string, it will replace the default <style>
  90. section as produced by `htmlize'.
  91. Since there are different ways of setting style information, this variable
  92. needs to contain the full HTML structure to provide a style, including the
  93. surrounding HTML tags. The style specifications should include definitions
  94. the fonts used by the agenda, here is an example:
  95. <style type=\"text/css\">
  96. p { font-weight: normal; color: gray; }
  97. .org-agenda-structure {
  98. font-size: 110%;
  99. color: #003399;
  100. font-weight: 600;
  101. }
  102. .org-todo {
  103. color: #cc6666;
  104. font-weight: bold;
  105. }
  106. .org-done {
  107. color: #339933;
  108. }
  109. .title { text-align: center; }
  110. .todo, .deadline { color: red; }
  111. .done { color: green; }
  112. </style>
  113. or, if you want to keep the style in a file,
  114. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  115. As the value of this option simply gets inserted into the HTML <head> header,
  116. you can \"misuse\" it to also add other text to the header. However,
  117. <style>...</style> is required, if not present the variable will be ignored."
  118. :group 'org-agenda-export
  119. :group 'org-export-html
  120. :type 'string)
  121. (defgroup org-agenda-custom-commands nil
  122. "Options concerning agenda views in Org-mode."
  123. :tag "Org Agenda Custom Commands"
  124. :group 'org-agenda)
  125. (defconst org-sorting-choice
  126. '(choice
  127. (const time-up) (const time-down)
  128. (const category-keep) (const category-up) (const category-down)
  129. (const tag-down) (const tag-up)
  130. (const priority-up) (const priority-down))
  131. "Sorting choices.")
  132. (defconst org-agenda-custom-commands-local-options
  133. `(repeat :tag "Local settings for this command. Remember to quote values"
  134. (choice :tag "Setting"
  135. (list :tag "Any variable"
  136. (variable :tag "Variable")
  137. (sexp :tag "Value"))
  138. (list :tag "Files to be searched"
  139. (const org-agenda-files)
  140. (list
  141. (const :format "" quote)
  142. (repeat
  143. (file))))
  144. (list :tag "Sorting strategy"
  145. (const org-agenda-sorting-strategy)
  146. (list
  147. (const :format "" quote)
  148. (repeat
  149. ,org-sorting-choice)))
  150. (list :tag "Prefix format"
  151. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  152. (string))
  153. (list :tag "Number of days in agenda"
  154. (const org-agenda-ndays)
  155. (integer :value 1))
  156. (list :tag "Fixed starting date"
  157. (const org-agenda-start-day)
  158. (string :value "2007-11-01"))
  159. (list :tag "Start on day of week"
  160. (const org-agenda-start-on-weekday)
  161. (choice :value 1
  162. (const :tag "Today" nil)
  163. (number :tag "Weekday No.")))
  164. (list :tag "Include data from diary"
  165. (const org-agenda-include-diary)
  166. (boolean))
  167. (list :tag "Deadline Warning days"
  168. (const org-deadline-warning-days)
  169. (integer :value 1))
  170. (list :tag "Standard skipping condition"
  171. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  172. (const org-agenda-skip-function)
  173. (list
  174. (const :format "" quote)
  175. (list
  176. (choice
  177. :tag "Skiping range"
  178. (const :tag "Skip entry" org-agenda-skip-entry-if)
  179. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  180. (repeat :inline t :tag "Conditions for skipping"
  181. (choice
  182. :tag "Condition type"
  183. (list :tag "Regexp matches" :inline t (const :format "" 'regexp) (regexp))
  184. (list :tag "Regexp does not match" :inline t (const :format "" 'notregexp) (regexp))
  185. (const :tag "scheduled" 'scheduled)
  186. (const :tag "not scheduled" 'notscheduled)
  187. (const :tag "deadline" 'deadline)
  188. (const :tag "no deadline" 'notdeadline))))))
  189. (list :tag "Non-standard skipping condition"
  190. :value (org-agenda-skip-function)
  191. (list
  192. (const org-agenda-skip-function)
  193. (sexp :tag "Function or form (quoted!)")))))
  194. "Selection of examples for agenda command settings.
  195. This will be spliced into the custom type of
  196. `org-agenda-custom-commands'.")
  197. (defcustom org-agenda-custom-commands nil
  198. "Custom commands for the agenda.
  199. These commands will be offered on the splash screen displayed by the
  200. agenda dispatcher \\[org-agenda]. Each entry is a list like this:
  201. (key desc type match settings files)
  202. key The key (one or more characters as a string) to be associated
  203. with the command.
  204. desc A description of the command, when omitted or nil, a default
  205. description is built using MATCH.
  206. type The command type, any of the following symbols:
  207. agenda The daily/weekly agenda.
  208. todo Entries with a specific TODO keyword, in all agenda files.
  209. search Entries containing search words entry or headline.
  210. tags Tags/Property/TODO match in all agenda files.
  211. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  212. todo-tree Sparse tree of specific TODO keyword in *current* file.
  213. tags-tree Sparse tree with all tags matches in *current* file.
  214. occur-tree Occur sparse tree for *current* file.
  215. ... A user-defined function.
  216. match What to search for:
  217. - a single keyword for TODO keyword searches
  218. - a tags match expression for tags searches
  219. - a word search expression for text searches.
  220. - a regular expression for occur searches
  221. For all other commands, this should be the empty string.
  222. settings A list of option settings, similar to that in a let form, so like
  223. this: ((opt1 val1) (opt2 val2) ...). The values will be
  224. evaluated at the moment of execution, so quote them when needed.
  225. files A list of files file to write the produced agenda buffer to
  226. with the command `org-store-agenda-views'.
  227. If a file name ends in \".html\", an HTML version of the buffer
  228. is written out. If it ends in \".ps\", a postscript version is
  229. produced. Otherwide, only the plain text is written to the file.
  230. You can also define a set of commands, to create a composite agenda buffer.
  231. In this case, an entry looks like this:
  232. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  233. where
  234. desc A description string to be displayed in the dispatcher menu.
  235. cmd An agenda command, similar to the above. However, tree commands
  236. are no allowed, but instead you can get agenda and global todo list.
  237. So valid commands for a set are:
  238. (agenda \"\" settings)
  239. (alltodo \"\" settings)
  240. (stuck \"\" settings)
  241. (todo \"match\" settings files)
  242. (search \"match\" settings files)
  243. (tags \"match\" settings files)
  244. (tags-todo \"match\" settings files)
  245. Each command can carry a list of options, and another set of options can be
  246. given for the whole set of commands. Individual command options take
  247. precedence over the general options.
  248. When using several characters as key to a command, the first characters
  249. are prefix commands. For the dispatcher to display useful information, you
  250. should provide a description for the prefix, like
  251. (setq org-agenda-custom-commands
  252. '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  253. (\"hl\" tags \"+HOME+Lisa\")
  254. (\"hp\" tags \"+HOME+Peter\")
  255. (\"hk\" tags \"+HOME+Kim\")))"
  256. :group 'org-agenda-custom-commands
  257. :type `(repeat
  258. (choice :value ("x" "Describe command here" tags "" nil)
  259. (list :tag "Single command"
  260. (string :tag "Access Key(s) ")
  261. (option (string :tag "Description"))
  262. (choice
  263. (const :tag "Agenda" agenda)
  264. (const :tag "TODO list" alltodo)
  265. (const :tag "Search words" search)
  266. (const :tag "Stuck projects" stuck)
  267. (const :tag "Tags search (all agenda files)" tags)
  268. (const :tag "Tags search of TODO entries (all agenda files)" tags-todo)
  269. (const :tag "TODO keyword search (all agenda files)" todo)
  270. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  271. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  272. (const :tag "Occur tree (current buffer)" occur-tree)
  273. (sexp :tag "Other, user-defined function"))
  274. (string :tag "Match (only for some commands)")
  275. ,org-agenda-custom-commands-local-options
  276. (option (repeat :tag "Export" (file :tag "Export to"))))
  277. (list :tag "Command series, all agenda files"
  278. (string :tag "Access Key(s)")
  279. (string :tag "Description ")
  280. (repeat :tag "Component"
  281. (choice
  282. (list :tag "Agenda"
  283. (const :format "" agenda)
  284. (const :tag "" :format "" "")
  285. ,org-agenda-custom-commands-local-options)
  286. (list :tag "TODO list (all keywords)"
  287. (const :format "" alltodo)
  288. (const :tag "" :format "" "")
  289. ,org-agenda-custom-commands-local-options)
  290. (list :tag "Search words"
  291. (const :format "" search)
  292. (string :tag "Match")
  293. ,org-agenda-custom-commands-local-options)
  294. (list :tag "Stuck projects"
  295. (const :format "" stuck)
  296. (const :tag "" :format "" "")
  297. ,org-agenda-custom-commands-local-options)
  298. (list :tag "Tags search"
  299. (const :format "" tags)
  300. (string :tag "Match")
  301. ,org-agenda-custom-commands-local-options)
  302. (list :tag "Tags search, TODO entries only"
  303. (const :format "" tags-todo)
  304. (string :tag "Match")
  305. ,org-agenda-custom-commands-local-options)
  306. (list :tag "TODO keyword search"
  307. (const :format "" todo)
  308. (string :tag "Match")
  309. ,org-agenda-custom-commands-local-options)
  310. (list :tag "Other, user-defined function"
  311. (symbol :tag "function")
  312. (string :tag "Match")
  313. ,org-agenda-custom-commands-local-options)))
  314. (repeat :tag "Settings for entire command set"
  315. (list (variable :tag "Any variable")
  316. (sexp :tag "Value")))
  317. (option (repeat :tag "Export" (file :tag "Export to"))))
  318. (cons :tag "Prefix key documentation"
  319. (string :tag "Access Key(s)")
  320. (string :tag "Description ")))))
  321. (defcustom org-agenda-query-register ?o
  322. "The register holding the current query string.
  323. The prupose of this is that if you construct a query string interactively,
  324. you can then use it to define a custom command."
  325. :group 'org-agenda-custom-commands
  326. :type 'character)
  327. (defcustom org-stuck-projects
  328. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  329. "How to identify stuck projects.
  330. This is a list of four items:
  331. 1. A tags/todo matcher string that is used to identify a project.
  332. The entire tree below a headline matched by this is considered one project.
  333. 2. A list of TODO keywords identifying non-stuck projects.
  334. If the project subtree contains any headline with one of these todo
  335. keywords, the project is considered to be not stuck. If you specify
  336. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  337. 3. A list of tags identifying non-stuck projects.
  338. If the project subtree contains any headline with one of these tags,
  339. the project is considered to be not stuck. If you specify \"*\" as
  340. a tag, any tag will mark the project unstuck.
  341. 4. An arbitrary regular expression matching non-stuck projects.
  342. After defining this variable, you may use \\[org-agenda-list-stuck-projects]
  343. or `C-c a #' to produce the list."
  344. :group 'org-agenda-custom-commands
  345. :type '(list
  346. (string :tag "Tags/TODO match to identify a project")
  347. (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
  348. (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
  349. (regexp :tag "Projects are *not* stuck if this regexp matches\ninside the subtree")))
  350. (defgroup org-agenda-skip nil
  351. "Options concerning skipping parts of agenda files."
  352. :tag "Org Agenda Skip"
  353. :group 'org-agenda)
  354. (defcustom org-agenda-todo-list-sublevels t
  355. "Non-nil means, check also the sublevels of a TODO entry for TODO entries.
  356. When nil, the sublevels of a TODO entry are not checked, resulting in
  357. potentially much shorter TODO lists."
  358. :group 'org-agenda-skip
  359. :group 'org-todo
  360. :type 'boolean)
  361. (defcustom org-agenda-todo-ignore-with-date nil
  362. "Non-nil means, don't show entries with a date in the global todo list.
  363. You can use this if you prefer to mark mere appointments with a TODO keyword,
  364. but don't want them to show up in the TODO list.
  365. When this is set, it also covers deadlines and scheduled items, the settings
  366. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  367. will be ignored."
  368. :group 'org-agenda-skip
  369. :group 'org-todo
  370. :type 'boolean)
  371. (defcustom org-agenda-todo-ignore-scheduled nil
  372. "Non-nil means, don't show scheduled entries in the global todo list.
  373. The idea behind this is that by scheduling it, you have already taken care
  374. of this item.
  375. See also `org-agenda-todo-ignore-with-date'."
  376. :group 'org-agenda-skip
  377. :group 'org-todo
  378. :type 'boolean)
  379. (defcustom org-agenda-todo-ignore-deadlines nil
  380. "Non-nil means, don't show near deadline entries in the global todo list.
  381. Near means closer than `org-deadline-warning-days' days.
  382. The idea behind this is that such items will appear in the agenda anyway.
  383. See also `org-agenda-todo-ignore-with-date'."
  384. :group 'org-agenda-skip
  385. :group 'org-todo
  386. :type 'boolean)
  387. (defcustom org-agenda-skip-scheduled-if-done nil
  388. "Non-nil means don't show scheduled items in agenda when they are done.
  389. This is relevant for the daily/weekly agenda, not for the TODO list. And
  390. it applies only to the actual date of the scheduling. Warnings about
  391. an item with a past scheduling dates are always turned off when the item
  392. is DONE."
  393. :group 'org-agenda-skip
  394. :type 'boolean)
  395. (defcustom org-agenda-skip-deadline-if-done nil
  396. "Non-nil means don't show deadines when the corresponding item is done.
  397. When nil, the deadline is still shown and should give you a happy feeling.
  398. This is relevant for the daily/weekly agenda. And it applied only to the
  399. actualy date of the deadline. Warnings about approching and past-due
  400. deadlines are always turned off when the item is DONE."
  401. :group 'org-agenda-skip
  402. :type 'boolean)
  403. (defcustom org-agenda-skip-timestamp-if-done nil
  404. "Non-nil means don't select item by timestamp or -range if it is DONE."
  405. :group 'org-agenda-skip
  406. :type 'boolean)
  407. (defcustom org-timeline-show-empty-dates 3
  408. "Non-nil means, `org-timeline' also shows dates without an entry.
  409. When nil, only the days which actually have entries are shown.
  410. When t, all days between the first and the last date are shown.
  411. When an integer, show also empty dates, but if there is a gap of more than
  412. N days, just insert a special line indicating the size of the gap."
  413. :group 'org-agenda-skip
  414. :type '(choice
  415. (const :tag "None" nil)
  416. (const :tag "All" t)
  417. (number :tag "at most")))
  418. (defgroup org-agenda-startup nil
  419. "Options concerning initial settings in the Agenda in Org Mode."
  420. :tag "Org Agenda Startup"
  421. :group 'org-agenda)
  422. (defcustom org-finalize-agenda-hook nil
  423. "Hook run just before displaying an agenda buffer."
  424. :group 'org-agenda-startup
  425. :type 'hook)
  426. (defcustom org-agenda-mouse-1-follows-link nil
  427. "Non-nil means, mouse-1 on a link will follow the link in the agenda.
  428. A longer mouse click will still set point. Does not work on XEmacs.
  429. Needs to be set before org.el is loaded."
  430. :group 'org-agenda-startup
  431. :type 'boolean)
  432. (defcustom org-agenda-start-with-follow-mode nil
  433. "The initial value of follow-mode in a newly created agenda window."
  434. :group 'org-agenda-startup
  435. :type 'boolean)
  436. (defgroup org-agenda-windows nil
  437. "Options concerning the windows used by the Agenda in Org Mode."
  438. :tag "Org Agenda Windows"
  439. :group 'org-agenda)
  440. (defcustom org-agenda-window-setup 'reorganize-frame
  441. "How the agenda buffer should be displayed.
  442. Possible values for this option are:
  443. current-window Show agenda in the current window, keeping all other windows.
  444. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  445. other-window Use `switch-to-buffer-other-window' to display agenda.
  446. reorganize-frame Show only two windows on the current frame, the current
  447. window and the agenda.
  448. See also the variable `org-agenda-restore-windows-after-quit'."
  449. :group 'org-agenda-windows
  450. :type '(choice
  451. (const current-window)
  452. (const other-frame)
  453. (const other-window)
  454. (const reorganize-frame)))
  455. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  456. "The min and max height of the agenda window as a fraction of frame height.
  457. The value of the variable is a cons cell with two numbers between 0 and 1.
  458. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  459. :group 'org-agenda-windows
  460. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  461. (defcustom org-agenda-restore-windows-after-quit nil
  462. "Non-nil means, restore window configuration open exiting agenda.
  463. Before the window configuration is changed for displaying the agenda,
  464. the current status is recorded. When the agenda is exited with
  465. `q' or `x' and this option is set, the old state is restored. If
  466. `org-agenda-window-setup' is `other-frame', the value of this
  467. option will be ignored.."
  468. :group 'org-agenda-windows
  469. :type 'boolean)
  470. (defgroup org-agenda-daily/weekly nil
  471. "Options concerning the daily/weekly agenda."
  472. :tag "Org Agenda Daily/Weekly"
  473. :group 'org-agenda)
  474. (defcustom org-agenda-ndays 7
  475. "Number of days to include in overview display.
  476. Should be 1 or 7."
  477. :group 'org-agenda-daily/weekly
  478. :type 'number)
  479. (defcustom org-agenda-start-on-weekday 1
  480. "Non-nil means, start the overview always on the specified weekday.
  481. 0 denotes Sunday, 1 denotes Monday etc.
  482. When nil, always start on the current day."
  483. :group 'org-agenda-daily/weekly
  484. :type '(choice (const :tag "Today" nil)
  485. (number :tag "Weekday No.")))
  486. (defcustom org-agenda-show-all-dates t
  487. "Non-nil means, `org-agenda' shows every day in the selected range.
  488. When nil, only the days which actually have entries are shown."
  489. :group 'org-agenda-daily/weekly
  490. :type 'boolean)
  491. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  492. "Format string for displaying dates in the agenda.
  493. Used by the daily/weekly agenda and by the timeline. This should be
  494. a format string understood by `format-time-string', or a function returning
  495. the formatted date as a string. The function must take a single argument,
  496. a calendar-style date list like (month day year)."
  497. :group 'org-agenda-daily/weekly
  498. :type '(choice
  499. (string :tag "Format string")
  500. (function :tag "Function")))
  501. (defun org-agenda-format-date-aligned (date)
  502. "Format a date string for display in the daily/weekly agenda, or timeline.
  503. This function makes sure that dates are aligned for easy reading."
  504. (require 'cal-iso)
  505. (let* ((dayname (calendar-day-name date))
  506. (day (cadr date))
  507. (day-of-week (calendar-day-of-week date))
  508. (month (car date))
  509. (monthname (calendar-month-name month))
  510. (year (nth 2 date))
  511. (iso-week (org-days-to-iso-week
  512. (calendar-absolute-from-gregorian date)))
  513. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  514. (1- year))
  515. ((and (= month 12) (<= iso-week 1))
  516. (1+ year))
  517. (t year)))
  518. (weekstring (if (= day-of-week 1)
  519. (format " W%02d" iso-week)
  520. "")))
  521. (format "%-10s %2d %s %4d%s"
  522. dayname day monthname year weekstring)))
  523. (defcustom org-agenda-weekend-days '(6 0)
  524. "Which days are weekend?
  525. These days get the special face `org-agenda-date-weekend' in the agenda
  526. and timeline buffers."
  527. :group 'org-agenda-daily/weekly
  528. :type '(set :greedy t
  529. (const :tag "Monday" 1)
  530. (const :tag "Tuesday" 2)
  531. (const :tag "Wednesday" 3)
  532. (const :tag "Thursday" 4)
  533. (const :tag "Friday" 5)
  534. (const :tag "Saturday" 6)
  535. (const :tag "Sunday" 0)))
  536. (defcustom org-agenda-include-diary nil
  537. "If non-nil, include in the agenda entries from the Emacs Calendar's diary."
  538. :group 'org-agenda-daily/weekly
  539. :type 'boolean)
  540. (defcustom org-agenda-include-all-todo nil
  541. "Set means weekly/daily agenda will always contain all TODO entries.
  542. The TODO entries will be listed at the top of the agenda, before
  543. the entries for specific days."
  544. :group 'org-agenda-daily/weekly
  545. :type 'boolean)
  546. (defcustom org-agenda-repeating-timestamp-show-all t
  547. "Non-nil means, show all occurences of a repeating stamp in the agenda.
  548. When nil, only one occurence is shown, either today or the
  549. nearest into the future."
  550. :group 'org-agenda-daily/weekly
  551. :type 'boolean)
  552. (defcustom org-scheduled-past-days 10000
  553. "No. of days to continue listing scheduled items that are not marked DONE.
  554. When an item is scheduled on a date, it shows up in the agenda on this
  555. day and will be listed until it is marked done for the number of days
  556. given here."
  557. :group 'org-agenda-daily/weekly
  558. :type 'number)
  559. (defcustom org-agenda-start-with-clockreport-mode nil
  560. "The initial value of clockreport-mode in a newly created agenda window."
  561. :group 'org-agenda-startup
  562. :group 'org-agenda-daily/weekly
  563. :type 'boolean)
  564. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  565. "Property list with parameters for the clocktable in clockreport mode.
  566. This is the display mode that shows a clock table in the daily/weekly
  567. agenda, the properties for this dynamic block can be set here.
  568. The usual clocktable parameters are allowed here, but you cannot set
  569. the properties :name, :tstart, :tend, :block, and :scope - these will
  570. be overwritten to make sure the content accurately reflects the
  571. current display in the agenda."
  572. :group 'org-agenda-daily/weekly
  573. :type 'plist)
  574. (defgroup org-agenda-time-grid nil
  575. "Options concerning the time grid in the Org-mode Agenda."
  576. :tag "Org Agenda Time Grid"
  577. :group 'org-agenda)
  578. (defcustom org-agenda-use-time-grid t
  579. "Non-nil means, show a time grid in the agenda schedule.
  580. A time grid is a set of lines for specific times (like every two hours between
  581. 8:00 and 20:00). The items scheduled for a day at specific times are
  582. sorted in between these lines.
  583. For details about when the grid will be shown, and what it will look like, see
  584. the variable `org-agenda-time-grid'."
  585. :group 'org-agenda-time-grid
  586. :type 'boolean)
  587. (defcustom org-agenda-time-grid
  588. '((daily today require-timed)
  589. "----------------"
  590. (800 1000 1200 1400 1600 1800 2000))
  591. "The settings for time grid for agenda display.
  592. This is a list of three items. The first item is again a list. It contains
  593. symbols specifying conditions when the grid should be displayed:
  594. daily if the agenda shows a single day
  595. weekly if the agenda shows an entire week
  596. today show grid on current date, independent of daily/weekly display
  597. require-timed show grid only if at least one item has a time specification
  598. The second item is a string which will be places behing the grid time.
  599. The third item is a list of integers, indicating the times that should have
  600. a grid line."
  601. :group 'org-agenda-time-grid
  602. :type
  603. '(list
  604. (set :greedy t :tag "Grid Display Options"
  605. (const :tag "Show grid in single day agenda display" daily)
  606. (const :tag "Show grid in weekly agenda display" weekly)
  607. (const :tag "Always show grid for today" today)
  608. (const :tag "Show grid only if any timed entries are present"
  609. require-timed)
  610. (const :tag "Skip grid times already present in an entry"
  611. remove-match))
  612. (string :tag "Grid String")
  613. (repeat :tag "Grid Times" (integer :tag "Time"))))
  614. (defgroup org-agenda-sorting nil
  615. "Options concerning sorting in the Org-mode Agenda."
  616. :tag "Org Agenda Sorting"
  617. :group 'org-agenda)
  618. (defcustom org-agenda-sorting-strategy
  619. '((agenda time-up category-keep priority-down)
  620. (todo category-keep priority-down)
  621. (tags category-keep priority-down)
  622. (search category-keep))
  623. "Sorting structure for the agenda items of a single day.
  624. This is a list of symbols which will be used in sequence to determine
  625. if an entry should be listed before another entry. The following
  626. symbols are recognized:
  627. time-up Put entries with time-of-day indications first, early first
  628. time-down Put entries with time-of-day indications first, late first
  629. category-keep Keep the default order of categories, corresponding to the
  630. sequence in `org-agenda-files'.
  631. category-up Sort alphabetically by category, A-Z.
  632. category-down Sort alphabetically by category, Z-A.
  633. tag-up Sort alphabetically by last tag, A-Z.
  634. tag-down Sort alphabetically by last tag, Z-A.
  635. priority-up Sort numerically by priority, high priority last.
  636. priority-down Sort numerically by priority, high priority first.
  637. The different possibilities will be tried in sequence, and testing stops
  638. if one comparison returns a \"not-equal\". For example, the default
  639. '(time-up category-keep priority-down)
  640. means: Pull out all entries having a specified time of day and sort them,
  641. in order to make a time schedule for the current day the first thing in the
  642. agenda listing for the day. Of the entries without a time indication, keep
  643. the grouped in categories, don't sort the categories, but keep them in
  644. the sequence given in `org-agenda-files'. Within each category sort by
  645. priority.
  646. Leaving out `category-keep' would mean that items will be sorted across
  647. categories by priority.
  648. Instead of a single list, this can also be a set of list for specific
  649. contents, with a context symbol in the car of the list, any of
  650. `agenda', `todo', `tags' for the corresponding agenda views."
  651. :group 'org-agenda-sorting
  652. :type `(choice
  653. (repeat :tag "General" ,org-sorting-choice)
  654. (list :tag "Individually"
  655. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  656. (repeat ,org-sorting-choice))
  657. (cons (const :tag "Strategy for TODO lists" todo)
  658. (repeat ,org-sorting-choice))
  659. (cons (const :tag "Strategy for Tags matches" tags)
  660. (repeat ,org-sorting-choice)))))
  661. (defcustom org-sort-agenda-notime-is-late t
  662. "Non-nil means, items without time are considered late.
  663. This is only relevant for sorting. When t, items which have no explicit
  664. time like 15:30 will be considered as 99:01, i.e. later than any items which
  665. do have a time. When nil, the default time is before 0:00. You can use this
  666. option to decide if the schedule for today should come before or after timeless
  667. agenda entries."
  668. :group 'org-agenda-sorting
  669. :type 'boolean)
  670. (defgroup org-agenda-line-format nil
  671. "Options concerning the entry prefix in the Org-mode agenda display."
  672. :tag "Org Agenda Line Format"
  673. :group 'org-agenda)
  674. (defcustom org-agenda-prefix-format
  675. '((agenda . " %-12:c%?-12t% s")
  676. (timeline . " % s")
  677. (todo . " %-12:c")
  678. (tags . " %-12:c")
  679. (search . " %-12:c"))
  680. "Format specifications for the prefix of items in the agenda views.
  681. An alist with four entries, for the different agenda types. The keys to the
  682. sublists are `agenda', `timeline', `todo', and `tags'. The values
  683. are format strings.
  684. This format works similar to a printf format, with the following meaning:
  685. %c the category of the item, \"Diary\" for entries from the diary, or
  686. as given by the CATEGORY keyword or derived from the file name.
  687. %T the *last* tag of the item. Last because inherited tags come
  688. first in the list.
  689. %t the time-of-day specification if one applies to the entry, in the
  690. format HH:MM
  691. %s Scheduling/Deadline information, a short string
  692. All specifiers work basically like the standard `%s' of printf, but may
  693. contain two additional characters: A question mark just after the `%' and
  694. a whitespace/punctuation character just before the final letter.
  695. If the first character after `%' is a question mark, the entire field
  696. will only be included if the corresponding value applies to the
  697. current entry. This is useful for fields which should have fixed
  698. width when present, but zero width when absent. For example,
  699. \"%?-12t\" will result in a 12 character time field if a time of the
  700. day is specified, but will completely disappear in entries which do
  701. not contain a time.
  702. If there is punctuation or whitespace character just before the final
  703. format letter, this character will be appended to the field value if
  704. the value is not empty. For example, the format \"%-12:c\" leads to
  705. \"Diary: \" if the category is \"Diary\". If the category were be
  706. empty, no additional colon would be interted.
  707. The default value of this option is \" %-12:c%?-12t% s\", meaning:
  708. - Indent the line with two space characters
  709. - Give the category in a 12 chars wide field, padded with whitespace on
  710. the right (because of `-'). Append a colon if there is a category
  711. (because of `:').
  712. - If there is a time-of-day, put it into a 12 chars wide field. If no
  713. time, don't put in an empty field, just skip it (because of '?').
  714. - Finally, put the scheduling information and append a whitespace.
  715. As another example, if you don't want the time-of-day of entries in
  716. the prefix, you could use:
  717. (setq org-agenda-prefix-format \" %-11:c% s\")
  718. See also the variables `org-agenda-remove-times-when-in-prefix' and
  719. `org-agenda-remove-tags'."
  720. :type '(choice
  721. (string :tag "General format")
  722. (list :greedy t :tag "View dependent"
  723. (cons (const agenda) (string :tag "Format"))
  724. (cons (const timeline) (string :tag "Format"))
  725. (cons (const todo) (string :tag "Format"))
  726. (cons (const tags) (string :tag "Format"))
  727. (cons (const search) (string :tag "Format"))))
  728. :group 'org-agenda-line-format)
  729. (defvar org-prefix-format-compiled nil
  730. "The compiled version of the most recently used prefix format.
  731. See the variable `org-agenda-prefix-format'.")
  732. (defcustom org-agenda-todo-keyword-format "%-1s"
  733. "Format for the TODO keyword in agenda lines.
  734. Set this to something like \"%-12s\" if you want all TODO keywords
  735. to occupy a fixed space in the agenda display."
  736. :group 'org-agenda-line-format
  737. :type 'string)
  738. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  739. "Text preceeding scheduled items in the agenda view.
  740. This is a list with two strings. The first applies when the item is
  741. scheduled on the current day. The second applies when it has been scheduled
  742. previously, it may contain a %d to capture how many days ago the item was
  743. scheduled."
  744. :group 'org-agenda-line-format
  745. :type '(list
  746. (string :tag "Scheduled today ")
  747. (string :tag "Scheduled previously")))
  748. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: ")
  749. "Text preceeding deadline items in the agenda view.
  750. This is a list with two strings. The first applies when the item has its
  751. deadline on the current day. The second applies when it is in the past or
  752. in the future, it may contain %d to capture how many days away the deadline
  753. is (was)."
  754. :group 'org-agenda-line-format
  755. :type '(list
  756. (string :tag "Deadline today ")
  757. (choice :tag "Deadline relative"
  758. (string :tag "Format string")
  759. (function))))
  760. (defcustom org-agenda-remove-times-when-in-prefix t
  761. "Non-nil means, remove duplicate time specifications in agenda items.
  762. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  763. time-of-day specification in a headline or diary entry is extracted and
  764. placed into the prefix. If this option is non-nil, the original specification
  765. \(a timestamp or -range, or just a plain time(range) specification like
  766. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  767. cluttered.
  768. The option can be t or nil. It may also be the symbol `beg', indicating
  769. that the time should only be removed what it is located at the beginning of
  770. the headline/diary entry."
  771. :group 'org-agenda-line-format
  772. :type '(choice
  773. (const :tag "Always" t)
  774. (const :tag "Never" nil)
  775. (const :tag "When at beginning of entry" beg)))
  776. (defcustom org-agenda-default-appointment-duration nil
  777. "Default duration for appointments that only have a starting time.
  778. When nil, no duration is specified in such cases.
  779. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  780. :group 'org-agenda-line-format
  781. :type '(choice
  782. (integer :tag "Minutes")
  783. (const :tag "No default duration")))
  784. (defcustom org-agenda-remove-tags nil
  785. "Non-nil means, remove the tags from the headline copy in the agenda.
  786. When this is the symbol `prefix', only remove tags when
  787. `org-agenda-prefix-format' contains a `%T' specifier."
  788. :group 'org-agenda-line-format
  789. :type '(choice
  790. (const :tag "Always" t)
  791. (const :tag "Never" nil)
  792. (const :tag "When prefix format contains %T" prefix)))
  793. (if (fboundp 'defvaralias)
  794. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  795. 'org-agenda-remove-tags))
  796. (defcustom org-agenda-tags-column -80
  797. "Shift tags in agenda items to this column.
  798. If this number is positive, it specifies the column. If it is negative,
  799. it means that the tags should be flushright to that column. For example,
  800. -80 works well for a normal 80 character screen."
  801. :group 'org-agenda-line-format
  802. :type 'integer)
  803. (if (fboundp 'defvaralias)
  804. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column))
  805. (defcustom org-agenda-fontify-priorities t
  806. "Non-nil means, highlight low and high priorities in agenda.
  807. When t, the highest priority entries are bold, lowest priority italic.
  808. This may also be an association list of priority faces. The face may be
  809. a names face, or a list like `(:background \"Red\")'."
  810. :group 'org-agenda-line-format
  811. :type '(choice
  812. (const :tag "Never" nil)
  813. (const :tag "Defaults" t)
  814. (repeat :tag "Specify"
  815. (list (character :tag "Priority" :value ?A)
  816. (sexp :tag "face")))))
  817. (eval-when-compile
  818. (require 'cl))
  819. (require 'org)
  820. (defun org-add-agenda-custom-command (entry)
  821. "Replace or add a command in `org-agenda-custom-commands'.
  822. This is mostly for hacking and trying a new command - once the command
  823. works you probably want to add it to `org-agenda-custom-commands' for good."
  824. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  825. (if ass
  826. (setcdr ass (cdr entry))
  827. (push entry org-agenda-custom-commands))))
  828. ;;; Define the Org-agenda-mode
  829. (defvar org-agenda-mode-map (make-sparse-keymap)
  830. "Keymap for `org-agenda-mode'.")
  831. (defvar org-agenda-menu) ; defined later in this file.
  832. (defvar org-agenda-follow-mode nil)
  833. (defvar org-agenda-clockreport-mode nil)
  834. (defvar org-agenda-show-log nil)
  835. (defvar org-agenda-redo-command nil)
  836. (defvar org-agenda-query-string nil)
  837. (defvar org-agenda-mode-hook nil)
  838. (defvar org-agenda-type nil)
  839. (defvar org-agenda-force-single-file nil)
  840. (defun org-agenda-mode ()
  841. "Mode for time-sorted view on action items in Org-mode files.
  842. The following commands are available:
  843. \\{org-agenda-mode-map}"
  844. (interactive)
  845. (kill-all-local-variables)
  846. (setq org-agenda-undo-list nil
  847. org-agenda-pending-undo-list nil)
  848. (setq major-mode 'org-agenda-mode)
  849. ;; Keep global-font-lock-mode from turning on font-lock-mode
  850. (org-set-local 'font-lock-global-modes (list 'not major-mode))
  851. (setq mode-name "Org-Agenda")
  852. (use-local-map org-agenda-mode-map)
  853. (easy-menu-add org-agenda-menu)
  854. (if org-startup-truncated (setq truncate-lines t))
  855. (org-add-hook 'post-command-hook 'org-agenda-post-command-hook nil 'local)
  856. (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  857. ;; Make sure properties are removed when copying text
  858. (when (boundp 'buffer-substring-filters)
  859. (org-set-local 'buffer-substring-filters
  860. (cons (lambda (x)
  861. (set-text-properties 0 (length x) nil x) x)
  862. buffer-substring-filters)))
  863. (unless org-agenda-keep-modes
  864. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  865. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode
  866. org-agenda-show-log nil))
  867. (easy-menu-change
  868. '("Agenda") "Agenda Files"
  869. (append
  870. (list
  871. (vector
  872. (if (get 'org-agenda-files 'org-restrict)
  873. "Restricted to single file"
  874. "Edit File List")
  875. '(org-edit-agenda-file-list)
  876. (not (get 'org-agenda-files 'org-restrict)))
  877. "--")
  878. (mapcar 'org-file-menu-entry (org-agenda-files))))
  879. (org-agenda-set-mode-name)
  880. (apply
  881. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  882. (list 'org-agenda-mode-hook)))
  883. (substitute-key-definition 'undo 'org-agenda-undo
  884. org-agenda-mode-map global-map)
  885. (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
  886. (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
  887. (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
  888. (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
  889. (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
  890. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
  891. (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
  892. (org-defkey org-agenda-mode-map "A" 'org-agenda-archive-to-attic-sibling)
  893. (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
  894. (org-defkey org-agenda-mode-map " " 'org-agenda-show)
  895. (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
  896. (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
  897. (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
  898. (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
  899. (org-defkey org-agenda-mode-map "b" 'org-agenda-tree-to-indirect-buffer)
  900. (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
  901. (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
  902. (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
  903. (org-defkey org-agenda-mode-map "a" 'org-agenda-toggle-archive-tag)
  904. (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
  905. (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
  906. (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
  907. (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
  908. (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
  909. (org-defkey org-agenda-mode-map "m" 'org-agenda-month-view)
  910. (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
  911. (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
  912. (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
  913. (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-date-later)
  914. (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-date-earlier)
  915. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-date-later)
  916. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-date-earlier)
  917. (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
  918. (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
  919. (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
  920. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  921. (while l (org-defkey org-agenda-mode-map
  922. (int-to-string (pop l)) 'digit-argument)))
  923. (org-defkey org-agenda-mode-map "f" 'org-agenda-follow-mode)
  924. (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
  925. (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
  926. (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
  927. (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
  928. (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
  929. (org-defkey org-agenda-mode-map "g" 'org-agenda-redo)
  930. (org-defkey org-agenda-mode-map "e" 'org-agenda-execute)
  931. (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
  932. (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
  933. (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-write-agenda)
  934. (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
  935. (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
  936. (org-defkey org-agenda-mode-map "P" 'org-agenda-show-priority)
  937. (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
  938. (org-defkey org-agenda-mode-map "n" 'next-line)
  939. (org-defkey org-agenda-mode-map "p" 'previous-line)
  940. (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
  941. (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
  942. (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
  943. (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
  944. (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
  945. (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
  946. (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
  947. (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
  948. (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
  949. (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
  950. (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
  951. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
  952. (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
  953. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
  954. (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
  955. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
  956. (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
  957. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
  958. (org-defkey org-agenda-mode-map "J" 'org-clock-goto)
  959. (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
  960. (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
  961. (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
  962. (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
  963. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
  964. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
  965. (org-defkey org-agenda-mode-map [(right)] 'org-agenda-later)
  966. (org-defkey org-agenda-mode-map [(left)] 'org-agenda-earlier)
  967. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
  968. (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
  969. (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
  970. (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
  971. (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
  972. (defvar org-agenda-keymap (copy-keymap org-agenda-mode-map)
  973. "Local keymap for agenda entries from Org-mode.")
  974. (org-defkey org-agenda-keymap
  975. (if (featurep 'xemacs) [(button2)] [(mouse-2)]) 'org-agenda-goto-mouse)
  976. (org-defkey org-agenda-keymap
  977. (if (featurep 'xemacs) [(button3)] [(mouse-3)]) 'org-agenda-show-mouse)
  978. (when org-agenda-mouse-1-follows-link
  979. (org-defkey org-agenda-keymap [follow-link] 'mouse-face))
  980. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  981. '("Agenda"
  982. ("Agenda Files")
  983. "--"
  984. ["Show" org-agenda-show t]
  985. ["Go To (other window)" org-agenda-goto t]
  986. ["Go To (this window)" org-agenda-switch-to t]
  987. ["Follow Mode" org-agenda-follow-mode
  988. :style toggle :selected org-agenda-follow-mode :active t]
  989. ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  990. "--"
  991. ["Cycle TODO" org-agenda-todo t]
  992. ("Archive"
  993. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  994. ["Move to attic sibling" org-agenda-archive-to-attic-sibling t]
  995. ["Archive subtree" org-agenda-archive t])
  996. ["Delete subtree" org-agenda-kill t]
  997. ["Add note" org-agenda-add-note t]
  998. "--"
  999. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
  1000. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  1001. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  1002. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)]
  1003. "--"
  1004. ("Tags and Properties"
  1005. ["Show all Tags" org-agenda-show-tags t]
  1006. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  1007. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  1008. "--"
  1009. ["Column View" org-columns t])
  1010. ("Date/Schedule"
  1011. ["Schedule" org-agenda-schedule t]
  1012. ["Set Deadline" org-agenda-deadline t]
  1013. "--"
  1014. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
  1015. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
  1016. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
  1017. ("Clock"
  1018. ["Clock in" org-agenda-clock-in t]
  1019. ["Clock out" org-agenda-clock-out t]
  1020. ["Clock cancel" org-agenda-clock-cancel t]
  1021. ["Goto running clock" org-clock-goto t])
  1022. ("Priority"
  1023. ["Set Priority" org-agenda-priority t]
  1024. ["Increase Priority" org-agenda-priority-up t]
  1025. ["Decrease Priority" org-agenda-priority-down t]
  1026. ["Show Priority" org-agenda-show-priority t])
  1027. ("Calendar/Diary"
  1028. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
  1029. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
  1030. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
  1031. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
  1032. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
  1033. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
  1034. "--"
  1035. ["Create iCalendar file" org-export-icalendar-combine-agenda-files t])
  1036. "--"
  1037. ("View"
  1038. ["Day View" org-agenda-day-view :active (org-agenda-check-type nil 'agenda)
  1039. :style radio :selected (equal org-agenda-ndays 1)]
  1040. ["Week View" org-agenda-week-view :active (org-agenda-check-type nil 'agenda)
  1041. :style radio :selected (equal org-agenda-ndays 7)]
  1042. ["Month View" org-agenda-month-view :active (org-agenda-check-type nil 'agenda)
  1043. :style radio :selected (member org-agenda-ndays '(28 29 30 31))]
  1044. ["Year View" org-agenda-year-view :active (org-agenda-check-type nil 'agenda)
  1045. :style radio :selected (member org-agenda-ndays '(365 366))]
  1046. "--"
  1047. ["Show Logbook entries" org-agenda-log-mode
  1048. :style toggle :selected org-agenda-show-log :active (org-agenda-check-type nil 'agenda 'timeline)]
  1049. ["Show clock report" org-agenda-clockreport-mode
  1050. :style toggle :selected org-agenda-clockreport-mode :active (org-agenda-check-type nil 'agenda)]
  1051. ["Include Diary" org-agenda-toggle-diary
  1052. :style toggle :selected org-agenda-include-diary :active (org-agenda-check-type nil 'agenda)]
  1053. ["Use Time Grid" org-agenda-toggle-time-grid
  1054. :style toggle :selected org-agenda-use-time-grid :active (org-agenda-check-type nil 'agenda)])
  1055. ["Write view to file" org-write-agenda t]
  1056. ["Rebuild buffer" org-agenda-redo t]
  1057. ["Save all Org-mode Buffers" org-save-all-org-buffers t]
  1058. "--"
  1059. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  1060. "--"
  1061. ["Quit" org-agenda-quit t]
  1062. ["Exit and Release Buffers" org-agenda-exit t]
  1063. ))
  1064. ;;; Agenda undo
  1065. (defvar org-agenda-allow-remote-undo t
  1066. "Non-nil means, allow remote undo from the agenda buffer.")
  1067. (defvar org-agenda-undo-list nil
  1068. "List of undoable operations in the agenda since last refresh.")
  1069. (defvar org-agenda-undo-has-started-in nil
  1070. "Buffers that have already seen `undo-start' in the current undo sequence.")
  1071. (defvar org-agenda-pending-undo-list nil
  1072. "In a series of undo commands, this is the list of remaning undo items.")
  1073. (defun org-agenda-undo ()
  1074. "Undo a remote editing step in the agenda.
  1075. This undoes changes both in the agenda buffer and in the remote buffer
  1076. that have been changed along."
  1077. (interactive)
  1078. (or org-agenda-allow-remote-undo
  1079. (error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo."))
  1080. (if (not (eq this-command last-command))
  1081. (setq org-agenda-undo-has-started-in nil
  1082. org-agenda-pending-undo-list org-agenda-undo-list))
  1083. (if (not org-agenda-pending-undo-list)
  1084. (error "No further undo information"))
  1085. (let* ((entry (pop org-agenda-pending-undo-list))
  1086. buf line cmd rembuf)
  1087. (setq cmd (pop entry) line (pop entry))
  1088. (setq rembuf (nth 2 entry))
  1089. (org-with-remote-undo rembuf
  1090. (while (bufferp (setq buf (pop entry)))
  1091. (if (pop entry)
  1092. (with-current-buffer buf
  1093. (let ((last-undo-buffer buf)
  1094. (inhibit-read-only t))
  1095. (unless (memq buf org-agenda-undo-has-started-in)
  1096. (push buf org-agenda-undo-has-started-in)
  1097. (make-local-variable 'pending-undo-list)
  1098. (undo-start))
  1099. (while (and pending-undo-list
  1100. (listp pending-undo-list)
  1101. (not (car pending-undo-list)))
  1102. (pop pending-undo-list))
  1103. (undo-more 1))))))
  1104. (goto-line line)
  1105. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  1106. (defun org-verify-change-for-undo (l1 l2)
  1107. "Verify that a real change occurred between the undo lists L1 and L2."
  1108. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  1109. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  1110. (not (eq l1 l2)))
  1111. ;;; Agenda dispatch
  1112. (defvar org-agenda-restrict nil)
  1113. (defvar org-agenda-restrict-begin (make-marker))
  1114. (defvar org-agenda-restrict-end (make-marker))
  1115. (defvar org-agenda-last-dispatch-buffer nil)
  1116. (defvar org-agenda-overriding-restriction nil)
  1117. ;;;###autoload
  1118. (defun org-agenda (arg &optional keys restriction)
  1119. "Dispatch agenda commands to collect entries to the agenda buffer.
  1120. Prompts for a command to execute. Any prefix arg will be passed
  1121. on to the selected command. The default selections are:
  1122. a Call `org-agenda-list' to display the agenda for current day or week.
  1123. t Call `org-todo-list' to display the global todo list.
  1124. T Call `org-todo-list' to display the global todo list, select only
  1125. entries with a specific TODO keyword (the user gets a prompt).
  1126. m Call `org-tags-view' to display headlines with tags matching
  1127. a condition (the user is prompted for the condition).
  1128. M Like `m', but select only TODO entries, no ordinary headlines.
  1129. L Create a timeline for the current buffer.
  1130. e Export views to associated files.
  1131. More commands can be added by configuring the variable
  1132. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  1133. searches can be pre-defined in this way.
  1134. If the current buffer is in Org-mode and visiting a file, you can also
  1135. first press `<' once to indicate that the agenda should be temporarily
  1136. \(until the next use of \\[org-agenda]) restricted to the current file.
  1137. Pressing `<' twice means to restrict to the current subtree or region
  1138. \(if active)."
  1139. (interactive "P")
  1140. (catch 'exit
  1141. (let* ((prefix-descriptions nil)
  1142. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  1143. (org-agenda-custom-commands
  1144. ;; normalize different versions
  1145. (delq nil
  1146. (mapcar
  1147. (lambda (x)
  1148. (cond ((stringp (cdr x))
  1149. (push x prefix-descriptions)
  1150. nil)
  1151. ((stringp (nth 1 x)) x)
  1152. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  1153. (t (cons (car x) (cons "" (cdr x))))))
  1154. org-agenda-custom-commands)))
  1155. (buf (current-buffer))
  1156. (bfn (buffer-file-name (buffer-base-buffer)))
  1157. entry key type match lprops ans)
  1158. ;; Turn off restriction unless there is an overriding one
  1159. (unless org-agenda-overriding-restriction
  1160. (put 'org-agenda-files 'org-restrict nil)
  1161. (setq org-agenda-restrict nil)
  1162. (move-marker org-agenda-restrict-begin nil)
  1163. (move-marker org-agenda-restrict-end nil))
  1164. ;; Delete old local properties
  1165. (put 'org-agenda-redo-command 'org-lprops nil)
  1166. ;; Remember where this call originated
  1167. (setq org-agenda-last-dispatch-buffer (current-buffer))
  1168. (unless keys
  1169. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  1170. keys (car ans)
  1171. restriction (cdr ans)))
  1172. ;; Estabish the restriction, if any
  1173. (when (and (not org-agenda-overriding-restriction) restriction)
  1174. (put 'org-agenda-files 'org-restrict (list bfn))
  1175. (cond
  1176. ((eq restriction 'region)
  1177. (setq org-agenda-restrict t)
  1178. (move-marker org-agenda-restrict-begin (region-beginning))
  1179. (move-marker org-agenda-restrict-end (region-end)))
  1180. ((eq restriction 'subtree)
  1181. (save-excursion
  1182. (setq org-agenda-restrict t)
  1183. (org-back-to-heading t)
  1184. (move-marker org-agenda-restrict-begin (point))
  1185. (move-marker org-agenda-restrict-end
  1186. (progn (org-end-of-subtree t)))))))
  1187. (require 'calendar) ; FIXME: can we avoid this for some commands?
  1188. ;; For example the todo list should not need it (but does...)
  1189. (cond
  1190. ((setq entry (assoc keys org-agenda-custom-commands))
  1191. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  1192. (progn
  1193. (setq type (nth 2 entry) match (nth 3 entry) lprops (nth 4 entry))
  1194. (put 'org-agenda-redo-command 'org-lprops lprops)
  1195. (cond
  1196. ((eq type 'agenda)
  1197. (org-let lprops '(org-agenda-list current-prefix-arg)))
  1198. ((eq type 'alltodo)
  1199. (org-let lprops '(org-todo-list current-prefix-arg)))
  1200. ((eq type 'search)
  1201. (org-let lprops '(org-search-view current-prefix-arg match nil)))
  1202. ((eq type 'stuck)
  1203. (org-let lprops '(org-agenda-list-stuck-projects
  1204. current-prefix-arg)))
  1205. ((eq type 'tags)
  1206. (org-let lprops '(org-tags-view current-prefix-arg match)))
  1207. ((eq type 'tags-todo)
  1208. (org-let lprops '(org-tags-view '(4) match)))
  1209. ((eq type 'todo)
  1210. (org-let lprops '(org-todo-list match)))
  1211. ((eq type 'tags-tree)
  1212. (org-check-for-org-mode)
  1213. (org-let lprops '(org-tags-sparse-tree current-prefix-arg match)))
  1214. ((eq type 'todo-tree)
  1215. (org-check-for-org-mode)
  1216. (org-let lprops
  1217. '(org-occur (concat "^" outline-regexp "[ \t]*"
  1218. (regexp-quote match) "\\>"))))
  1219. ((eq type 'occur-tree)
  1220. (org-check-for-org-mode)
  1221. (org-let lprops '(org-occur match)))
  1222. ((functionp type)
  1223. (org-let lprops '(funcall type match)))
  1224. ((fboundp type)
  1225. (org-let lprops '(funcall type match)))
  1226. (t (error "Invalid custom agenda command type %s" type))))
  1227. (org-run-agenda-series (nth 1 entry) (cddr entry))))
  1228. ((equal keys "C")
  1229. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  1230. (customize-variable 'org-agenda-custom-commands))
  1231. ((equal keys "a") (call-interactively 'org-agenda-list))
  1232. ((equal keys "s") (call-interactively 'org-search-view))
  1233. ((equal keys "t") (call-interactively 'org-todo-list))
  1234. ((equal keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  1235. ((equal keys "m") (call-interactively 'org-tags-view))
  1236. ((equal keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  1237. ((equal keys "e") (call-interactively 'org-store-agenda-views))
  1238. ((equal keys "L")
  1239. (unless (org-mode-p)
  1240. (error "This is not an Org-mode file"))
  1241. (unless restriction
  1242. (put 'org-agenda-files 'org-restrict (list bfn))
  1243. (org-call-with-arg 'org-timeline arg)))
  1244. ((equal keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  1245. ((equal keys "/") (call-interactively 'org-occur-in-agenda-files))
  1246. ((equal keys "!") (customize-variable 'org-stuck-projects))
  1247. (t (error "Invalid agenda key"))))))
  1248. (defun org-agenda-normalize-custom-commands (cmds)
  1249. (delq nil
  1250. (mapcar
  1251. (lambda (x)
  1252. (cond ((stringp (cdr x)) nil)
  1253. ((stringp (nth 1 x)) x)
  1254. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  1255. (t (cons (car x) (cons "" (cdr x))))))
  1256. cmds)))
  1257. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  1258. "The user interface for selecting an agenda command."
  1259. (catch 'exit
  1260. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  1261. (restrict-ok (and bfn (org-mode-p)))
  1262. (region-p (org-region-active-p))
  1263. (custom org-agenda-custom-commands)
  1264. (selstring "")
  1265. restriction second-time
  1266. c entry key type match prefixes rmheader header-end custom1 desc)
  1267. (save-window-excursion
  1268. (delete-other-windows)
  1269. (org-switch-to-buffer-other-window " *Agenda Commands*")
  1270. (erase-buffer)
  1271. (insert (eval-when-compile
  1272. (let ((header
  1273. "
  1274. Press key for an agenda command: < Buffer,subtree/region restriction
  1275. -------------------------------- > Remove restriction
  1276. a Agenda for current week or day e Export agenda views
  1277. t List of all TODO entries T Entries with special TODO kwd
  1278. m Match a TAGS query M Like m, but only TODO entries
  1279. L Timeline for current buffer # List stuck projects (!=configure)
  1280. s Search for keywords C Configure custom agenda commands
  1281. / Multi-occur
  1282. ")
  1283. (start 0))
  1284. (while (string-match
  1285. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  1286. header start)
  1287. (setq start (match-end 0))
  1288. (add-text-properties (match-beginning 2) (match-end 2)
  1289. '(face bold) header))
  1290. header)))
  1291. (setq header-end (move-marker (make-marker) (point)))
  1292. (while t
  1293. (setq custom1 custom)
  1294. (when (eq rmheader t)
  1295. (goto-line 1)
  1296. (re-search-forward ":" nil t)
  1297. (delete-region (match-end 0) (point-at-eol))
  1298. (forward-char 1)
  1299. (looking-at "-+")
  1300. (delete-region (match-end 0) (point-at-eol))
  1301. (move-marker header-end (match-end 0)))
  1302. (goto-char header-end)
  1303. (delete-region (point) (point-max))
  1304. (while (setq entry (pop custom1))
  1305. (setq key (car entry) desc (nth 1 entry)
  1306. type (nth 2 entry) match (nth 3 entry))
  1307. (if (> (length key) 1)
  1308. (add-to-list 'prefixes (string-to-char key))
  1309. (insert
  1310. (format
  1311. "\n%-4s%-14s: %s"
  1312. (org-add-props (copy-sequence key)
  1313. '(face bold))
  1314. (cond
  1315. ((string-match "\\S-" desc) desc)
  1316. ((eq type 'agenda) "Agenda for current week or day")
  1317. ((eq type 'alltodo) "List of all TODO entries")
  1318. ((eq type 'search) "Word search")
  1319. ((eq type 'stuck) "List of stuck projects")
  1320. ((eq type 'todo) "TODO keyword")
  1321. ((eq type 'tags) "Tags query")
  1322. ((eq type 'tags-todo) "Tags (TODO)")
  1323. ((eq type 'tags-tree) "Tags tree")
  1324. ((eq type 'todo-tree) "TODO kwd tree")
  1325. ((eq type 'occur-tree) "Occur tree")
  1326. ((functionp type) (if (symbolp type)
  1327. (symbol-name type)
  1328. "Lambda expression"))
  1329. (t "???"))
  1330. (cond
  1331. ((stringp match)
  1332. (org-add-props match nil 'face 'org-warning))
  1333. (match
  1334. (format "set of %d commands" (length match)))
  1335. (t ""))))))
  1336. (when prefixes
  1337. (mapc (lambda (x)
  1338. (insert
  1339. (format "\n%s %s"
  1340. (org-add-props (char-to-string x)
  1341. nil 'face 'bold)
  1342. (or (cdr (assoc (concat selstring (char-to-string x))
  1343. prefix-descriptions))
  1344. "Prefix key"))))
  1345. prefixes))
  1346. (goto-char (point-min))
  1347. (when (fboundp 'fit-window-to-buffer)
  1348. (if second-time
  1349. (if (not (pos-visible-in-window-p (point-max)))
  1350. (fit-window-to-buffer))
  1351. (setq second-time t)
  1352. (fit-window-to-buffer)))
  1353. (message "Press key for agenda command%s:"
  1354. (if (or restrict-ok org-agenda-overriding-restriction)
  1355. (if org-agenda-overriding-restriction
  1356. " (restriction lock active)"
  1357. (if restriction
  1358. (format " (restricted to %s)" restriction)
  1359. " (unrestricted)"))
  1360. ""))
  1361. (setq c (read-char-exclusive))
  1362. (message "")
  1363. (cond
  1364. ((assoc (char-to-string c) custom)
  1365. (setq selstring (concat selstring (char-to-string c)))
  1366. (throw 'exit (cons selstring restriction)))
  1367. ((memq c prefixes)
  1368. (setq selstring (concat selstring (char-to-string c))
  1369. prefixes nil
  1370. rmheader (or rmheader t)
  1371. custom (delq nil (mapcar
  1372. (lambda (x)
  1373. (if (or (= (length (car x)) 1)
  1374. (/= (string-to-char (car x)) c))
  1375. nil
  1376. (cons (substring (car x) 1) (cdr x))))
  1377. custom))))
  1378. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  1379. (message "Restriction is only possible in Org-mode buffers")
  1380. (ding) (sit-for 1))
  1381. ((eq c ?1)
  1382. (org-agenda-remove-restriction-lock 'noupdate)
  1383. (setq restriction 'buffer))
  1384. ((eq c ?0)
  1385. (org-agenda-remove-restriction-lock 'noupdate)
  1386. (setq restriction (if region-p 'region 'subtree)))
  1387. ((eq c ?<)
  1388. (org-agenda-remove-restriction-lock 'noupdate)
  1389. (setq restriction
  1390. (cond
  1391. ((eq restriction 'buffer)
  1392. (if region-p 'region 'subtree))
  1393. ((memq restriction '(subtree region))
  1394. nil)
  1395. (t 'buffer))))
  1396. ((eq c ?>)
  1397. (org-agenda-remove-restriction-lock 'noupdate)
  1398. (setq restriction nil))
  1399. ((and (equal selstring "") (memq c '(?s ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/)))
  1400. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  1401. ((and (> (length selstring) 0) (eq c ?\d))
  1402. (delete-window)
  1403. (org-agenda-get-restriction-and-command prefix-descriptions))
  1404. ((equal c ?q) (error "Abort"))
  1405. (t (error "Invalid key %c" c))))))))
  1406. (defun org-run-agenda-series (name series)
  1407. (org-prepare-agenda name)
  1408. (let* ((org-agenda-multi t)
  1409. (redo (list 'org-run-agenda-series name (list 'quote series)))
  1410. (cmds (car series))
  1411. (gprops (nth 1 series))
  1412. match ;; The byte compiler incorrectly complains about this. Keep it!
  1413. cmd type lprops)
  1414. (while (setq cmd (pop cmds))
  1415. (setq type (car cmd) match (nth 1 cmd) lprops (nth 2 cmd))
  1416. (cond
  1417. ((eq type 'agenda)
  1418. (org-let2 gprops lprops
  1419. '(call-interactively 'org-agenda-list)))
  1420. ((eq type 'alltodo)
  1421. (org-let2 gprops lprops
  1422. '(call-interactively 'org-todo-list)))
  1423. ((eq type 'search)
  1424. (org-let2 gprops lprops
  1425. '(org-search-view current-prefix-arg match nil)))
  1426. ((eq type 'stuck)
  1427. (org-let2 gprops lprops
  1428. '(call-interactively 'org-agenda-list-stuck-projects)))
  1429. ((eq type 'tags)
  1430. (org-let2 gprops lprops
  1431. '(org-tags-view current-prefix-arg match)))
  1432. ((eq type 'tags-todo)
  1433. (org-let2 gprops lprops
  1434. '(org-tags-view '(4) match)))
  1435. ((eq type 'todo)
  1436. (org-let2 gprops lprops
  1437. '(org-todo-list match)))
  1438. ((fboundp type)
  1439. (org-let2 gprops lprops
  1440. '(funcall type match)))
  1441. (t (error "Invalid type in command series"))))
  1442. (widen)
  1443. (setq org-agenda-redo-command redo)
  1444. (goto-char (point-min)))
  1445. (org-finalize-agenda))
  1446. ;;;###autoload
  1447. (defmacro org-batch-agenda (cmd-key &rest parameters)
  1448. "Run an agenda command in batch mode and send the result to STDOUT.
  1449. If CMD-KEY is a string of length 1, it is used as a key in
  1450. `org-agenda-custom-commands' and triggers this command. If it is a
  1451. longer string it is used as a tags/todo match string.
  1452. Paramters are alternating variable names and values that will be bound
  1453. before running the agenda command."
  1454. (let (pars)
  1455. (while parameters
  1456. (push (list (pop parameters) (if parameters (pop parameters))) pars))
  1457. (if (> (length cmd-key) 2)
  1458. (eval (list 'let (nreverse pars)
  1459. (list 'org-tags-view nil cmd-key)))
  1460. (eval (list 'let (nreverse pars) (list 'org-agenda nil cmd-key))))
  1461. (set-buffer org-agenda-buffer-name)
  1462. (princ (org-encode-for-stdout (buffer-string)))))
  1463. (defun org-encode-for-stdout (string)
  1464. (if (fboundp 'encode-coding-string)
  1465. (encode-coding-string string buffer-file-coding-system)
  1466. string))
  1467. (defvar org-agenda-info nil)
  1468. ;;;###autoload
  1469. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  1470. "Run an agenda command in batch mode and send the result to STDOUT.
  1471. If CMD-KEY is a string of length 1, it is used as a key in
  1472. `org-agenda-custom-commands' and triggers this command. If it is a
  1473. longer string it is used as a tags/todo match string.
  1474. Paramters are alternating variable names and values that will be bound
  1475. before running the agenda command.
  1476. The output gives a line for each selected agenda item. Each
  1477. item is a list of comma-separated values, like this:
  1478. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  1479. category The category of the item
  1480. head The headline, without TODO kwd, TAGS and PRIORITY
  1481. type The type of the agenda entry, can be
  1482. todo selected in TODO match
  1483. tagsmatch selected in tags match
  1484. diary imported from diary
  1485. deadline a deadline on given date
  1486. scheduled scheduled on given date
  1487. timestamp entry has timestamp on given date
  1488. closed entry was closed on given date
  1489. upcoming-deadline warning about deadline
  1490. past-scheduled forwarded scheduled item
  1491. block entry has date block including g. date
  1492. todo The todo keyword, if any
  1493. tags All tags including inherited ones, separated by colons
  1494. date The relevant date, like 2007-2-14
  1495. time The time, like 15:00-16:50
  1496. extra Sting with extra planning info
  1497. priority-l The priority letter if any was given
  1498. priority-n The computed numerical priority
  1499. agenda-day The day in the agenda where this is listed"
  1500. (let (pars)
  1501. (while parameters
  1502. (push (list (pop parameters) (if parameters (pop parameters))) pars))
  1503. (push (list 'org-agenda-remove-tags t) pars)
  1504. (if (> (length cmd-key) 2)
  1505. (eval (list 'let (nreverse pars)
  1506. (list 'org-tags-view nil cmd-key)))
  1507. (eval (list 'let (nreverse pars) (list 'org-agenda nil cmd-key))))
  1508. (set-buffer org-agenda-buffer-name)
  1509. (let* ((lines (org-split-string (buffer-string) "\n"))
  1510. line)
  1511. (while (setq line (pop lines))
  1512. (catch 'next
  1513. (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
  1514. (setq org-agenda-info
  1515. (org-fix-agenda-info (text-properties-at 0 line)))
  1516. (princ
  1517. (org-encode-for-stdout
  1518. (mapconcat 'org-agenda-export-csv-mapper
  1519. '(org-category txt type todo tags date time-of-day extra
  1520. priority-letter priority agenda-day)
  1521. ",")))
  1522. (princ "\n"))))))
  1523. (defun org-fix-agenda-info (props)
  1524. "Make sure all properties on an agenda item have a canonical form,
  1525. so the export commands can easily use it."
  1526. (let (tmp re)
  1527. (when (setq tmp (plist-get props 'tags))
  1528. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  1529. (when (setq tmp (plist-get props 'date))
  1530. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  1531. (let ((calendar-date-display-form '(year "-" month "-" day)))
  1532. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  1533. (setq tmp (calendar-date-string tmp)))
  1534. (setq props (plist-put props 'date tmp)))
  1535. (when (setq tmp (plist-get props 'day))
  1536. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  1537. (let ((calendar-date-display-form '(year "-" month "-" day)))
  1538. (setq tmp (calendar-date-string tmp)))
  1539. (setq props (plist-put props 'day tmp))
  1540. (setq props (plist-put props 'agenda-day tmp)))
  1541. (when (setq tmp (plist-get props 'txt))
  1542. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  1543. (plist-put props 'priority-letter (match-string 1 tmp))
  1544. (setq tmp (replace-match "" t t tmp)))
  1545. (when (and (setq re (plist-get props 'org-todo-regexp))
  1546. (setq re (concat "\\`\\.*" re " ?"))
  1547. (string-match re tmp))
  1548. (plist-put props 'todo (match-string 1 tmp))
  1549. (setq tmp (replace-match "" t t tmp)))
  1550. (plist-put props 'txt tmp)))
  1551. props)
  1552. (defun org-agenda-export-csv-mapper (prop)
  1553. (let ((res (plist-get org-agenda-info prop)))
  1554. (setq res
  1555. (cond
  1556. ((not res) "")
  1557. ((stringp res) res)
  1558. (t (prin1-to-string res))))
  1559. (while (string-match "," res)
  1560. (setq res (replace-match ";" t t res)))
  1561. (org-trim res)))
  1562. ;;;###autoload
  1563. (defun org-store-agenda-views (&rest parameters)
  1564. (interactive)
  1565. (eval (list 'org-batch-store-agenda-views)))
  1566. ;; FIXME, why is this a macro?????
  1567. ;;;###autoload
  1568. (defmacro org-batch-store-agenda-views (&rest parameters)
  1569. "Run all custom agenda commands that have a file argument."
  1570. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  1571. (pop-up-frames nil)
  1572. (dir default-directory)
  1573. pars cmd thiscmdkey files opts)
  1574. (while parameters
  1575. (push (list (pop parameters) (if parameters (pop parameters))) pars))
  1576. (setq pars (reverse pars))
  1577. (save-window-excursion
  1578. (while cmds
  1579. (setq cmd (pop cmds)
  1580. thiscmdkey (car cmd)
  1581. opts (nth 4 cmd)
  1582. files (nth 5 cmd))
  1583. (if (stringp files) (setq files (list files)))
  1584. (when files
  1585. (eval (list 'let (append org-agenda-exporter-settings opts pars)
  1586. (list 'org-agenda nil thiscmdkey)))
  1587. (set-buffer org-agenda-buffer-name)
  1588. (while files
  1589. (eval (list 'let (append org-agenda-exporter-settings opts pars)
  1590. (list 'org-write-agenda
  1591. (expand-file-name (pop files) dir) t))))
  1592. (and (get-buffer org-agenda-buffer-name)
  1593. (kill-buffer org-agenda-buffer-name)))))))
  1594. (defun org-write-agenda (file &optional nosettings)
  1595. "Write the current buffer (an agenda view) as a file.
  1596. Depending on the extension of the file name, plain text (.txt),
  1597. HTML (.html or .htm) or Postscript (.ps) is produced.
  1598. If the extension is .ics, run icalendar export over all files used
  1599. to construct the agenda and limit the export to entries listed in the
  1600. agenda now.
  1601. If NOSETTINGS is given, do not scope the settings of
  1602. `org-agenda-exporter-settings' into the export commands. This is used when
  1603. the settings have already been scoped and we do not wish to overrule other,
  1604. higher priority settings."
  1605. (interactive "FWrite agenda to file: ")
  1606. (if (not (file-writable-p file))
  1607. (error "Cannot write agenda to file %s" file))
  1608. (cond
  1609. ((string-match "\\.html?\\'" file) (require 'htmlize))
  1610. ((string-match "\\.ps\\'" file) (require 'ps-print)))
  1611. (org-let (if nosettings nil org-agenda-exporter-settings)
  1612. '(save-excursion
  1613. (save-window-excursion
  1614. (cond
  1615. ((string-match "\\.html?\\'" file)
  1616. (set-buffer (htmlize-buffer (current-buffer)))
  1617. (when (and org-agenda-export-html-style
  1618. (string-match "<style>" org-agenda-export-html-style))
  1619. ;; replace <style> section with org-agenda-export-html-style
  1620. (goto-char (point-min))
  1621. (kill-region (- (search-forward "<style") 6)
  1622. (search-forward "</style>"))
  1623. (insert org-agenda-export-html-style))
  1624. (write-file file)
  1625. (kill-buffer (current-buffer))
  1626. (message "HTML written to %s" file))
  1627. ((string-match "\\.ps\\'" file)
  1628. (ps-print-buffer-with-faces file)
  1629. (message "Postscript written to %s" file))
  1630. ((string-match "\\.ics\\'" file)
  1631. (let ((org-agenda-marker-table
  1632. (org-create-marker-find-array
  1633. (org-agenda-collect-markers)))
  1634. (org-icalendar-verify-function 'org-check-agenda-marker-table)
  1635. (org-combined-agenda-icalendar-file file))
  1636. (apply 'org-export-icalendar 'combine (org-agenda-files))))
  1637. (t
  1638. (let ((bs (buffer-string)))
  1639. (find-file file)
  1640. (insert bs)
  1641. (save-buffer 0)
  1642. (kill-buffer (current-buffer))
  1643. (message "Plain text written to %s" file))))))
  1644. (set-buffer org-agenda-buffer-name)))
  1645. (defun org-agenda-collect-markers ()
  1646. "Collect the markers pointing to entries in the agenda buffer."
  1647. (let (m markers)
  1648. (save-excursion
  1649. (goto-char (point-min))
  1650. (while (not (eobp))
  1651. (when (setq m (or (get-text-property (point) 'org-hd-marker)
  1652. (get-text-property (point) 'org-marker)))
  1653. (push m markers))
  1654. (beginning-of-line 2)))
  1655. (nreverse markers)))
  1656. (defun org-create-marker-find-array (marker-list)
  1657. "Create a alist of files names with all marker positions in that file."
  1658. (let (f tbl m a p)
  1659. (while (setq m (pop marker-list))
  1660. (setq p (marker-position m)
  1661. f (buffer-file-name (or (buffer-base-buffer
  1662. (marker-buffer m))
  1663. (marker-buffer m))))
  1664. (if (setq a (assoc f tbl))
  1665. (push (marker-position m) (cdr a))
  1666. (push (list f p) tbl)))
  1667. (mapcar (lambda (x) (setcdr x (sort (copy-sequence (cdr x)) '<)) x)
  1668. tbl)))
  1669. (defvar org-agenda-marker-table nil) ; dyamically scoped parameter
  1670. (defun org-check-agenda-marker-table ()
  1671. "Check of the current entry is on the marker list."
  1672. (let ((file (buffer-file-name (or (buffer-base-buffer) (current-buffer))))
  1673. a)
  1674. (and (setq a (assoc file org-agenda-marker-table))
  1675. (save-match-data
  1676. (save-excursion
  1677. (org-back-to-heading t)
  1678. (member (point) (cdr a)))))))
  1679. (defun org-check-for-org-mode ()
  1680. "Make sure current buffer is in org-mode. Error if not."
  1681. (or (org-mode-p)
  1682. (error "Cannot execute org-mode agenda command on buffer in %s."
  1683. major-mode)))
  1684. (defun org-fit-agenda-window ()
  1685. "Fit the window to the buffer size."
  1686. (and (memq org-agenda-window-setup '(reorganize-frame))
  1687. (fboundp 'fit-window-to-buffer)
  1688. (fit-window-to-buffer
  1689. nil
  1690. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  1691. (floor (* (frame-height) (car org-agenda-window-frame-fractions))))))
  1692. ;;; Agenda prepare and finalize
  1693. (defvar org-agenda-multi nil) ; dynammically scoped
  1694. (defvar org-agenda-buffer-name "*Org Agenda*")
  1695. (defvar org-pre-agenda-window-conf nil)
  1696. (defvar org-agenda-name nil)
  1697. (defun org-prepare-agenda (&optional name)
  1698. (setq org-todo-keywords-for-agenda nil)
  1699. (setq org-done-keywords-for-agenda nil)
  1700. (if org-agenda-multi
  1701. (progn
  1702. (setq buffer-read-only nil)
  1703. (goto-char (point-max))
  1704. (unless (or (bobp) org-agenda-compact-blocks)
  1705. (insert "\n" (make-string (window-width) ?=) "\n"))
  1706. (narrow-to-region (point) (point-max)))
  1707. (org-agenda-reset-markers)
  1708. (org-prepare-agenda-buffers (org-agenda-files))
  1709. (setq org-todo-keywords-for-agenda
  1710. (org-uniquify org-todo-keywords-for-agenda))
  1711. (setq org-done-keywords-for-agenda
  1712. (org-uniquify org-done-keywords-for-agenda))
  1713. (let* ((abuf (get-buffer-create org-agenda-buffer-name))
  1714. (awin (get-buffer-window abuf)))
  1715. (cond
  1716. ((equal (current-buffer) abuf) nil)
  1717. (awin (select-window awin))
  1718. ((not (setq org-pre-agenda-window-conf (current-window-configuration))))
  1719. ((equal org-agenda-window-setup 'current-window)
  1720. (switch-to-buffer abuf))
  1721. ((equal org-agenda-window-setup 'other-window)
  1722. (org-switch-to-buffer-other-window abuf))
  1723. ((equal org-agenda-window-setup 'other-frame)
  1724. (switch-to-buffer-other-frame abuf))
  1725. ((equal org-agenda-window-setup 'reorganize-frame)
  1726. (delete-other-windows)
  1727. (org-switch-to-buffer-other-window abuf))))
  1728. (setq buffer-read-only nil)
  1729. (erase-buffer)
  1730. (org-agenda-mode)
  1731. (and name (not org-agenda-name)
  1732. (org-set-local 'org-agenda-name name)))
  1733. (setq buffer-read-only nil))
  1734. (defun org-finalize-agenda ()
  1735. "Finishing touch for the agenda buffer, called just before displaying it."
  1736. (unless org-agenda-multi
  1737. (save-excursion
  1738. (let ((inhibit-read-only t))
  1739. (goto-char (point-min))
  1740. (while (org-activate-bracket-links (point-max))
  1741. (add-text-properties (match-beginning 0) (match-end 0)
  1742. '(face org-link)))
  1743. (org-agenda-align-tags)
  1744. (unless org-agenda-with-colors
  1745. (remove-text-properties (point-min) (point-max) '(face nil))))
  1746. (if (and (boundp 'org-overriding-columns-format)
  1747. org-overriding-columns-format)
  1748. (org-set-local 'org-overriding-columns-format
  1749. org-overriding-columns-format))
  1750. (if (and (boundp 'org-agenda-view-columns-initially)
  1751. org-agenda-view-columns-initially)
  1752. (org-agenda-columns))
  1753. (when org-agenda-fontify-priorities
  1754. (org-fontify-priorities))
  1755. (run-hooks 'org-finalize-agenda-hook)
  1756. (setq org-agenda-type (get-text-property (point) 'org-agenda-type))
  1757. )))
  1758. (defun org-fontify-priorities ()
  1759. "Make highest priority lines bold, and lowest italic."
  1760. (interactive)
  1761. (mapc (lambda (o) (if (eq (org-overlay-get o 'org-type) 'org-priority)
  1762. (org-delete-overlay o)))
  1763. (org-overlays-in (point-min) (point-max)))
  1764. (save-excursion
  1765. (let ((inhibit-read-only t)
  1766. b e p ov h l)
  1767. (goto-char (point-min))
  1768. (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
  1769. (setq h (or (get-char-property (point) 'org-highest-priority)
  1770. org-highest-priority)
  1771. l (or (get-char-property (point) 'org-lowest-priority)
  1772. org-lowest-priority)
  1773. p (string-to-char (match-string 1))
  1774. b (match-beginning 0) e (point-at-eol)
  1775. ov (org-make-overlay b e))
  1776. (org-overlay-put
  1777. ov 'face
  1778. (cond ((listp org-agenda-fontify-priorities)
  1779. (cdr (assoc p org-agenda-fontify-priorities)))
  1780. ((equal p l) 'italic)
  1781. ((equal p h) 'bold)))
  1782. (org-overlay-put ov 'org-type 'org-priority)))))
  1783. (defvar org-agenda-skip-function nil
  1784. "Function to be called at each match during agenda construction.
  1785. If this function returns nil, the current match should not be skipped.
  1786. Otherwise, the function must return a position from where the search
  1787. should be continued.
  1788. This may also be a Lisp form, it will be evaluated.
  1789. Never set this variable using `setq' or so, because then it will apply
  1790. to all future agenda commands. Instead, bind it with `let' to scope
  1791. it dynamically into the agenda-constructing command. A good way to set
  1792. it is through options in org-agenda-custom-commands.")
  1793. (defun org-agenda-skip ()
  1794. "Throw to `:skip' in places that should be skipped.
  1795. Also moves point to the end of the skipped region, so that search can
  1796. continue from there."
  1797. (let ((p (point-at-bol)) to fp)
  1798. (and org-agenda-skip-archived-trees
  1799. (get-text-property p :org-archived)
  1800. (org-end-of-subtree t)
  1801. (throw :skip t))
  1802. (and (get-text-property p :org-comment)
  1803. (org-end-of-subtree t)
  1804. (throw :skip t))
  1805. (if (equal (char-after p) ?#) (throw :skip t))
  1806. (when (and (or (setq fp (functionp org-agenda-skip-function))
  1807. (consp org-agenda-skip-function))
  1808. (setq to (save-excursion
  1809. (save-match-data
  1810. (if fp
  1811. (funcall org-agenda-skip-function)
  1812. (eval org-agenda-skip-function))))))
  1813. (goto-char to)
  1814. (throw :skip t))))
  1815. (defvar org-agenda-markers nil
  1816. "List of all currently active markers created by `org-agenda'.")
  1817. (defvar org-agenda-last-marker-time (time-to-seconds (current-time))
  1818. "Creation time of the last agenda marker.")
  1819. (defun org-agenda-new-marker (&optional pos)
  1820. "Return a new agenda marker.
  1821. Org-mode keeps a list of these markers and resets them when they are
  1822. no longer in use."
  1823. (let ((m (copy-marker (or pos (point)))))
  1824. (setq org-agenda-last-marker-time (time-to-seconds (current-time)))
  1825. (push m org-agenda-markers)
  1826. m))
  1827. (defun org-agenda-reset-markers ()
  1828. "Reset markers created by `org-agenda'."
  1829. (while org-agenda-markers
  1830. (move-marker (pop org-agenda-markers) nil)))
  1831. ;;; Agenda timeline
  1832. (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
  1833. (defun org-timeline (&optional include-all)
  1834. "Show a time-sorted view of the entries in the current org file.
  1835. Only entries with a time stamp of today or later will be listed. With
  1836. \\[universal-argument] prefix, all unfinished TODO items will also be shown,
  1837. under the current date.
  1838. If the buffer contains an active region, only check the region for
  1839. dates."
  1840. (interactive "P")
  1841. (require 'calendar)
  1842. (org-compile-prefix-format 'timeline)
  1843. (org-set-sorting-strategy 'timeline)
  1844. (let* ((dopast t)
  1845. (dotodo include-all)
  1846. (doclosed org-agenda-show-log)
  1847. (entry buffer-file-name)
  1848. (date (calendar-current-date))
  1849. (beg (if (org-region-active-p) (region-beginning) (point-min)))
  1850. (end (if (org-region-active-p) (region-end) (point-max)))
  1851. (day-numbers (org-get-all-dates beg end 'no-ranges
  1852. t doclosed ; always include today
  1853. org-timeline-show-empty-dates))
  1854. (org-deadline-warning-days 0)
  1855. (org-agenda-only-exact-dates t)
  1856. (today (time-to-days (current-time)))
  1857. (past t)
  1858. args
  1859. s e rtn d emptyp wd)
  1860. (setq org-agenda-redo-command
  1861. (list 'progn
  1862. (list 'org-switch-to-buffer-other-window (current-buffer))
  1863. (list 'org-timeline (list 'quote include-all))))
  1864. (if (not dopast)
  1865. ;; Remove past dates from the list of dates.
  1866. (setq day-numbers (delq nil (mapcar (lambda(x)
  1867. (if (>= x today) x nil))
  1868. day-numbers))))
  1869. (org-prepare-agenda (concat "Timeline "
  1870. (file-name-nondirectory buffer-file-name)))
  1871. (if doclosed (push :closed args))
  1872. (push :timestamp args)
  1873. (push :deadline args)
  1874. (push :scheduled args)
  1875. (push :sexp args)
  1876. (if dotodo (push :todo args))
  1877. (while (setq d (pop day-numbers))
  1878. (if (and (listp d) (eq (car d) :omitted))
  1879. (progn
  1880. (setq s (point))
  1881. (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
  1882. (put-text-property s (1- (point)) 'face 'org-agenda-structure))
  1883. (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
  1884. (if (and (>= d today)
  1885. dopast
  1886. past)
  1887. (progn
  1888. (setq past nil)
  1889. (insert (make-string 79 ?-) "\n")))
  1890. (setq date (calendar-gregorian-from-absolute d)
  1891. wd (calendar-day-of-week date))
  1892. (setq s (point))
  1893. (setq rtn (and (not emptyp)
  1894. (apply 'org-agenda-get-day-entries entry
  1895. date args)))
  1896. (if (or rtn (equal d today) org-timeline-show-empty-dates)
  1897. (progn
  1898. (insert
  1899. (if (stringp org-agenda-format-date)
  1900. (format-time-string org-agenda-format-date
  1901. (org-time-from-absolute date))
  1902. (funcall org-agenda-format-date date))
  1903. "\n")
  1904. (put-text-property s (1- (point)) 'face
  1905. (if (member wd org-agenda-weekend-days)
  1906. 'org-agenda-date-weekend
  1907. 'org-agenda-date))
  1908. (put-text-property s (1- (point)) 'org-date-line t)
  1909. (if (equal d today)
  1910. (put-text-property s (1- (point)) 'org-today t))
  1911. (and rtn (insert (org-finalize-agenda-entries rtn) "\n"))
  1912. (put-text-property s (1- (point)) 'day d)))))
  1913. (goto-char (point-min))
  1914. (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
  1915. (point-min)))
  1916. (add-text-properties (point-min) (point-max) '(org-agenda-type timeline))
  1917. (org-finalize-agenda)
  1918. (setq buffer-read-only t)))
  1919. (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
  1920. "Return a list of all relevant day numbers from BEG to END buffer positions.
  1921. If NO-RANGES is non-nil, include only the start and end dates of a range,
  1922. not every single day in the range. If FORCE-TODAY is non-nil, make
  1923. sure that TODAY is included in the list. If INACTIVE is non-nil, also
  1924. inactive time stamps (those in square brackets) are included.
  1925. When EMPTY is non-nil, also include days without any entries."
  1926. (let ((re (concat
  1927. (if pre-re pre-re "")
  1928. (if inactive org-ts-regexp-both org-ts-regexp)))
  1929. dates dates1 date day day1 day2 ts1 ts2)
  1930. (if force-today
  1931. (setq dates (list (time-to-days (current-time)))))
  1932. (save-excursion
  1933. (goto-char beg)
  1934. (while (re-search-forward re end t)
  1935. (setq day (time-to-days (org-time-string-to-time
  1936. (substring (match-string 1) 0 10))))
  1937. (or (memq day dates) (push day dates)))
  1938. (unless no-ranges
  1939. (goto-char beg)
  1940. (while (re-search-forward org-tr-regexp end t)
  1941. (setq ts1 (substring (match-string 1) 0 10)
  1942. ts2 (substring (match-string 2) 0 10)
  1943. day1 (time-to-days (org-time-string-to-time ts1))
  1944. day2 (time-to-days (org-time-string-to-time ts2)))
  1945. (while (< (setq day1 (1+ day1)) day2)
  1946. (or (memq day1 dates) (push day1 dates)))))
  1947. (setq dates (sort dates '<))
  1948. (when empty
  1949. (while (setq day (pop dates))
  1950. (setq day2 (car dates))
  1951. (push day dates1)
  1952. (when (and day2 empty)
  1953. (if (or (eq empty t)
  1954. (and (numberp empty) (<= (- day2 day) empty)))
  1955. (while (< (setq day (1+ day)) day2)
  1956. (push (list day) dates1))
  1957. (push (cons :omitted (- day2 day)) dates1))))
  1958. (setq dates (nreverse dates1)))
  1959. dates)))
  1960. ;;; Agenda Daily/Weekly
  1961. (defvar org-agenda-overriding-arguments nil) ; dynamically scoped parameter
  1962. (defvar org-agenda-start-day nil) ; dynamically scoped parameter
  1963. (defvar org-agenda-last-arguments nil
  1964. "The arguments of the previous call to org-agenda")
  1965. (defvar org-starting-day nil) ; local variable in the agenda buffer
  1966. (defvar org-agenda-span nil) ; local variable in the agenda buffer
  1967. (defvar org-include-all-loc nil) ; local variable
  1968. (defvar org-agenda-remove-date nil) ; dynamically scoped FIXME: not used???
  1969. ;;;###autoload
  1970. (defun org-agenda-list (&optional include-all start-day ndays)
  1971. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  1972. The view will be for the current day or week, but from the overview buffer
  1973. you will be able to go to other days/weeks.
  1974. With one \\[universal-argument] prefix argument INCLUDE-ALL,
  1975. all unfinished TODO items will also be shown, before the agenda.
  1976. This feature is considered obsolete, please use the TODO list or a block
  1977. agenda instead.
  1978. With a numeric prefix argument in an interactive call, the agenda will
  1979. span INCLUDE-ALL days. Lisp programs should instead specify NDAYS to change
  1980. the number of days. NDAYS defaults to `org-agenda-ndays'.
  1981. START-DAY defaults to TODAY, or to the most recent match for the weekday
  1982. given in `org-agenda-start-on-weekday'."
  1983. (interactive "P")
  1984. (if (and (integerp include-all) (> include-all 0))
  1985. (setq ndays include-all include-all nil))
  1986. (setq ndays (or ndays org-agenda-ndays)
  1987. start-day (or start-day org-agenda-start-day))
  1988. (if org-agenda-overriding-arguments
  1989. (setq include-all (car org-agenda-overriding-arguments)
  1990. start-day (nth 1 org-agenda-overriding-arguments)
  1991. ndays (nth 2 org-agenda-overriding-arguments)))
  1992. (if (stringp start-day)
  1993. ;; Convert to an absolute day number
  1994. (setq start-day (time-to-days (org-read-date nil t start-day))))
  1995. (setq org-agenda-last-arguments (list include-all start-day ndays))
  1996. (org-compile-prefix-format 'agenda)
  1997. (org-set-sorting-strategy 'agenda)
  1998. (require 'calendar)
  1999. (let* ((org-agenda-start-on-weekday
  2000. (if (or (equal ndays 7) (and (null ndays) (equal 7 org-agenda-ndays)))
  2001. org-agenda-start-on-weekday nil))
  2002. (thefiles (org-agenda-files))
  2003. (files thefiles)
  2004. (today (time-to-days
  2005. (time-subtract (current-time)
  2006. (list 0 (* 3600 org-extend-today-until) 0))))
  2007. (sd (or start-day today))
  2008. (start (if (or (null org-agenda-start-on-weekday)
  2009. (< org-agenda-ndays 7))
  2010. sd
  2011. (let* ((nt (calendar-day-of-week
  2012. (calendar-gregorian-from-absolute sd)))
  2013. (n1 org-agenda-start-on-weekday)
  2014. (d (- nt n1)))
  2015. (- sd (+ (if (< d 0) 7 0) d)))))
  2016. (day-numbers (list start))
  2017. (day-cnt 0)
  2018. (inhibit-redisplay (not debug-on-error))
  2019. s e rtn rtnall file date d start-pos end-pos todayp nd wd
  2020. clocktable-start clocktable-end)
  2021. (setq org-agenda-redo-command
  2022. (list 'org-agenda-list (list 'quote include-all) start-day ndays))
  2023. ;; Make the list of days
  2024. (setq ndays (or ndays org-agenda-ndays)
  2025. nd ndays)
  2026. (while (> ndays 1)
  2027. (push (1+ (car day-numbers)) day-numbers)
  2028. (setq ndays (1- ndays)))
  2029. (setq day-numbers (nreverse day-numbers))
  2030. (setq clocktable-start (car day-numbers)
  2031. clocktable-end (1+ (or (org-last day-numbers) 0)))
  2032. (org-prepare-agenda "Day/Week")
  2033. (org-set-local 'org-starting-day (car day-numbers))
  2034. (org-set-local 'org-include-all-loc include-all)
  2035. (org-set-local 'org-agenda-span
  2036. (org-agenda-ndays-to-span nd))
  2037. (when (and (or include-all org-agenda-include-all-todo)
  2038. (member today day-numbers))
  2039. (setq files thefiles
  2040. rtnall nil)
  2041. (while (setq file (pop files))
  2042. (catch 'nextfile
  2043. (org-check-agenda-file file)
  2044. (setq date (calendar-gregorian-from-absolute today)
  2045. rtn (org-agenda-get-day-entries
  2046. file date :todo))
  2047. (setq rtnall (append rtnall rtn))))
  2048. (when rtnall
  2049. (insert "ALL CURRENTLY OPEN TODO ITEMS:\n")
  2050. (add-text-properties (point-min) (1- (point))
  2051. (list 'face 'org-agenda-structure))
  2052. (insert (org-finalize-agenda-entries rtnall) "\n")))
  2053. (unless org-agenda-compact-blocks
  2054. (let* ((d1 (car day-numbers))
  2055. (d2 (org-last day-numbers))
  2056. (w1 (org-days-to-iso-week d1))
  2057. (w2 (org-days-to-iso-week d2)))
  2058. (setq s (point))
  2059. (insert (capitalize (symbol-name (org-agenda-ndays-to-span nd)))
  2060. "-agenda"
  2061. (if (< (- d2 d1) 350)
  2062. (if (= w1 w2)
  2063. (format " (W%02d)" w1)
  2064. (format " (W%02d-W%02d)" w1 w2))
  2065. "")
  2066. ":\n"))
  2067. (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
  2068. 'org-date-line t)))
  2069. (while (setq d (pop day-numbers))
  2070. (setq date (calendar-gregorian-from-absolute d)
  2071. wd (calendar-day-of-week date)
  2072. s (point))
  2073. (if (or (setq todayp (= d today))
  2074. (and (not start-pos) (= d sd)))
  2075. (setq start-pos (point))
  2076. (if (and start-pos (not end-pos))
  2077. (setq end-pos (point))))
  2078. (setq files thefiles
  2079. rtnall nil)
  2080. (while (setq file (pop files))
  2081. (catch 'nextfile
  2082. (org-check-agenda-file file)
  2083. (if org-agenda-show-log
  2084. (setq rtn (org-agenda-get-day-entries
  2085. file date
  2086. :deadline :scheduled :timestamp :sexp :closed))
  2087. (setq rtn (org-agenda-get-day-entries
  2088. file date
  2089. :deadline :scheduled :sexp :timestamp)))
  2090. (setq rtnall (append rtnall rtn))))
  2091. (if org-agenda-include-diary
  2092. (progn
  2093. (require 'diary-lib)
  2094. (setq rtn (org-get-entries-from-diary date))
  2095. (setq rtnall (append rtnall rtn))))
  2096. (if (or rtnall org-agenda-show-all-dates)
  2097. (progn
  2098. (setq day-cnt (1+ day-cnt))
  2099. (insert
  2100. (if (stringp org-agenda-format-date)
  2101. (format-time-string org-agenda-format-date
  2102. (org-time-from-absolute date))
  2103. (funcall org-agenda-format-date date))
  2104. "\n")
  2105. (put-text-property s (1- (point)) 'face
  2106. (if (member wd org-agenda-weekend-days)
  2107. 'org-agenda-date-weekend
  2108. 'org-agenda-date))
  2109. (put-text-property s (1- (point)) 'org-date-line t)
  2110. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  2111. (if todayp (put-text-property s (1- (point)) 'org-today t))
  2112. (if rtnall (insert
  2113. (org-finalize-agenda-entries
  2114. (org-agenda-add-time-grid-maybe
  2115. rtnall nd todayp))
  2116. "\n"))
  2117. (put-text-property s (1- (point)) 'day d)
  2118. (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
  2119. (when (and org-agenda-clockreport-mode clocktable-start)
  2120. (let ((org-agenda-files (org-agenda-files))
  2121. ;; the above line is to ensure the restricted range!
  2122. (p org-agenda-clockreport-parameter-plist)
  2123. tbl)
  2124. (setq p (org-plist-delete p :block))
  2125. (setq p (plist-put p :tstart clocktable-start))
  2126. (setq p (plist-put p :tend clocktable-end))
  2127. (setq p (plist-put p :scope 'agenda))
  2128. (setq tbl (apply 'org-get-clocktable p))
  2129. (insert tbl)))
  2130. (goto-char (point-min))
  2131. (org-fit-agenda-window)
  2132. (unless (and (pos-visible-in-window-p (point-min))
  2133. (pos-visible-in-window-p (point-max)))
  2134. (goto-char (1- (point-max)))
  2135. (recenter -1)
  2136. (if (not (pos-visible-in-window-p (or start-pos 1)))
  2137. (progn
  2138. (goto-char (or start-pos 1))
  2139. (recenter 1))))
  2140. (goto-char (or start-pos 1))
  2141. (add-text-properties (point-min) (point-max) '(org-agenda-type agenda))
  2142. (org-finalize-agenda)
  2143. (setq buffer-read-only t)
  2144. (message "")))
  2145. (defun org-agenda-ndays-to-span (n)
  2146. (cond ((< n 7) 'day) ((= n 7) 'week) ((< n 32) 'month) (t 'year)))
  2147. ;;; Agenda word search
  2148. (defvar org-agenda-search-history nil)
  2149. (defvar org-todo-only nil)
  2150. (defvar org-search-syntax-table nil
  2151. "Special syntax table for org-mode search.
  2152. In this table, we have single quotes not as word constituents, to
  2153. that when \"+Ameli\" is searchd as a work, it will also match \"Ameli's\"")
  2154. (defun org-search-syntax-table ()
  2155. (unless org-search-syntax-table
  2156. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  2157. (modify-syntax-entry ?' "." org-search-syntax-table)
  2158. (modify-syntax-entry ?` "." org-search-syntax-table))
  2159. org-search-syntax-table)
  2160. ;;;###autoload
  2161. (defun org-search-view (&optional todo-only string edit-at)
  2162. "Show all entries that contain words or regular expressions.
  2163. If the first character of the search string is an asterisks,
  2164. search only the headlines.
  2165. With optional prefix argument TODO-ONLY, only consider entries that are
  2166. TODO entries. The argument STRING can be used to pass a default search
  2167. string into this function. If EDIT-AT is non-nil, it means that the
  2168. user should get a chance to edit this string, with cursor at position
  2169. EDIT-AT.
  2170. The search string is broken into \"words\" by splitting at whitespace.
  2171. The individual words are then interpreted as a boolean expression with
  2172. logical AND. Words prefixed with a minus must not occur in the entry.
  2173. Words without a prefix or prefixed with a plus must occur in the entry.
  2174. Matching is case-insensitive and the words are enclosed by word delimiters.
  2175. Words enclosed by curly braces are interpreted as regular expressions
  2176. that must or must not match in the entry.
  2177. If the search string starts with an asterisk, search only in headlines.
  2178. If (possibly after the leading star) the search string starts with an
  2179. exclamation mark, this also means to look at TODO entries only, an effect
  2180. that can also be achieved with a prefix argument.
  2181. This command searches the agenda files, and in addition the files listed
  2182. in `org-agenda-text-search-extra-files'."
  2183. (interactive "P")
  2184. (org-compile-prefix-format 'search)
  2185. (org-set-sorting-strategy 'search)
  2186. (org-prepare-agenda "SEARCH")
  2187. (let* ((props (list 'face nil
  2188. 'done-face 'org-done
  2189. 'org-not-done-regexp org-not-done-regexp
  2190. 'org-todo-regexp org-todo-regexp
  2191. 'mouse-face 'highlight
  2192. 'keymap org-agenda-keymap
  2193. 'help-echo (format "mouse-2 or RET jump to location")))
  2194. regexp rtn rtnall files file pos
  2195. marker priority category tags c neg re
  2196. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  2197. (unless (and (not edit-at)
  2198. (stringp string)
  2199. (string-match "\\S-" string))
  2200. (setq string (read-string "[+-]Word/{Regexp} ...: "
  2201. (cond
  2202. ((integerp edit-at) (cons string edit-at))
  2203. (edit-at string))
  2204. 'org-agenda-search-history)))
  2205. (org-set-local 'org-todo-only todo-only)
  2206. (setq org-agenda-redo-command
  2207. (list 'org-search-view (if todo-only t nil) string
  2208. '(if current-prefix-arg 1 nil)))
  2209. (setq org-agenda-query-string string)
  2210. (if (equal (string-to-char string) ?*)
  2211. (setq hdl-only t
  2212. words (substring string 1))
  2213. (setq words string))
  2214. (when (equal (string-to-char words) ?!)
  2215. (setq todo-only t
  2216. words (substring words 1)))
  2217. (setq words (org-split-string words))
  2218. (mapc (lambda (w)
  2219. (setq c (string-to-char w))
  2220. (if (equal c ?-)
  2221. (setq neg t w (substring w 1))
  2222. (if (equal c ?+)
  2223. (setq neg nil w (substring w 1))
  2224. (setq neg nil)))
  2225. (if (string-match "\\`{.*}\\'" w)
  2226. (setq re (substring w 1 -1))
  2227. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>")))
  2228. (if neg (push re regexps-) (push re regexps+)))
  2229. words)
  2230. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  2231. (if (not regexps+)
  2232. (setq regexp (concat "^" org-outline-regexp))
  2233. (setq regexp (pop regexps+))
  2234. (if hdl-only (setq regexp (concat "^" org-outline-regexp ".*?"
  2235. regexp))))
  2236. (setq files (append (org-agenda-files) org-agenda-text-search-extra-files)
  2237. rtnall nil)
  2238. (while (setq file (pop files))
  2239. (setq ee nil)
  2240. (catch 'nextfile
  2241. (org-check-agenda-file file)
  2242. (setq buffer (if (file-exists-p file)
  2243. (org-get-agenda-file-buffer file)
  2244. (error "No such file %s" file)))
  2245. (if (not buffer)
  2246. ;; If file does not exist, make sure an error message is sent
  2247. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  2248. file))))
  2249. (with-current-buffer buffer
  2250. (with-syntax-table (org-search-syntax-table)
  2251. (unless (org-mode-p)
  2252. (error "Agenda file %s is not in `org-mode'" file))
  2253. (let ((case-fold-search t))
  2254. (save-excursion
  2255. (save-restriction
  2256. (if org-agenda-restrict
  2257. (narrow-to-region org-agenda-restrict-begin
  2258. org-agenda-restrict-end)
  2259. (widen))
  2260. (goto-char (point-min))
  2261. (unless (or (org-on-heading-p)
  2262. (outline-next-heading))
  2263. (throw 'nextfile t))
  2264. (goto-char (max (point-min) (1- (point))))
  2265. (while (re-search-forward regexp nil t)
  2266. (org-back-to-heading t)
  2267. (skip-chars-forward "* ")
  2268. (setq beg (point-at-bol)
  2269. beg1 (point)
  2270. end (progn (outline-next-heading) (point)))
  2271. (catch :skip
  2272. (goto-char beg)
  2273. (org-agenda-skip)
  2274. (setq str (buffer-substring-no-properties
  2275. (point-at-bol)
  2276. (if hdl-only (point-at-eol) end)))
  2277. (mapc (lambda (wr) (when (string-match wr str)
  2278. (goto-char (1- end))
  2279. (throw :skip t)))
  2280. regexps-)
  2281. (mapc (lambda (wr) (unless (string-match wr str)
  2282. (goto-char (1- end))
  2283. (throw :skip t)))
  2284. (if todo-only
  2285. (cons (concat "^\*+[ \t]+" org-not-done-regexp)
  2286. regexps+)
  2287. regexps+))
  2288. (goto-char beg)
  2289. (setq marker (org-agenda-new-marker (point))
  2290. category (org-get-category)
  2291. tags (org-get-tags-at (point))
  2292. txt (org-format-agenda-item
  2293. ""
  2294. (buffer-substring-no-properties
  2295. beg1 (point-at-eol))
  2296. category tags))
  2297. (org-add-props txt props
  2298. 'org-marker marker 'org-hd-marker marker
  2299. 'org-todo-regexp org-todo-regexp
  2300. 'priority 1000 'org-category category
  2301. 'type "search")
  2302. (push txt ee)
  2303. (goto-char (1- end))))))))))
  2304. (setq rtn (nreverse ee))
  2305. (setq rtnall (append rtnall rtn)))
  2306. (if org-agenda-overriding-header
  2307. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  2308. nil 'face 'org-agenda-structure) "\n")
  2309. (insert "Search words: ")
  2310. (add-text-properties (point-min) (1- (point))
  2311. (list 'face 'org-agenda-structure))
  2312. (setq pos (point))
  2313. (insert string "\n")
  2314. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  2315. (setq pos (point))
  2316. (unless org-agenda-multi
  2317. (insert "Press `[', `]' to add/sub word, `{', `}' to add/sub regexp, `C-u r' to edit\n")
  2318. (add-text-properties pos (1- (point))
  2319. (list 'face 'org-agenda-structure))))
  2320. (when rtnall
  2321. (insert (org-finalize-agenda-entries rtnall) "\n"))
  2322. (goto-char (point-min))
  2323. (org-fit-agenda-window)
  2324. (add-text-properties (point-min) (point-max) '(org-agenda-type search))
  2325. (org-finalize-agenda)
  2326. (setq buffer-read-only t)))
  2327. ;;; Agenda TODO list
  2328. (defvar org-select-this-todo-keyword nil)
  2329. (defvar org-last-arg nil)
  2330. ;;;###autoload
  2331. (defun org-todo-list (arg)
  2332. "Show all TODO entries from all agenda file in a single list.
  2333. The prefix arg can be used to select a specific TODO keyword and limit
  2334. the list to these. When using \\[universal-argument], you will be prompted
  2335. for a keyword. A numeric prefix directly selects the Nth keyword in
  2336. `org-todo-keywords-1'."
  2337. (interactive "P")
  2338. (require 'calendar)
  2339. (org-compile-prefix-format 'todo)
  2340. (org-set-sorting-strategy 'todo)
  2341. (org-prepare-agenda "TODO")
  2342. (let* ((today (time-to-days (current-time)))
  2343. (date (calendar-gregorian-from-absolute today))
  2344. (kwds org-todo-keywords-for-agenda)
  2345. (completion-ignore-case t)
  2346. (org-select-this-todo-keyword
  2347. (if (stringp arg) arg
  2348. (and arg (integerp arg) (> arg 0)
  2349. (nth (1- arg) kwds))))
  2350. rtn rtnall files file pos)
  2351. (when (equal arg '(4))
  2352. (setq org-select-this-todo-keyword
  2353. (completing-read "Keyword (or KWD1|K2D2|...): "
  2354. (mapcar 'list kwds) nil nil)))
  2355. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  2356. (org-set-local 'org-last-arg arg)
  2357. (setq org-agenda-redo-command
  2358. '(org-todo-list (or current-prefix-arg org-last-arg)))
  2359. (setq files (org-agenda-files)
  2360. rtnall nil)
  2361. (while (setq file (pop files))
  2362. (catch 'nextfile
  2363. (org-check-agenda-file file)
  2364. (setq rtn (org-agenda-get-day-entries file date :todo))
  2365. (setq rtnall (append rtnall rtn))))
  2366. (if org-agenda-overriding-header
  2367. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  2368. nil 'face 'org-agenda-structure) "\n")
  2369. (insert "Global list of TODO items of type: ")
  2370. (add-text-properties (point-min) (1- (point))
  2371. (list 'face 'org-agenda-structure))
  2372. (setq pos (point))
  2373. (insert (or org-select-this-todo-keyword "ALL") "\n")
  2374. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  2375. (setq pos (point))
  2376. (unless org-agenda-multi
  2377. (insert "Available with `N r': (0)ALL")
  2378. (let ((n 0) s)
  2379. (mapc (lambda (x)
  2380. (setq s (format "(%d)%s" (setq n (1+ n)) x))
  2381. (if (> (+ (current-column) (string-width s) 1) (frame-width))
  2382. (insert "\n "))
  2383. (insert " " s))
  2384. kwds))
  2385. (insert "\n"))
  2386. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  2387. (when rtnall
  2388. (insert (org-finalize-agenda-entries rtnall) "\n"))
  2389. (goto-char (point-min))
  2390. (org-fit-agenda-window)
  2391. (add-text-properties (point-min) (point-max) '(org-agenda-type todo))
  2392. (org-finalize-agenda)
  2393. (setq buffer-read-only t)))
  2394. ;;; Agenda tags match
  2395. ;;;###autoload
  2396. (defun org-tags-view (&optional todo-only match)
  2397. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  2398. The prefix arg TODO-ONLY limits the search to TODO entries."
  2399. (interactive "P")
  2400. (org-compile-prefix-format 'tags)
  2401. (org-set-sorting-strategy 'tags)
  2402. (let* ((org-tags-match-list-sublevels
  2403. (if todo-only t org-tags-match-list-sublevels))
  2404. (completion-ignore-case t)
  2405. rtn rtnall files file pos matcher
  2406. buffer)
  2407. (setq matcher (org-make-tags-matcher match)
  2408. match (car matcher) matcher (cdr matcher))
  2409. (org-prepare-agenda (concat "TAGS " match))
  2410. (setq org-agenda-query-string match)
  2411. (setq org-agenda-redo-command
  2412. (list 'org-tags-view (list 'quote todo-only)
  2413. (list 'if 'current-prefix-arg nil 'org-agenda-query-string)))
  2414. (setq files (org-agenda-files)
  2415. rtnall nil)
  2416. (while (setq file (pop files))
  2417. (catch 'nextfile
  2418. (org-check-agenda-file file)
  2419. (setq buffer (if (file-exists-p file)
  2420. (org-get-agenda-file-buffer file)
  2421. (error "No such file %s" file)))
  2422. (if (not buffer)
  2423. ;; If file does not exist, merror message to agenda
  2424. (setq rtn (list
  2425. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  2426. rtnall (append rtnall rtn))
  2427. (with-current-buffer buffer
  2428. (unless (org-mode-p)
  2429. (error "Agenda file %s is not in `org-mode'" file))
  2430. (save-excursion
  2431. (save-restriction
  2432. (if org-agenda-restrict
  2433. (narrow-to-region org-agenda-restrict-begin
  2434. org-agenda-restrict-end)
  2435. (widen))
  2436. (setq rtn (org-scan-tags 'agenda matcher todo-only))
  2437. (setq rtnall (append rtnall rtn))))))))
  2438. (if org-agenda-overriding-header
  2439. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  2440. nil 'face 'org-agenda-structure) "\n")
  2441. (insert "Headlines with TAGS match: ")
  2442. (add-text-properties (point-min) (1- (point))
  2443. (list 'face 'org-agenda-structure))
  2444. (setq pos (point))
  2445. (insert match "\n")
  2446. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  2447. (setq pos (point))
  2448. (unless org-agenda-multi
  2449. (insert "Press `C-u r' to search again with new search string\n"))
  2450. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  2451. (when rtnall
  2452. (insert (org-finalize-agenda-entries rtnall) "\n"))
  2453. (goto-char (point-min))
  2454. (org-fit-agenda-window)
  2455. (add-text-properties (point-min) (point-max) '(org-agenda-type tags))
  2456. (org-finalize-agenda)
  2457. (setq buffer-read-only t)))
  2458. ;;; Agenda Finding stuck projects
  2459. (defvar org-agenda-skip-regexp nil
  2460. "Regular expression used in skipping subtrees for the agenda.
  2461. This is basically a temporary global variable that can be set and then
  2462. used by user-defined selections using `org-agenda-skip-function'.")
  2463. (defvar org-agenda-overriding-header nil
  2464. "When this is set during todo and tags searches, will replace header.")
  2465. (defun org-agenda-skip-subtree-when-regexp-matches ()
  2466. "Checks if the current subtree contains match for `org-agenda-skip-regexp'.
  2467. If yes, it returns the end position of this tree, causing agenda commands
  2468. to skip this subtree. This is a function that can be put into
  2469. `org-agenda-skip-function' for the duration of a command."
  2470. (let ((end (save-excursion (org-end-of-subtree t)))
  2471. skip)
  2472. (save-excursion
  2473. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  2474. (and skip end)))
  2475. (defun org-agenda-skip-entry-if (&rest conditions)
  2476. "Skip entry if any of CONDITIONS is true.
  2477. See `org-agenda-skip-if' for details."
  2478. (org-agenda-skip-if nil conditions))
  2479. (defun org-agenda-skip-subtree-if (&rest conditions)
  2480. "Skip entry if any of CONDITIONS is true.
  2481. See `org-agenda-skip-if' for details."
  2482. (org-agenda-skip-if t conditions))
  2483. (defun org-agenda-skip-if (subtree conditions)
  2484. "Checks current entity for CONDITIONS.
  2485. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  2486. the entry, i.e. the text before the next heading is checked.
  2487. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  2488. from different tests. Valid conditions are:
  2489. scheduled Check if there is a scheduled cookie
  2490. notscheduled Check if there is no scheduled cookie
  2491. deadline Check if there is a deadline
  2492. notdeadline Check if there is no deadline
  2493. regexp Check if regexp matches
  2494. notregexp Check if regexp does not match.
  2495. The regexp is taken from the conditions list, it must come right after
  2496. the `regexp' or `notregexp' element.
  2497. If any of these conditions is met, this function returns the end point of
  2498. the entity, causing the search to continue from there. This is a function
  2499. that can be put into `org-agenda-skip-function' for the duration of a command."
  2500. (let (beg end m)
  2501. (org-back-to-heading t)
  2502. (setq beg (point)
  2503. end (if subtree
  2504. (progn (org-end-of-subtree t) (point))
  2505. (progn (outline-next-heading) (1- (point)))))
  2506. (goto-char beg)
  2507. (and
  2508. (or
  2509. (and (memq 'scheduled conditions)
  2510. (re-search-forward org-scheduled-time-regexp end t))
  2511. (and (memq 'notscheduled conditions)
  2512. (not (re-search-forward org-scheduled-time-regexp end t)))
  2513. (and (memq 'deadline conditions)
  2514. (re-search-forward org-deadline-time-regexp end t))
  2515. (and (memq 'notdeadline conditions)
  2516. (not (re-search-forward org-deadline-time-regexp end t)))
  2517. (and (setq m (memq 'regexp conditions))
  2518. (stringp (nth 1 m))
  2519. (re-search-forward (nth 1 m) end t))
  2520. (and (setq m (memq 'notregexp conditions))
  2521. (stringp (nth 1 m))
  2522. (not (re-search-forward (nth 1 m) end t))))
  2523. end)))
  2524. ;;;###autoload
  2525. (defun org-agenda-list-stuck-projects (&rest ignore)
  2526. "Create agenda view for projects that are stuck.
  2527. Stuck projects are project that have no next actions. For the definitions
  2528. of what a project is and how to check if it stuck, customize the variable
  2529. `org-stuck-projects'.
  2530. MATCH is being ignored."
  2531. (interactive)
  2532. (let* ((org-agenda-skip-function 'org-agenda-skip-subtree-when-regexp-matches)
  2533. ;; We could have used org-agenda-skip-if here.
  2534. (org-agenda-overriding-header "List of stuck projects: ")
  2535. (matcher (nth 0 org-stuck-projects))
  2536. (todo (nth 1 org-stuck-projects))
  2537. (todo-wds (if (member "*" todo)
  2538. (progn
  2539. (org-prepare-agenda-buffers (org-agenda-files))
  2540. (org-delete-all
  2541. org-done-keywords-for-agenda
  2542. (copy-sequence org-todo-keywords-for-agenda)))
  2543. todo))
  2544. (todo-re (concat "^\\*+[ \t]+\\("
  2545. (mapconcat 'identity todo-wds "\\|")
  2546. "\\)\\>"))
  2547. (tags (nth 2 org-stuck-projects))
  2548. (tags-re (if (member "*" tags)
  2549. (org-re "^\\*+ .*:[[:alnum:]_@]+:[ \t]*$")
  2550. (concat "^\\*+ .*:\\("
  2551. (mapconcat 'identity tags "\\|")
  2552. (org-re "\\):[[:alnum:]_@:]*[ \t]*$"))))
  2553. (gen-re (nth 3 org-stuck-projects))
  2554. (re-list
  2555. (delq nil
  2556. (list
  2557. (if todo todo-re)
  2558. (if tags tags-re)
  2559. (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
  2560. gen-re)))))
  2561. (setq org-agenda-skip-regexp
  2562. (if re-list
  2563. (mapconcat 'identity re-list "\\|")
  2564. (error "No information how to identify unstuck projects")))
  2565. (org-tags-view nil matcher)
  2566. (with-current-buffer org-agenda-buffer-name
  2567. (setq org-agenda-redo-command
  2568. '(org-agenda-list-stuck-projects
  2569. (or current-prefix-arg org-last-arg))))))
  2570. ;;; Diary integration
  2571. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  2572. (defvar list-diary-entries-hook)
  2573. (defun org-get-entries-from-diary (date)
  2574. "Get the (Emacs Calendar) diary entries for DATE."
  2575. (require 'diary-lib)
  2576. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  2577. (fancy-diary-buffer diary-fancy-buffer)
  2578. (diary-display-hook '(fancy-diary-display))
  2579. (pop-up-frames nil)
  2580. (list-diary-entries-hook
  2581. (cons 'org-diary-default-entry list-diary-entries-hook))
  2582. (diary-file-name-prefix-function nil) ; turn this feature off
  2583. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  2584. entries
  2585. (org-disable-agenda-to-diary t))
  2586. (save-excursion
  2587. (save-window-excursion
  2588. (funcall (if (fboundp 'diary-list-entries)
  2589. 'diary-list-entries 'list-diary-entries)
  2590. date 1)))
  2591. (if (not (get-buffer diary-fancy-buffer))
  2592. (setq entries nil)
  2593. (with-current-buffer diary-fancy-buffer
  2594. (setq buffer-read-only nil)
  2595. (if (zerop (buffer-size))
  2596. ;; No entries
  2597. (setq entries nil)
  2598. ;; Omit the date and other unnecessary stuff
  2599. (org-agenda-cleanup-fancy-diary)
  2600. ;; Add prefix to each line and extend the text properties
  2601. (if (zerop (buffer-size))
  2602. (setq entries nil)
  2603. (setq entries (buffer-substring (point-min) (- (point-max) 1)))))
  2604. (set-buffer-modified-p nil)
  2605. (kill-buffer diary-fancy-buffer)))
  2606. (when entries
  2607. (setq entries (org-split-string entries "\n"))
  2608. (setq entries
  2609. (mapcar
  2610. (lambda (x)
  2611. (setq x (org-format-agenda-item "" x "Diary" nil 'time))
  2612. ;; Extend the text properties to the beginning of the line
  2613. (org-add-props x (text-properties-at (1- (length x)) x)
  2614. 'type "diary" 'date date))
  2615. entries)))))
  2616. (defun org-agenda-cleanup-fancy-diary ()
  2617. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  2618. This gets rid of the date, the underline under the date, and
  2619. the dummy entry installed by `org-mode' to ensure non-empty diary for each
  2620. date. It also removes lines that contain only whitespace."
  2621. (goto-char (point-min))
  2622. (if (looking-at ".*?:[ \t]*")
  2623. (progn
  2624. (replace-match "")
  2625. (re-search-forward "\n=+$" nil t)
  2626. (replace-match "")
  2627. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  2628. (re-search-forward "\n=+$" nil t)
  2629. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  2630. (goto-char (point-min))
  2631. (while (re-search-forward "^ +\n" nil t)
  2632. (replace-match ""))
  2633. (goto-char (point-min))
  2634. (if (re-search-forward "^Org-mode dummy\n?" nil t)
  2635. (replace-match "")))
  2636. ;; Make sure entries from the diary have the right text properties.
  2637. (eval-after-load "diary-lib"
  2638. '(if (boundp 'diary-modify-entry-list-string-function)
  2639. ;; We can rely on the hook, nothing to do
  2640. nil
  2641. ;; Hook not avaiable, must use advice to make this work
  2642. (defadvice add-to-diary-list (before org-mark-diary-entry activate)
  2643. "Make the position visible."
  2644. (if (and org-disable-agenda-to-diary ;; called from org-agenda
  2645. (stringp string)
  2646. buffer-file-name)
  2647. (setq string (org-modify-diary-entry-string string))))))
  2648. (defun org-modify-diary-entry-string (string)
  2649. "Add text properties to string, allowing org-mode to act on it."
  2650. (org-add-props string nil
  2651. 'mouse-face 'highlight
  2652. 'keymap org-agenda-keymap
  2653. 'help-echo (if buffer-file-name
  2654. (format "mouse-2 or RET jump to diary file %s"
  2655. (abbreviate-file-name buffer-file-name))
  2656. "")
  2657. 'org-agenda-diary-link t
  2658. 'org-marker (org-agenda-new-marker (point-at-bol))))
  2659. (defun org-diary-default-entry ()
  2660. "Add a dummy entry to the diary.
  2661. Needed to avoid empty dates which mess up holiday display."
  2662. ;; Catch the error if dealing with the new add-to-diary-alist
  2663. (when org-disable-agenda-to-diary
  2664. (condition-case nil
  2665. (add-to-diary-list original-date "Org-mode dummy" "")
  2666. (error
  2667. (add-to-diary-list original-date "Org-mode dummy" "" nil)))))
  2668. ;;;###autoload
  2669. (defun org-diary (&rest args)
  2670. "Return diary information from org-files.
  2671. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  2672. It accesses org files and extracts information from those files to be
  2673. listed in the diary. The function accepts arguments specifying what
  2674. items should be listed. The following arguments are allowed:
  2675. :timestamp List the headlines of items containing a date stamp or
  2676. date range matching the selected date. Deadlines will
  2677. also be listed, on the expiration day.
  2678. :sexp List entries resulting from diary-like sexps.
  2679. :deadline List any deadlines past due, or due within
  2680. `org-deadline-warning-days'. The listing occurs only
  2681. in the diary for *today*, not at any other date. If
  2682. an entry is marked DONE, it is no longer listed.
  2683. :scheduled List all items which are scheduled for the given date.
  2684. The diary for *today* also contains items which were
  2685. scheduled earlier and are not yet marked DONE.
  2686. :todo List all TODO items from the org-file. This may be a
  2687. long list - so this is not turned on by default.
  2688. Like deadlines, these entries only show up in the
  2689. diary for *today*, not at any other date.
  2690. The call in the diary file should look like this:
  2691. &%%(org-diary) ~/path/to/some/orgfile.org
  2692. Use a separate line for each org file to check. Or, if you omit the file name,
  2693. all files listed in `org-agenda-files' will be checked automatically:
  2694. &%%(org-diary)
  2695. If you don't give any arguments (as in the example above), the default
  2696. arguments (:deadline :scheduled :timestamp :sexp) are used.
  2697. So the example above may also be written as
  2698. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  2699. The function expects the lisp variables `entry' and `date' to be provided
  2700. by the caller, because this is how the calendar works. Don't use this
  2701. function from a program - use `org-agenda-get-day-entries' instead."
  2702. (when (> (- (time-to-seconds (current-time))
  2703. org-agenda-last-marker-time)
  2704. 5)
  2705. (org-agenda-reset-markers))
  2706. (org-compile-prefix-format 'agenda)
  2707. (org-set-sorting-strategy 'agenda)
  2708. (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
  2709. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  2710. (list entry)
  2711. (org-agenda-files t)))
  2712. file rtn results)
  2713. (org-prepare-agenda-buffers files)
  2714. ;; If this is called during org-agenda, don't return any entries to
  2715. ;; the calendar. Org Agenda will list these entries itself.
  2716. (if org-disable-agenda-to-diary (setq files nil))
  2717. (while (setq file (pop files))
  2718. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  2719. (setq results (append results rtn)))
  2720. (if results
  2721. (concat (org-finalize-agenda-entries results) "\n"))))
  2722. ;;; Agenda entry finders
  2723. (defun org-agenda-get-day-entries (file date &rest args)
  2724. "Does the work for `org-diary' and `org-agenda'.
  2725. FILE is the path to a file to be checked for entries. DATE is date like
  2726. the one returned by `calendar-current-date'. ARGS are symbols indicating
  2727. which kind of entries should be extracted. For details about these, see
  2728. the documentation of `org-diary'."
  2729. (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
  2730. (let* ((org-startup-folded nil)
  2731. (org-startup-align-all-tables nil)
  2732. (buffer (if (file-exists-p file)
  2733. (org-get-agenda-file-buffer file)
  2734. (error "No such file %s" file)))
  2735. arg results rtn)
  2736. (if (not buffer)
  2737. ;; If file does not exist, make sure an error message ends up in diary
  2738. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  2739. (with-current-buffer buffer
  2740. (unless (org-mode-p)
  2741. (error "Agenda file %s is not in `org-mode'" file))
  2742. (let ((case-fold-search nil))
  2743. (save-excursion
  2744. (save-restriction
  2745. (if org-agenda-restrict
  2746. (narrow-to-region org-agenda-restrict-begin
  2747. org-agenda-restrict-end)
  2748. (widen))
  2749. ;; The way we repeatedly append to `results' makes it O(n^2) :-(
  2750. (while (setq arg (pop args))
  2751. (cond
  2752. ((and (eq arg :todo)
  2753. (equal date (calendar-current-date)))
  2754. (setq rtn (org-agenda-get-todos))
  2755. (setq results (append results rtn)))
  2756. ((eq arg :timestamp)
  2757. (setq rtn (org-agenda-get-blocks))
  2758. (setq results (append results rtn))
  2759. (setq rtn (org-agenda-get-timestamps))
  2760. (setq results (append results rtn)))
  2761. ((eq arg :sexp)
  2762. (setq rtn (org-agenda-get-sexps))
  2763. (setq results (append results rtn)))
  2764. ((eq arg :scheduled)
  2765. (setq rtn (org-agenda-get-scheduled))
  2766. (setq results (append results rtn)))
  2767. ((eq arg :closed)
  2768. (setq rtn (org-agenda-get-closed))
  2769. (setq results (append results rtn)))
  2770. ((eq arg :deadline)
  2771. (setq rtn (org-agenda-get-deadlines))
  2772. (setq results (append results rtn))))))))
  2773. results))))
  2774. (defun org-agenda-get-todos ()
  2775. "Return the TODO information for agenda display."
  2776. (let* ((props (list 'face nil
  2777. 'done-face 'org-done
  2778. 'org-not-done-regexp org-not-done-regexp
  2779. 'org-todo-regexp org-todo-regexp
  2780. 'mouse-face 'highlight
  2781. 'keymap org-agenda-keymap
  2782. 'help-echo
  2783. (format "mouse-2 or RET jump to org file %s"
  2784. (abbreviate-file-name buffer-file-name))))
  2785. (regexp (concat "^\\*+[ \t]+\\("
  2786. (if org-select-this-todo-keyword
  2787. (if (equal org-select-this-todo-keyword "*")
  2788. org-todo-regexp
  2789. (concat "\\<\\("
  2790. (mapconcat 'identity (org-split-string org-select-this-todo-keyword "|") "\\|")
  2791. "\\)\\>"))
  2792. org-not-done-regexp)
  2793. "[^\n\r]*\\)"))
  2794. marker priority category tags
  2795. ee txt beg end)
  2796. (goto-char (point-min))
  2797. (while (re-search-forward regexp nil t)
  2798. (catch :skip
  2799. (save-match-data
  2800. (beginning-of-line)
  2801. (setq beg (point) end (progn (outline-next-heading) (point)))
  2802. (when (or (and org-agenda-todo-ignore-with-date (goto-char beg)
  2803. (re-search-forward org-ts-regexp end t))
  2804. (and org-agenda-todo-ignore-scheduled (goto-char beg)
  2805. (re-search-forward org-scheduled-time-regexp end t))
  2806. (and org-agenda-todo-ignore-deadlines (goto-char beg)
  2807. (re-search-forward org-deadline-time-regexp end t)
  2808. (org-deadline-close (match-string 1))))
  2809. (goto-char (1+ beg))
  2810. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  2811. (throw :skip nil)))
  2812. (goto-char beg)
  2813. (org-agenda-skip)
  2814. (goto-char (match-beginning 1))
  2815. (setq marker (org-agenda-new-marker (match-beginning 0))
  2816. category (org-get-category)
  2817. tags (org-get-tags-at (point))
  2818. txt (org-format-agenda-item "" (match-string 1) category tags)
  2819. priority (1+ (org-get-priority txt)))
  2820. (org-add-props txt props
  2821. 'org-marker marker 'org-hd-marker marker
  2822. 'priority priority 'org-category category
  2823. 'type "todo")
  2824. (push txt ee)
  2825. (if org-agenda-todo-list-sublevels
  2826. (goto-char (match-end 1))
  2827. (org-end-of-subtree 'invisible))))
  2828. (nreverse ee)))
  2829. (defconst org-agenda-no-heading-message
  2830. "No heading for this item in buffer or region.")
  2831. (defun org-agenda-get-timestamps ()
  2832. "Return the date stamp information for agenda display."
  2833. (let* ((props (list 'face nil
  2834. 'org-not-done-regexp org-not-done-regexp
  2835. 'org-todo-regexp org-todo-regexp
  2836. 'mouse-face 'highlight
  2837. 'keymap org-agenda-keymap
  2838. 'help-echo
  2839. (format "mouse-2 or RET jump to org file %s"
  2840. (abbreviate-file-name buffer-file-name))))
  2841. (d1 (calendar-absolute-from-gregorian date))
  2842. (remove-re
  2843. (concat
  2844. (regexp-quote
  2845. (format-time-string
  2846. "<%Y-%m-%d"
  2847. (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
  2848. ".*?>"))
  2849. (regexp
  2850. (concat
  2851. (regexp-quote
  2852. (substring
  2853. (format-time-string
  2854. (car org-time-stamp-formats)
  2855. (apply 'encode-time ; DATE bound by calendar
  2856. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  2857. 0 11))
  2858. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[dwmy]>\\)"
  2859. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  2860. marker hdmarker deadlinep scheduledp donep tmp priority category
  2861. ee txt timestr tags b0 b3 e3 head)
  2862. (goto-char (point-min))
  2863. (while (re-search-forward regexp nil t)
  2864. (setq b0 (match-beginning 0)
  2865. b3 (match-beginning 3) e3 (match-end 3))
  2866. (catch :skip
  2867. (and (org-at-date-range-p) (throw :skip nil))
  2868. (org-agenda-skip)
  2869. (if (and (match-end 1)
  2870. (not (= d1 (org-time-string-to-absolute
  2871. (match-string 1) d1 nil
  2872. org-agenda-repeating-timestamp-show-all))))
  2873. (throw :skip nil))
  2874. (if (and e3
  2875. (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
  2876. (throw :skip nil))
  2877. (setq marker (org-agenda-new-marker b0)
  2878. category (org-get-category b0)
  2879. tmp (buffer-substring (max (point-min)
  2880. (- b0 org-ds-keyword-length))
  2881. b0)
  2882. timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
  2883. deadlinep (string-match org-deadline-regexp tmp)
  2884. scheduledp (string-match org-scheduled-regexp tmp)
  2885. donep (org-entry-is-done-p))
  2886. (if (or scheduledp deadlinep) (throw :skip t))
  2887. (if (string-match ">" timestr)
  2888. ;; substring should only run to end of time stamp
  2889. (setq timestr (substring timestr 0 (match-end 0))))
  2890. (save-excursion
  2891. (if (re-search-backward "^\\*+ " nil t)
  2892. (progn
  2893. (goto-char (match-beginning 0))
  2894. (setq hdmarker (org-agenda-new-marker)
  2895. tags (org-get-tags-at))
  2896. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  2897. (setq head (match-string 1))
  2898. (and org-agenda-skip-timestamp-if-done donep (throw :skip t))
  2899. (setq txt (org-format-agenda-item
  2900. nil head category tags timestr nil
  2901. remove-re)))
  2902. (setq txt org-agenda-no-heading-message))
  2903. (setq priority (org-get-priority txt))
  2904. (org-add-props txt props
  2905. 'org-marker marker 'org-hd-marker hdmarker)
  2906. (org-add-props txt nil 'priority priority
  2907. 'org-category category 'date date
  2908. 'type "timestamp")
  2909. (push txt ee))
  2910. (outline-next-heading)))
  2911. (nreverse ee)))
  2912. (defun org-agenda-get-sexps ()
  2913. "Return the sexp information for agenda display."
  2914. (require 'diary-lib)
  2915. (let* ((props (list 'face nil
  2916. 'mouse-face 'highlight
  2917. 'keymap org-agenda-keymap
  2918. 'help-echo
  2919. (format "mouse-2 or RET jump to org file %s"
  2920. (abbreviate-file-name buffer-file-name))))
  2921. (regexp "^&?%%(")
  2922. marker category ee txt tags entry result beg b sexp sexp-entry)
  2923. (goto-char (point-min))
  2924. (while (re-search-forward regexp nil t)
  2925. (catch :skip
  2926. (org-agenda-skip)
  2927. (setq beg (match-beginning 0))
  2928. (goto-char (1- (match-end 0)))
  2929. (setq b (point))
  2930. (forward-sexp 1)
  2931. (setq sexp (buffer-substring b (point)))
  2932. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  2933. (org-trim (match-string 1))
  2934. ""))
  2935. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  2936. (when result
  2937. (setq marker (org-agenda-new-marker beg)
  2938. category (org-get-category beg))
  2939. (if (string-match "\\S-" result)
  2940. (setq txt result)
  2941. (setq txt "SEXP entry returned empty string"))
  2942. (setq txt (org-format-agenda-item
  2943. "" txt category tags 'time))
  2944. (org-add-props txt props 'org-marker marker)
  2945. (org-add-props txt nil
  2946. 'org-category category 'date date
  2947. 'type "sexp")
  2948. (push txt ee))))
  2949. (nreverse ee)))
  2950. (defun org-agenda-get-closed ()
  2951. "Return the logged TODO entries for agenda display."
  2952. (let* ((props (list 'mouse-face 'highlight
  2953. 'org-not-done-regexp org-not-done-regexp
  2954. 'org-todo-regexp org-todo-regexp
  2955. 'keymap org-agenda-keymap
  2956. 'help-echo
  2957. (format "mouse-2 or RET jump to org file %s"
  2958. (abbreviate-file-name buffer-file-name))))
  2959. (regexp (concat
  2960. "\\<\\(" org-closed-string "\\|" org-clock-string "\\) *\\["
  2961. (regexp-quote
  2962. (substring
  2963. (format-time-string
  2964. (car org-time-stamp-formats)
  2965. (apply 'encode-time ; DATE bound by calendar
  2966. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  2967. 1 11))))
  2968. marker hdmarker priority category tags closedp
  2969. ee txt timestr)
  2970. (goto-char (point-min))
  2971. (while (re-search-forward regexp nil t)
  2972. (catch :skip
  2973. (org-agenda-skip)
  2974. (setq marker (org-agenda-new-marker (match-beginning 0))
  2975. closedp (equal (match-string 1) org-closed-string)
  2976. category (org-get-category (match-beginning 0))
  2977. timestr (buffer-substring (match-beginning 0) (point-at-eol))
  2978. ;; donep (org-entry-is-done-p)
  2979. )
  2980. (if (string-match "\\]" timestr)
  2981. ;; substring should only run to end of time stamp
  2982. (setq timestr (substring timestr 0 (match-end 0))))
  2983. (save-excursion
  2984. (if (re-search-backward "^\\*+ " nil t)
  2985. (progn
  2986. (goto-char (match-beginning 0))
  2987. (setq hdmarker (org-agenda-new-marker)
  2988. tags (org-get-tags-at))
  2989. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  2990. (setq txt (org-format-agenda-item
  2991. (if closedp "Closed: " "Clocked: ")
  2992. (match-string 1) category tags timestr)))
  2993. (setq txt org-agenda-no-heading-message))
  2994. (setq priority 100000)
  2995. (org-add-props txt props
  2996. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-done
  2997. 'priority priority 'org-category category
  2998. 'type "closed" 'date date
  2999. 'undone-face 'org-warning 'done-face 'org-done)
  3000. (push txt ee))
  3001. (goto-char (point-at-eol))))
  3002. (nreverse ee)))
  3003. (defun org-agenda-get-deadlines ()
  3004. "Return the deadline information for agenda display."
  3005. (let* ((props (list 'mouse-face 'highlight
  3006. 'org-not-done-regexp org-not-done-regexp
  3007. 'org-todo-regexp org-todo-regexp
  3008. 'keymap org-agenda-keymap
  3009. 'help-echo
  3010. (format "mouse-2 or RET jump to org file %s"
  3011. (abbreviate-file-name buffer-file-name))))
  3012. (regexp org-deadline-time-regexp)
  3013. (todayp (equal date (calendar-current-date))) ; DATE bound by calendar
  3014. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  3015. d2 diff dfrac wdays pos pos1 category tags
  3016. ee txt head face s upcomingp donep timestr)
  3017. (goto-char (point-min))
  3018. (while (re-search-forward regexp nil t)
  3019. (catch :skip
  3020. (org-agenda-skip)
  3021. (setq s (match-string 1)
  3022. pos (1- (match-beginning 1))
  3023. d2 (org-time-string-to-absolute
  3024. (match-string 1) d1 'past
  3025. org-agenda-repeating-timestamp-show-all)
  3026. diff (- d2 d1)
  3027. wdays (org-get-wdays s)
  3028. dfrac (/ (* 1.0 (- wdays diff)) (max wdays 1))
  3029. upcomingp (and todayp (> diff 0)))
  3030. ;; When to show a deadline in the calendar:
  3031. ;; If the expiration is within wdays warning time.
  3032. ;; Past-due deadlines are only shown on the current date
  3033. (if (or (and (<= diff wdays)
  3034. (and todayp (not org-agenda-only-exact-dates)))
  3035. (= diff 0))
  3036. (save-excursion
  3037. (setq category (org-get-category))
  3038. (if (re-search-backward "^\\*+[ \t]+" nil t)
  3039. (progn
  3040. (goto-char (match-end 0))
  3041. (setq pos1 (match-beginning 0))
  3042. (setq tags (org-get-tags-at pos1))
  3043. (setq head (buffer-substring-no-properties
  3044. (point)
  3045. (progn (skip-chars-forward "^\r\n")
  3046. (point))))
  3047. (setq donep (string-match org-looking-at-done-regexp head))
  3048. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  3049. (setq timestr
  3050. (concat (substring s (match-beginning 1)) " "))
  3051. (setq timestr 'time))
  3052. (if (and donep
  3053. (or org-agenda-skip-deadline-if-done
  3054. (not (= diff 0))))
  3055. (setq txt nil)
  3056. (setq txt (org-format-agenda-item
  3057. (if (= diff 0)
  3058. (car org-agenda-deadline-leaders)
  3059. (if (functionp (nth 1 org-agenda-deadline-leaders))
  3060. (funcall (nth 1 org-agenda-deadline-leaders) diff date)
  3061. (format (nth 1 org-agenda-deadline-leaders)
  3062. diff)))
  3063. head category tags timestr))))
  3064. (setq txt org-agenda-no-heading-message))
  3065. (when txt
  3066. (setq face (org-agenda-deadline-face dfrac wdays))
  3067. (org-add-props txt props
  3068. 'org-marker (org-agenda-new-marker pos)
  3069. 'org-hd-marker (org-agenda-new-marker pos1)
  3070. 'priority (+ (- diff)
  3071. (org-get-priority txt))
  3072. 'org-category category
  3073. 'type (if upcomingp "upcoming-deadline" "deadline")
  3074. 'date (if upcomingp date d2)
  3075. 'face (if donep 'org-done face)
  3076. 'undone-face face 'done-face 'org-done)
  3077. (push txt ee))))))
  3078. (nreverse ee)))
  3079. (defun org-agenda-deadline-face (fraction &optional wdays)
  3080. "Return the face to displaying a deadline item.
  3081. FRACTION is what fraction of the head-warning time has passed."
  3082. (if (equal wdays 0) (setq fraction 1.))
  3083. (let ((faces org-agenda-deadline-faces) f)
  3084. (catch 'exit
  3085. (while (setq f (pop faces))
  3086. (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
  3087. (defun org-agenda-get-scheduled ()
  3088. "Return the scheduled information for agenda display."
  3089. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  3090. 'org-todo-regexp org-todo-regexp
  3091. 'done-face 'org-done
  3092. 'mouse-face 'highlight
  3093. 'keymap org-agenda-keymap
  3094. 'help-echo
  3095. (format "mouse-2 or RET jump to org file %s"
  3096. (abbreviate-file-name buffer-file-name))))
  3097. (regexp org-scheduled-time-regexp)
  3098. (todayp (equal date (calendar-current-date))) ; DATE bound by calendar
  3099. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  3100. d2 diff pos pos1 category tags
  3101. ee txt head pastschedp donep face timestr s)
  3102. (goto-char (point-min))
  3103. (while (re-search-forward regexp nil t)
  3104. (catch :skip
  3105. (org-agenda-skip)
  3106. (setq s (match-string 1)
  3107. pos (1- (match-beginning 1))
  3108. d2 (org-time-string-to-absolute
  3109. (match-string 1) d1 'past
  3110. org-agenda-repeating-timestamp-show-all)
  3111. diff (- d2 d1))
  3112. (setq pastschedp (and todayp (< diff 0)))
  3113. ;; When to show a scheduled item in the calendar:
  3114. ;; If it is on or past the date.
  3115. (if (or (and (< diff 0)
  3116. (< (abs diff) org-scheduled-past-days)
  3117. (and todayp (not org-agenda-only-exact-dates)))
  3118. (= diff 0))
  3119. (save-excursion
  3120. (setq category (org-get-category))
  3121. (if (re-search-backward "^\\*+[ \t]+" nil t)
  3122. (progn
  3123. (goto-char (match-end 0))
  3124. (setq pos1 (match-beginning 0))
  3125. (setq tags (org-get-tags-at))
  3126. (setq head (buffer-substring-no-properties
  3127. (point)
  3128. (progn (skip-chars-forward "^\r\n") (point))))
  3129. (setq donep (string-match org-looking-at-done-regexp head))
  3130. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  3131. (setq timestr
  3132. (concat (substring s (match-beginning 1)) " "))
  3133. (setq timestr 'time))
  3134. (if (and donep
  3135. (or org-agenda-skip-scheduled-if-done
  3136. (not (= diff 0))))
  3137. (setq txt nil)
  3138. (setq txt (org-format-agenda-item
  3139. (if (= diff 0)
  3140. (car org-agenda-scheduled-leaders)
  3141. (format (nth 1 org-agenda-scheduled-leaders)
  3142. (- 1 diff)))
  3143. head category tags timestr))))
  3144. (setq txt org-agenda-no-heading-message))
  3145. (when txt
  3146. (setq face (if pastschedp
  3147. 'org-scheduled-previously
  3148. 'org-scheduled-today))
  3149. (org-add-props txt props
  3150. 'undone-face face
  3151. 'face (if donep 'org-done face)
  3152. 'org-marker (org-agenda-new-marker pos)
  3153. 'org-hd-marker (org-agenda-new-marker pos1)
  3154. 'type (if pastschedp "past-scheduled" "scheduled")
  3155. 'date (if pastschedp d2 date)
  3156. 'priority (+ 94 (- 5 diff) (org-get-priority txt))
  3157. 'org-category category)
  3158. (push txt ee))))))
  3159. (nreverse ee)))
  3160. (defun org-agenda-get-blocks ()
  3161. "Return the date-range information for agenda display."
  3162. (let* ((props (list 'face nil
  3163. 'org-not-done-regexp org-not-done-regexp
  3164. 'org-todo-regexp org-todo-regexp
  3165. 'mouse-face 'highlight
  3166. 'keymap org-agenda-keymap
  3167. 'help-echo
  3168. (format "mouse-2 or RET jump to org file %s"
  3169. (abbreviate-file-name buffer-file-name))))
  3170. (regexp org-tr-regexp)
  3171. (d0 (calendar-absolute-from-gregorian date))
  3172. marker hdmarker ee txt d1 d2 s1 s2 timestr category tags pos
  3173. donep head)
  3174. (goto-char (point-min))
  3175. (while (re-search-forward regexp nil t)
  3176. (catch :skip
  3177. (org-agenda-skip)
  3178. (setq pos (point))
  3179. (setq timestr (match-string 0)
  3180. s1 (match-string 1)
  3181. s2 (match-string 2)
  3182. d1 (time-to-days (org-time-string-to-time s1))
  3183. d2 (time-to-days (org-time-string-to-time s2)))
  3184. (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  3185. ;; Only allow days between the limits, because the normal
  3186. ;; date stamps will catch the limits.
  3187. (save-excursion
  3188. (setq marker (org-agenda-new-marker (point)))
  3189. (setq category (org-get-category))
  3190. (if (re-search-backward "^\\*+ " nil t)
  3191. (progn
  3192. (goto-char (match-beginning 0))
  3193. (setq hdmarker (org-agenda-new-marker (point)))
  3194. (setq tags (org-get-tags-at))
  3195. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  3196. (setq head (match-string 1))
  3197. (and org-agenda-skip-timestamp-if-done
  3198. (org-entry-is-done-p)
  3199. (throw :skip t))
  3200. (setq txt (org-format-agenda-item
  3201. (format (if (= d1 d2) "" "(%d/%d): ")
  3202. (1+ (- d0 d1)) (1+ (- d2 d1)))
  3203. head category tags
  3204. (if (= d0 d1) timestr))))
  3205. (setq txt org-agenda-no-heading-message))
  3206. (org-add-props txt props
  3207. 'org-marker marker 'org-hd-marker hdmarker
  3208. 'type "block" 'date date
  3209. 'priority (org-get-priority txt) 'org-category category)
  3210. (push txt ee)))
  3211. (goto-char pos)))
  3212. ;; Sort the entries by expiration date.
  3213. (nreverse ee)))
  3214. ;;; Agenda presentation and sorting
  3215. (defvar org-prefix-has-time nil
  3216. "A flag, set by `org-compile-prefix-format'.
  3217. The flag is set if the currently compiled format contains a `%t'.")
  3218. (defvar org-prefix-has-tag nil
  3219. "A flag, set by `org-compile-prefix-format'.
  3220. The flag is set if the currently compiled format contains a `%T'.")
  3221. (defun org-format-agenda-item (extra txt &optional category tags dotime
  3222. noprefix remove-re)
  3223. "Format TXT to be inserted into the agenda buffer.
  3224. In particular, it adds the prefix and corresponding text properties. EXTRA
  3225. must be a string and replaces the `%s' specifier in the prefix format.
  3226. CATEGORY (string, symbol or nil) may be used to overrule the default
  3227. category taken from local variable or file name. It will replace the `%c'
  3228. specifier in the format. DOTIME, when non-nil, indicates that a
  3229. time-of-day should be extracted from TXT for sorting of this entry, and for
  3230. the `%t' specifier in the format. When DOTIME is a string, this string is
  3231. searched for a time before TXT is. NOPREFIX is a flag and indicates that
  3232. only the correctly processes TXT should be returned - this is used by
  3233. `org-agenda-change-all-lines'. TAGS can be the tags of the headline.
  3234. Any match of REMOVE-RE will be removed from TXT."
  3235. (save-match-data
  3236. ;; Diary entries sometimes have extra whitespace at the beginning
  3237. (if (string-match "^ +" txt) (setq txt (replace-match "" nil nil txt)))
  3238. (let* ((category (or category
  3239. org-category
  3240. (if buffer-file-name
  3241. (file-name-sans-extension
  3242. (file-name-nondirectory buffer-file-name))
  3243. "")))
  3244. (tag (if tags (nth (1- (length tags)) tags) ""))
  3245. time ; time and tag are needed for the eval of the prefix format
  3246. (ts (if dotime (concat (if (stringp dotime) dotime "") txt)))
  3247. (time-of-day (and dotime (org-get-time-of-day ts)))
  3248. stamp plain s0 s1 s2 rtn srp)
  3249. (when (and dotime time-of-day org-prefix-has-time)
  3250. ;; Extract starting and ending time and move them to prefix
  3251. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  3252. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  3253. (setq s0 (match-string 0 ts)
  3254. srp (and stamp (match-end 3))
  3255. s1 (match-string (if plain 1 2) ts)
  3256. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  3257. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  3258. ;; them, we might want to remove them there to avoid duplication.
  3259. ;; The user can turn this off with a variable.
  3260. (if (and org-agenda-remove-times-when-in-prefix (or stamp plain)
  3261. (string-match (concat (regexp-quote s0) " *") txt)
  3262. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  3263. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  3264. (= (match-beginning 0) 0)
  3265. t))
  3266. (setq txt (replace-match "" nil nil txt))))
  3267. ;; Normalize the time(s) to 24 hour
  3268. (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
  3269. (if s2 (setq s2 (org-get-time-of-day s2 'string t))))
  3270. (when (and s1 (not s2) org-agenda-default-appointment-duration
  3271. (string-match "\\([0-9]+\\):\\([0-9]+\\)" s1))
  3272. (let ((m (+ (string-to-number (match-string 2 s1))
  3273. (* 60 (string-to-number (match-string 1 s1)))
  3274. org-agenda-default-appointment-duration))
  3275. h)
  3276. (setq h (/ m 60) m (- m (* h 60)))
  3277. (setq s2 (format "%02d:%02d" h m))))
  3278. (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@:]+:\\)[ \t]*$")
  3279. txt)
  3280. ;; Tags are in the string
  3281. (if (or (eq org-agenda-remove-tags t)
  3282. (and org-agenda-remove-tags
  3283. org-prefix-has-tag))
  3284. (setq txt (replace-match "" t t txt))
  3285. (setq txt (replace-match
  3286. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  3287. (match-string 2 txt))
  3288. t t txt))))
  3289. (when remove-re
  3290. (while (string-match remove-re txt)
  3291. (setq txt (replace-match "" t t txt))))
  3292. ;; Create the final string
  3293. (if noprefix
  3294. (setq rtn txt)
  3295. ;; Prepare the variables needed in the eval of the compiled format
  3296. (setq time (cond (s2 (concat s1 "-" s2))
  3297. (s1 (concat s1 "......"))
  3298. (t ""))
  3299. extra (or extra "")
  3300. category (if (symbolp category) (symbol-name category) category))
  3301. ;; Evaluate the compiled format
  3302. (setq rtn (concat (eval org-prefix-format-compiled) txt)))
  3303. ;; And finally add the text properties
  3304. (org-add-props rtn nil
  3305. 'org-category (downcase category) 'tags tags
  3306. 'org-highest-priority org-highest-priority
  3307. 'org-lowest-priority org-lowest-priority
  3308. 'prefix-length (- (length rtn) (length txt))
  3309. 'time-of-day time-of-day
  3310. 'txt txt
  3311. 'time time
  3312. 'extra extra
  3313. 'dotime dotime))))
  3314. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  3315. (defvar org-agenda-sorting-strategy-selected nil)
  3316. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  3317. (catch 'exit
  3318. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  3319. ((and todayp (member 'today (car org-agenda-time-grid))))
  3320. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  3321. ((member 'weekly (car org-agenda-time-grid)))
  3322. (t (throw 'exit list)))
  3323. (let* ((have (delq nil (mapcar
  3324. (lambda (x) (get-text-property 1 'time-of-day x))
  3325. list)))
  3326. (string (nth 1 org-agenda-time-grid))
  3327. (gridtimes (nth 2 org-agenda-time-grid))
  3328. (req (car org-agenda-time-grid))
  3329. (remove (member 'remove-match req))
  3330. new time)
  3331. (if (and (member 'require-timed req) (not have))
  3332. ;; don't show empty grid
  3333. (throw 'exit list))
  3334. (while (setq time (pop gridtimes))
  3335. (unless (and remove (member time have))
  3336. (setq time (int-to-string time))
  3337. (push (org-format-agenda-item
  3338. nil string "" nil
  3339. (concat (substring time 0 -2) ":" (substring time -2)))
  3340. new)
  3341. (put-text-property
  3342. 1 (length (car new)) 'face 'org-time-grid (car new))))
  3343. (if (member 'time-up org-agenda-sorting-strategy-selected)
  3344. (append new list)
  3345. (append list new)))))
  3346. (defun org-compile-prefix-format (key)
  3347. "Compile the prefix format into a Lisp form that can be evaluated.
  3348. The resulting form is returned and stored in the variable
  3349. `org-prefix-format-compiled'."
  3350. (setq org-prefix-has-time nil org-prefix-has-tag nil)
  3351. (let ((s (cond
  3352. ((stringp org-agenda-prefix-format)
  3353. org-agenda-prefix-format)
  3354. ((assq key org-agenda-prefix-format)
  3355. (cdr (assq key org-agenda-prefix-format)))
  3356. (t " %-12:c%?-12t% s")))
  3357. (start 0)
  3358. varform vars var e c f opt)
  3359. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cts]\\)"
  3360. s start)
  3361. (setq var (cdr (assoc (match-string 4 s)
  3362. '(("c" . category) ("t" . time) ("s" . extra)
  3363. ("T" . tag))))
  3364. c (or (match-string 3 s) "")
  3365. opt (match-beginning 1)
  3366. start (1+ (match-beginning 0)))
  3367. (if (equal var 'time) (setq org-prefix-has-time t))
  3368. (if (equal var 'tag) (setq org-prefix-has-tag t))
  3369. (setq f (concat "%" (match-string 2 s) "s"))
  3370. (if opt
  3371. (setq varform
  3372. `(if (equal "" ,var)
  3373. ""
  3374. (format ,f (if (equal "" ,var) "" (concat ,var ,c)))))
  3375. (setq varform `(format ,f (if (equal ,var "") "" (concat ,var ,c)))))
  3376. (setq s (replace-match "%s" t nil s))
  3377. (push varform vars))
  3378. (setq vars (nreverse vars))
  3379. (setq org-prefix-format-compiled `(format ,s ,@vars))))
  3380. (defun org-set-sorting-strategy (key)
  3381. (if (symbolp (car org-agenda-sorting-strategy))
  3382. ;; the old format
  3383. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  3384. (setq org-agenda-sorting-strategy-selected
  3385. (or (cdr (assq key org-agenda-sorting-strategy))
  3386. (cdr (assq 'agenda org-agenda-sorting-strategy))
  3387. '(time-up category-keep priority-down)))))
  3388. (defun org-get-time-of-day (s &optional string mod24)
  3389. "Check string S for a time of day.
  3390. If found, return it as a military time number between 0 and 2400.
  3391. If not found, return nil.
  3392. The optional STRING argument forces conversion into a 5 character wide string
  3393. HH:MM."
  3394. (save-match-data
  3395. (when
  3396. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  3397. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  3398. (let* ((h (string-to-number (match-string 1 s)))
  3399. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  3400. (ampm (if (match-end 4) (downcase (match-string 4 s))))
  3401. (am-p (equal ampm "am"))
  3402. (h1 (cond ((not ampm) h)
  3403. ((= h 12) (if am-p 0 12))
  3404. (t (+ h (if am-p 0 12)))))
  3405. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  3406. (mod h1 24) h1))
  3407. (t0 (+ (* 100 h2) m))
  3408. (t1 (concat (if (>= h1 24) "+" " ")
  3409. (if (< t0 100) "0" "")
  3410. (if (< t0 10) "0" "")
  3411. (int-to-string t0))))
  3412. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  3413. (defun org-finalize-agenda-entries (list &optional nosort)
  3414. "Sort and concatenate the agenda items."
  3415. (setq list (mapcar 'org-agenda-highlight-todo list))
  3416. (if nosort
  3417. list
  3418. (mapconcat 'identity (sort list 'org-entries-lessp) "\n")))
  3419. (defun org-agenda-highlight-todo (x)
  3420. (let (re pl)
  3421. (if (eq x 'line)
  3422. (save-excursion
  3423. (beginning-of-line 1)
  3424. (setq re (get-text-property (point) 'org-todo-regexp))
  3425. (goto-char (+ (point) (or (get-text-property (point) 'prefix-length) 0)))
  3426. (when (looking-at (concat "[ \t]*\\.*" re " +"))
  3427. (add-text-properties (match-beginning 0) (match-end 0)
  3428. (list 'face (org-get-todo-face 0)))
  3429. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  3430. (delete-region (match-beginning 1) (1- (match-end 0)))
  3431. (goto-char (match-beginning 1))
  3432. (insert (format org-agenda-todo-keyword-format s)))))
  3433. (setq re (concat (get-text-property 0 'org-todo-regexp x))
  3434. pl (get-text-property 0 'prefix-length x))
  3435. (when (and re
  3436. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  3437. x (or pl 0)) pl))
  3438. (add-text-properties
  3439. (or (match-end 1) (match-end 0)) (match-end 0)
  3440. (list 'face (org-get-todo-face (match-string 2 x)))
  3441. x)
  3442. (setq x (concat (substring x 0 (match-end 1))
  3443. (format org-agenda-todo-keyword-format
  3444. (match-string 2 x))
  3445. " "
  3446. (substring x (match-end 3)))))
  3447. x)))
  3448. (defsubst org-cmp-priority (a b)
  3449. "Compare the priorities of string A and B."
  3450. (let ((pa (or (get-text-property 1 'priority a) 0))
  3451. (pb (or (get-text-property 1 'priority b) 0)))
  3452. (cond ((> pa pb) +1)
  3453. ((< pa pb) -1)
  3454. (t nil))))
  3455. (defsubst org-cmp-category (a b)
  3456. "Compare the string values of categories of strings A and B."
  3457. (let ((ca (or (get-text-property 1 'org-category a) ""))
  3458. (cb (or (get-text-property 1 'org-category b) "")))
  3459. (cond ((string-lessp ca cb) -1)
  3460. ((string-lessp cb ca) +1)
  3461. (t nil))))
  3462. (defsubst org-cmp-tag (a b)
  3463. "Compare the string values of categories of strings A and B."
  3464. (let ((ta (car (last (get-text-property 1 'tags a))))
  3465. (tb (car (last (get-text-property 1 'tags b)))))
  3466. (cond ((not ta) +1)
  3467. ((not tb) -1)
  3468. ((string-lessp ta tb) -1)
  3469. ((string-lessp tb ta) +1)
  3470. (t nil))))
  3471. (defsubst org-cmp-time (a b)
  3472. "Compare the time-of-day values of strings A and B."
  3473. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  3474. (ta (or (get-text-property 1 'time-of-day a) def))
  3475. (tb (or (get-text-property 1 'time-of-day b) def)))
  3476. (cond ((< ta tb) -1)
  3477. ((< tb ta) +1)
  3478. (t nil))))
  3479. (defun org-entries-lessp (a b)
  3480. "Predicate for sorting agenda entries."
  3481. ;; The following variables will be used when the form is evaluated.
  3482. ;; So even though the compiler complains, keep them.
  3483. (let* ((time-up (org-cmp-time a b))
  3484. (time-down (if time-up (- time-up) nil))
  3485. (priority-up (org-cmp-priority a b))
  3486. (priority-down (if priority-up (- priority-up) nil))
  3487. (category-up (org-cmp-category a b))
  3488. (category-down (if category-up (- category-up) nil))
  3489. (category-keep (if category-up +1 nil))
  3490. (tag-up (org-cmp-tag a b))
  3491. (tag-down (if tag-up (- tag-up) nil)))
  3492. (cdr (assoc
  3493. (eval (cons 'or org-agenda-sorting-strategy-selected))
  3494. '((-1 . t) (1 . nil) (nil . nil))))))
  3495. ;;; Agenda restriction lock
  3496. (defvar org-agenda-restriction-lock-overlay (org-make-overlay 1 1)
  3497. "Overlay to mark the headline to which arenda commands are restricted.")
  3498. (org-overlay-put org-agenda-restriction-lock-overlay
  3499. 'face 'org-agenda-restriction-lock)
  3500. (org-overlay-put org-agenda-restriction-lock-overlay
  3501. 'help-echo "Agendas are currently limited to this subtree.")
  3502. (org-detach-overlay org-agenda-restriction-lock-overlay)
  3503. (defun org-agenda-set-restriction-lock (&optional type)
  3504. "Set restriction lock for agenda, to current subtree or file.
  3505. Restriction will be the file if TYPE is `file', or if type is the
  3506. universal prefix '(4), or if the cursor is before the first headline
  3507. in the file. Otherwise, restriction will be to the current subtree."
  3508. (interactive "P")
  3509. (and (equal type '(4)) (setq type 'file))
  3510. (setq type (cond
  3511. (type type)
  3512. ((org-at-heading-p) 'subtree)
  3513. ((condition-case nil (org-back-to-heading t) (error nil))
  3514. 'subtree)
  3515. (t 'file)))
  3516. (if (eq type 'subtree)
  3517. (progn
  3518. (setq org-agenda-restrict t)
  3519. (setq org-agenda-overriding-restriction 'subtree)
  3520. (put 'org-agenda-files 'org-restrict
  3521. (list (buffer-file-name (buffer-base-buffer))))
  3522. (org-back-to-heading t)
  3523. (org-move-overlay org-agenda-restriction-lock-overlay (point) (point-at-eol))
  3524. (move-marker org-agenda-restrict-begin (point))
  3525. (move-marker org-agenda-restrict-end
  3526. (save-excursion (org-end-of-subtree t)))
  3527. (message "Locking agenda restriction to subtree"))
  3528. (put 'org-agenda-files 'org-restrict
  3529. (list (buffer-file-name (buffer-base-buffer))))
  3530. (setq org-agenda-restrict nil)
  3531. (setq org-agenda-overriding-restriction 'file)
  3532. (move-marker org-agenda-restrict-begin nil)
  3533. (move-marker org-agenda-restrict-end nil)
  3534. (message "Locking agenda restriction to file"))
  3535. (setq current-prefix-arg nil)
  3536. (org-agenda-maybe-redo))
  3537. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  3538. "Remove the agenda restriction lock."
  3539. (interactive "P")
  3540. (org-detach-overlay org-agenda-restriction-lock-overlay)
  3541. (org-detach-overlay org-speedbar-restriction-lock-overlay)
  3542. (setq org-agenda-overriding-restriction nil)
  3543. (setq org-agenda-restrict nil)
  3544. (put 'org-agenda-files 'org-restrict nil)
  3545. (move-marker org-agenda-restrict-begin nil)
  3546. (move-marker org-agenda-restrict-end nil)
  3547. (setq current-prefix-arg nil)
  3548. (message "Agenda restriction lock removed")
  3549. (or noupdate (org-agenda-maybe-redo)))
  3550. (defun org-agenda-maybe-redo ()
  3551. "If there is any window showing the agenda view, update it."
  3552. (let ((w (get-buffer-window org-agenda-buffer-name t))
  3553. (w0 (selected-window)))
  3554. (when w
  3555. (select-window w)
  3556. (org-agenda-redo)
  3557. (select-window w0)
  3558. (if org-agenda-overriding-restriction
  3559. (message "Agenda view shifted to new %s restriction"
  3560. org-agenda-overriding-restriction)
  3561. (message "Agenda restriction lock removed")))))
  3562. ;;; Agenda commands
  3563. (defun org-agenda-check-type (error &rest types)
  3564. "Check if agenda buffer is of allowed type.
  3565. If ERROR is non-nil, throw an error, otherwise just return nil."
  3566. (if (memq org-agenda-type types)
  3567. t
  3568. (if error
  3569. (error "Not allowed in %s-type agenda buffers" org-agenda-type)
  3570. nil)))
  3571. (defun org-agenda-quit ()
  3572. "Exit agenda by removing the window or the buffer."
  3573. (interactive)
  3574. (let ((buf (current-buffer)))
  3575. (if (not (one-window-p)) (delete-window))
  3576. (kill-buffer buf)
  3577. (org-agenda-reset-markers)
  3578. (org-columns-remove-overlays))
  3579. ;; Maybe restore the pre-agenda window configuration.
  3580. (and org-agenda-restore-windows-after-quit
  3581. (not (eq org-agenda-window-setup 'other-frame))
  3582. org-pre-agenda-window-conf
  3583. (set-window-configuration org-pre-agenda-window-conf)))
  3584. (defun org-agenda-exit ()
  3585. "Exit agenda by removing the window or the buffer.
  3586. Also kill all Org-mode buffers which have been loaded by `org-agenda'.
  3587. Org-mode buffers visited directly by the user will not be touched."
  3588. (interactive)
  3589. (org-release-buffers org-agenda-new-buffers)
  3590. (setq org-agenda-new-buffers nil)
  3591. (org-agenda-quit))
  3592. (defun org-agenda-execute (arg)
  3593. "Execute another agenda command, keeping same window.\\<global-map>
  3594. So this is just a shortcut for `\\[org-agenda]', available in the agenda."
  3595. (interactive "P")
  3596. (let ((org-agenda-window-setup 'current-window))
  3597. (org-agenda arg)))
  3598. (defun org-save-all-org-buffers ()
  3599. "Save all Org-mode buffers without user confirmation."
  3600. (interactive)
  3601. (message "Saving all Org-mode buffers...")
  3602. (save-some-buffers t 'org-mode-p)
  3603. (message "Saving all Org-mode buffers... done"))
  3604. (defun org-agenda-redo ()
  3605. "Rebuild Agenda.
  3606. When this is the global TODO list, a prefix argument will be interpreted."
  3607. (interactive)
  3608. (let* ((org-agenda-keep-modes t)
  3609. (line (org-current-line))
  3610. (window-line (- line (org-current-line (window-start))))
  3611. (lprops (get 'org-agenda-redo-command 'org-lprops)))
  3612. (message "Rebuilding agenda buffer...")
  3613. (org-let lprops '(eval org-agenda-redo-command))
  3614. (setq org-agenda-undo-list nil
  3615. org-agenda-pending-undo-list nil)
  3616. (message "Rebuilding agenda buffer...done")
  3617. (goto-line line)
  3618. (recenter window-line)))
  3619. (defun org-agenda-manipulate-query-add ()
  3620. "Manipulate the query by adding a search term with positive selection.
  3621. Positive selection means, the term must be matched for selection of an entry."
  3622. (interactive)
  3623. (org-agenda-manipulate-query ?\[))
  3624. (defun org-agenda-manipulate-query-subtract ()
  3625. "Manipulate the query by adding a search term with negative selection.
  3626. Negative selection means, term must not be matched for selection of an entry."
  3627. (interactive)
  3628. (org-agenda-manipulate-query ?\]))
  3629. (defun org-agenda-manipulate-query-add-re ()
  3630. "Manipulate the query by adding a search regexp with positive selection.
  3631. Positive selection means, the regexp must match for selection of an entry."
  3632. (interactive)
  3633. (org-agenda-manipulate-query ?\{))
  3634. (defun org-agenda-manipulate-query-subtract-re ()
  3635. "Manipulate the query by adding a search regexp with negative selection.
  3636. Negative selection means, regexp must not match for selection of an entry."
  3637. (interactive)
  3638. (org-agenda-manipulate-query ?\}))
  3639. (defun org-agenda-manipulate-query (char)
  3640. (cond
  3641. ((eq org-agenda-type 'search)
  3642. (org-add-to-string
  3643. 'org-agenda-query-string
  3644. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  3645. (?\{ . " +{}") (?\} . " -{}")))))
  3646. (setq org-agenda-redo-command
  3647. (list 'org-search-view
  3648. org-todo-only
  3649. org-agenda-query-string
  3650. (+ (length org-agenda-query-string)
  3651. (if (member char '(?\{ ?\})) 0 1))))
  3652. (set-register org-agenda-query-register org-agenda-query-string)
  3653. (org-agenda-redo))
  3654. (t (error "Canot manipulate query for %s-type agenda buffers"
  3655. org-agenda-type))))
  3656. (defun org-add-to-string (var string)
  3657. (set var (concat (symbol-value var) string)))
  3658. (defun org-agenda-goto-date (date)
  3659. "Jump to DATE in agenda."
  3660. (interactive (list (org-read-date)))
  3661. (org-agenda-list nil date))
  3662. (defun org-agenda-goto-today ()
  3663. "Go to today."
  3664. (interactive)
  3665. (org-agenda-check-type t 'timeline 'agenda)
  3666. (let ((tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  3667. (cond
  3668. (tdpos (goto-char tdpos))
  3669. ((eq org-agenda-type 'agenda)
  3670. (let* ((sd (time-to-days
  3671. (time-subtract (current-time)
  3672. (list 0 (* 3600 org-extend-today-until) 0))))
  3673. (comp (org-agenda-compute-time-span sd org-agenda-span))
  3674. (org-agenda-overriding-arguments org-agenda-last-arguments))
  3675. (setf (nth 1 org-agenda-overriding-arguments) (car comp))
  3676. (setf (nth 2 org-agenda-overriding-arguments) (cdr comp))
  3677. (org-agenda-redo)
  3678. (org-agenda-find-same-or-today-or-agenda)))
  3679. (t (error "Cannot find today")))))
  3680. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  3681. (goto-char
  3682. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  3683. (text-property-any (point-min) (point-max) 'org-today t)
  3684. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  3685. (point-min))))
  3686. (defun org-agenda-later (arg)
  3687. "Go forward in time by thee current span.
  3688. With prefix ARG, go forward that many times the current span."
  3689. (interactive "p")
  3690. (org-agenda-check-type t 'agenda)
  3691. (let* ((span org-agenda-span)
  3692. (sd org-starting-day)
  3693. (greg (calendar-gregorian-from-absolute sd))
  3694. (cnt (get-text-property (point) 'org-day-cnt))
  3695. greg2 nd)
  3696. (cond
  3697. ((eq span 'day)
  3698. (setq sd (+ arg sd) nd 1))
  3699. ((eq span 'week)
  3700. (setq sd (+ (* 7 arg) sd) nd 7))
  3701. ((eq span 'month)
  3702. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  3703. sd (calendar-absolute-from-gregorian greg2))
  3704. (setcar greg2 (1+ (car greg2)))
  3705. (setq nd (- (calendar-absolute-from-gregorian greg2) sd)))
  3706. ((eq span 'year)
  3707. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  3708. sd (calendar-absolute-from-gregorian greg2))
  3709. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2)))
  3710. (setq nd (- (calendar-absolute-from-gregorian greg2) sd))))
  3711. (let ((org-agenda-overriding-arguments
  3712. (list (car org-agenda-last-arguments) sd nd t)))
  3713. (org-agenda-redo)
  3714. (org-agenda-find-same-or-today-or-agenda cnt))))
  3715. (defun org-agenda-earlier (arg)
  3716. "Go backward in time by the current span.
  3717. With prefix ARG, go backward that many times the current span."
  3718. (interactive "p")
  3719. (org-agenda-later (- arg)))
  3720. (defun org-agenda-day-view (&optional day-of-year)
  3721. "Switch to daily view for agenda.
  3722. With argument DAY-OF-YEAR, switch to that day of the year."
  3723. (interactive "P")
  3724. (setq org-agenda-ndays 1)
  3725. (org-agenda-change-time-span 'day day-of-year))
  3726. (defun org-agenda-week-view (&optional iso-week)
  3727. "Switch to daily view for agenda.
  3728. With argument ISO-WEEK, switch to the corresponding ISO week.
  3729. If ISO-WEEK has more then 2 digits, only the last two encode the
  3730. week. Any digits before this encode a year. So 200712 means
  3731. week 12 of year 2007. Years in the range 1938-2037 can also be
  3732. written as 2-digit years."
  3733. (interactive "P")
  3734. (setq org-agenda-ndays 7)
  3735. (org-agenda-change-time-span 'week iso-week))
  3736. (defun org-agenda-month-view (&optional month)
  3737. "Switch to daily view for agenda.
  3738. With argument MONTH, switch to that month."
  3739. (interactive "P")
  3740. (org-agenda-change-time-span 'month month))
  3741. (defun org-agenda-year-view (&optional year)
  3742. "Switch to daily view for agenda.
  3743. With argument YEAR, switch to that year.
  3744. If MONTH has more then 2 digits, only the last two encode the
  3745. month. Any digits before this encode a year. So 200712 means
  3746. December year 2007. Years in the range 1938-2037 can also be
  3747. written as 2-digit years."
  3748. (interactive "P")
  3749. (when year
  3750. (setq year (org-small-year-to-year year)))
  3751. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  3752. (org-agenda-change-time-span 'year year)
  3753. (error "Abort")))
  3754. (defun org-agenda-change-time-span (span &optional n)
  3755. "Change the agenda view to SPAN.
  3756. SPAN may be `day', `week', `month', `year'."
  3757. (org-agenda-check-type t 'agenda)
  3758. (if (and (not n) (equal org-agenda-span span))
  3759. (error "Viewing span is already \"%s\"" span))
  3760. (let* ((sd (or (get-text-property (point) 'day)
  3761. org-starting-day))
  3762. (computed (org-agenda-compute-time-span sd span n))
  3763. (org-agenda-overriding-arguments
  3764. (list (car org-agenda-last-arguments)
  3765. (car computed) (cdr computed) t)))
  3766. (org-agenda-redo)
  3767. (org-agenda-find-same-or-today-or-agenda))
  3768. (org-agenda-set-mode-name)
  3769. (message "Switched to %s view" span))
  3770. (defun org-agenda-compute-time-span (sd span &optional n)
  3771. "Compute starting date and number of days for agenda.
  3772. SPAN may be `day', `week', `month', `year'. The return value
  3773. is a cons cell with the starting date and the number of days,
  3774. so that the date SD will be in that range."
  3775. (let* ((greg (calendar-gregorian-from-absolute sd))
  3776. (dg (nth 1 greg))
  3777. (mg (car greg))
  3778. (yg (nth 2 greg))
  3779. nd w1 y1 m1 thisweek)
  3780. (cond
  3781. ((eq span 'day)
  3782. (when n
  3783. (setq sd (+ (calendar-absolute-from-gregorian
  3784. (list mg 1 yg))
  3785. n -1)))
  3786. (setq nd 1))
  3787. ((eq span 'week)
  3788. (let* ((nt (calendar-day-of-week
  3789. (calendar-gregorian-from-absolute sd)))
  3790. (d (if org-agenda-start-on-weekday
  3791. (- nt org-agenda-start-on-weekday)
  3792. 0)))
  3793. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  3794. (when n
  3795. (require 'cal-iso)
  3796. (setq thisweek (car (calendar-iso-from-absolute sd)))
  3797. (when (> n 99)
  3798. (setq y1 (org-small-year-to-year (/ n 100))
  3799. n (mod n 100)))
  3800. (setq sd
  3801. (calendar-absolute-from-iso
  3802. (list n 1
  3803. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))
  3804. (setq nd 7)))
  3805. ((eq span 'month)
  3806. (when (and n (> n 99))
  3807. (setq y1 (org-small-year-to-year (/ n 100))
  3808. n (mod n 100)))
  3809. (setq sd (calendar-absolute-from-gregorian
  3810. (list (or n mg) 1 (or y1 yg)))
  3811. nd (- (calendar-absolute-from-gregorian
  3812. (list (1+ (or n mg)) 1 (or y1 yg)))
  3813. sd)))
  3814. ((eq span 'year)
  3815. (setq sd (calendar-absolute-from-gregorian
  3816. (list 1 1 (or n yg)))
  3817. nd (- (calendar-absolute-from-gregorian
  3818. (list 1 1 (1+ (or n yg))))
  3819. sd))))
  3820. (cons sd nd)))
  3821. (defun org-agenda-next-date-line (&optional arg)
  3822. "Jump to the next line indicating a date in agenda buffer."
  3823. (interactive "p")
  3824. (org-agenda-check-type t 'agenda 'timeline)
  3825. (beginning-of-line 1)
  3826. ;; This does not work if user makes date format that starts with a blank
  3827. (if (looking-at "^\\S-") (forward-char 1))
  3828. (if (not (re-search-forward "^\\S-" nil t arg))
  3829. (progn
  3830. (backward-char 1)
  3831. (error "No next date after this line in this buffer")))
  3832. (goto-char (match-beginning 0)))
  3833. (defun org-agenda-previous-date-line (&optional arg)
  3834. "Jump to the previous line indicating a date in agenda buffer."
  3835. (interactive "p")
  3836. (org-agenda-check-type t 'agenda 'timeline)
  3837. (beginning-of-line 1)
  3838. (if (not (re-search-backward "^\\S-" nil t arg))
  3839. (error "No previous date before this line in this buffer")))
  3840. ;; Initialize the highlight
  3841. (defvar org-hl (org-make-overlay 1 1))
  3842. (org-overlay-put org-hl 'face 'highlight)
  3843. (defun org-highlight (begin end &optional buffer)
  3844. "Highlight a region with overlay."
  3845. (funcall (if (featurep 'xemacs) 'set-extent-endpoints 'move-overlay)
  3846. org-hl begin end (or buffer (current-buffer))))
  3847. (defun org-unhighlight ()
  3848. "Detach overlay INDEX."
  3849. (funcall (if (featurep 'xemacs) 'detach-extent 'delete-overlay) org-hl))
  3850. ;; FIXME this is currently not used.
  3851. (defun org-highlight-until-next-command (beg end &optional buffer)
  3852. "Move the highlight overlay to BEG/END, remove it before the next command."
  3853. (org-highlight beg end buffer)
  3854. (add-hook 'pre-command-hook 'org-unhighlight-once))
  3855. (defun org-unhighlight-once ()
  3856. "Remove the highlight from its position, and this function from the hook."
  3857. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  3858. (org-unhighlight))
  3859. (defun org-agenda-follow-mode ()
  3860. "Toggle follow mode in an agenda buffer."
  3861. (interactive)
  3862. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  3863. (org-agenda-set-mode-name)
  3864. (message "Follow mode is %s"
  3865. (if org-agenda-follow-mode "on" "off")))
  3866. (defun org-agenda-clockreport-mode ()
  3867. "Toggle clocktable mode in an agenda buffer."
  3868. (interactive)
  3869. (org-agenda-check-type t 'agenda)
  3870. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode))
  3871. (org-agenda-set-mode-name)
  3872. (org-agenda-redo)
  3873. (message "Clocktable mode is %s"
  3874. (if org-agenda-clockreport-mode "on" "off")))
  3875. (defun org-agenda-log-mode ()
  3876. "Toggle log mode in an agenda buffer."
  3877. (interactive)
  3878. (org-agenda-check-type t 'agenda 'timeline)
  3879. (setq org-agenda-show-log (not org-agenda-show-log))
  3880. (org-agenda-set-mode-name)
  3881. (org-agenda-redo)
  3882. (message "Log mode is %s"
  3883. (if org-agenda-show-log "on" "off")))
  3884. (defun org-agenda-toggle-diary ()
  3885. "Toggle diary inclusion in an agenda buffer."
  3886. (interactive)
  3887. (org-agenda-check-type t 'agenda)
  3888. (setq org-agenda-include-diary (not org-agenda-include-diary))
  3889. (org-agenda-redo)
  3890. (org-agenda-set-mode-name)
  3891. (message "Diary inclusion turned %s"
  3892. (if org-agenda-include-diary "on" "off")))
  3893. (defun org-agenda-toggle-time-grid ()
  3894. "Toggle time grid in an agenda buffer."
  3895. (interactive)
  3896. (org-agenda-check-type t 'agenda)
  3897. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  3898. (org-agenda-redo)
  3899. (org-agenda-set-mode-name)
  3900. (message "Time-grid turned %s"
  3901. (if org-agenda-use-time-grid "on" "off")))
  3902. (defun org-agenda-set-mode-name ()
  3903. "Set the mode name to indicate all the small mode settings."
  3904. (setq mode-name
  3905. (concat "Org-Agenda"
  3906. (if (equal org-agenda-ndays 1) " Day" "")
  3907. (if (equal org-agenda-ndays 7) " Week" "")
  3908. (if org-agenda-follow-mode " Follow" "")
  3909. (if org-agenda-include-diary " Diary" "")
  3910. (if org-agenda-use-time-grid " Grid" "")
  3911. (if org-agenda-show-log " Log" "")
  3912. (if org-agenda-clockreport-mode " Clock" "")))
  3913. (force-mode-line-update))
  3914. (defun org-agenda-post-command-hook ()
  3915. (and (eolp) (not (bolp)) (backward-char 1))
  3916. (setq org-agenda-type (get-text-property (point) 'org-agenda-type))
  3917. (if (and org-agenda-follow-mode
  3918. (get-text-property (point) 'org-marker))
  3919. (org-agenda-show)))
  3920. (defun org-agenda-show-priority ()
  3921. "Show the priority of the current item.
  3922. This priority is composed of the main priority given with the [#A] cookies,
  3923. and by additional input from the age of a schedules or deadline entry."
  3924. (interactive)
  3925. (let* ((pri (get-text-property (point-at-bol) 'priority)))
  3926. (message "Priority is %d" (if pri pri -1000))))
  3927. (defun org-agenda-show-tags ()
  3928. "Show the tags applicable to the current item."
  3929. (interactive)
  3930. (let* ((tags (get-text-property (point-at-bol) 'tags)))
  3931. (if tags
  3932. (message "Tags are :%s:"
  3933. (org-no-properties (mapconcat 'identity tags ":")))
  3934. (message "No tags associated with this line"))))
  3935. (defun org-agenda-goto (&optional highlight)
  3936. "Go to the Org-mode file which contains the item at point."
  3937. (interactive)
  3938. (let* ((marker (or (get-text-property (point) 'org-marker)
  3939. (org-agenda-error)))
  3940. (buffer (marker-buffer marker))
  3941. (pos (marker-position marker)))
  3942. (switch-to-buffer-other-window buffer)
  3943. (widen)
  3944. (goto-char pos)
  3945. (when (org-mode-p)
  3946. (org-show-context 'agenda)
  3947. (save-excursion
  3948. (and (outline-next-heading)
  3949. (org-flag-heading nil)))) ; show the next heading
  3950. (recenter (/ (window-height) 2))
  3951. (run-hooks 'org-agenda-after-show-hook)
  3952. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  3953. (defvar org-agenda-after-show-hook nil
  3954. "Normal hook run after an item has been shown from the agenda.
  3955. Point is in the buffer where the item originated.")
  3956. (defun org-agenda-kill ()
  3957. "Kill the entry or subtree belonging to the current agenda entry."
  3958. (interactive)
  3959. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  3960. (let* ((marker (or (get-text-property (point) 'org-marker)
  3961. (org-agenda-error)))
  3962. (buffer (marker-buffer marker))
  3963. (pos (marker-position marker))
  3964. (type (get-text-property (point) 'type))
  3965. dbeg dend (n 0) conf)
  3966. (org-with-remote-undo buffer
  3967. (with-current-buffer buffer
  3968. (save-excursion
  3969. (goto-char pos)
  3970. (if (and (org-mode-p) (not (member type '("sexp"))))
  3971. (setq dbeg (progn (org-back-to-heading t) (point))
  3972. dend (org-end-of-subtree t t))
  3973. (setq dbeg (point-at-bol)
  3974. dend (min (point-max) (1+ (point-at-eol)))))
  3975. (goto-char dbeg)
  3976. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  3977. (setq conf (or (eq t org-agenda-confirm-kill)
  3978. (and (numberp org-agenda-confirm-kill)
  3979. (> n org-agenda-confirm-kill))))
  3980. (and conf
  3981. (not (y-or-n-p
  3982. (format "Delete entry with %d lines in buffer \"%s\"? "
  3983. n (buffer-name buffer))))
  3984. (error "Abort"))
  3985. (org-remove-subtree-entries-from-agenda buffer dbeg dend)
  3986. (with-current-buffer buffer (delete-region dbeg dend))
  3987. (message "Agenda item and source killed"))))
  3988. (defun org-agenda-archive ()
  3989. "Archive the entry or subtree belonging to the current agenda entry."
  3990. (interactive)
  3991. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  3992. (let* ((marker (or (get-text-property (point) 'org-marker)
  3993. (org-agenda-error)))
  3994. (buffer (marker-buffer marker))
  3995. (pos (marker-position marker)))
  3996. (org-with-remote-undo buffer
  3997. (with-current-buffer buffer
  3998. (if (org-mode-p)
  3999. (save-excursion
  4000. (goto-char pos)
  4001. (org-remove-subtree-entries-from-agenda)
  4002. (org-back-to-heading t)
  4003. (org-archive-subtree))
  4004. (error "Archiving works only in Org-mode files"))))))
  4005. (defun org-agenda-archive-to-attic-sibling ()
  4006. "Move the entry to the attic sibling."
  4007. (interactive)
  4008. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  4009. (let* ((marker (or (get-text-property (point) 'org-marker)
  4010. (org-agenda-error)))
  4011. (buffer (marker-buffer marker))
  4012. (pos (marker-position marker)))
  4013. (org-with-remote-undo buffer
  4014. (with-current-buffer buffer
  4015. (if (org-mode-p)
  4016. (save-excursion
  4017. (goto-char pos)
  4018. (org-remove-subtree-entries-from-agenda)
  4019. (org-back-to-heading t)
  4020. (org-archive-to-attic-sibling))
  4021. (error "Archiving works only in Org-mode files"))))))
  4022. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  4023. "Remove all lines in the agenda that correspond to a given subtree.
  4024. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  4025. If this information is not given, the function uses the tree at point."
  4026. (let ((buf (or buf (current-buffer))) m p)
  4027. (save-excursion
  4028. (unless (and beg end)
  4029. (org-back-to-heading t)
  4030. (setq beg (point))
  4031. (org-end-of-subtree t)
  4032. (setq end (point)))
  4033. (set-buffer (get-buffer org-agenda-buffer-name))
  4034. (save-excursion
  4035. (goto-char (point-max))
  4036. (beginning-of-line 1)
  4037. (while (not (bobp))
  4038. (when (and (setq m (get-text-property (point) 'org-marker))
  4039. (equal buf (marker-buffer m))
  4040. (setq p (marker-position m))
  4041. (>= p beg)
  4042. (<= p end))
  4043. (let ((inhibit-read-only t))
  4044. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  4045. (beginning-of-line 0))))))
  4046. (defun org-agenda-open-link ()
  4047. "Follow the link in the current line, if any."
  4048. (interactive)
  4049. (org-agenda-copy-local-variable 'org-link-abbrev-alist-local)
  4050. (save-excursion
  4051. (save-restriction
  4052. (narrow-to-region (point-at-bol) (point-at-eol))
  4053. (org-open-at-point))))
  4054. (defun org-agenda-copy-local-variable (var)
  4055. "Get a variable from a referenced buffer and install it here."
  4056. (let ((m (get-text-property (point) 'org-marker)))
  4057. (when (and m (buffer-live-p (marker-buffer m)))
  4058. (org-set-local var (with-current-buffer (marker-buffer m)
  4059. (symbol-value var))))))
  4060. (defun org-agenda-switch-to (&optional delete-other-windows)
  4061. "Go to the Org-mode file which contains the item at point."
  4062. (interactive)
  4063. (let* ((marker (or (get-text-property (point) 'org-marker)
  4064. (org-agenda-error)))
  4065. (buffer (marker-buffer marker))
  4066. (pos (marker-position marker)))
  4067. (switch-to-buffer buffer)
  4068. (and delete-other-windows (delete-other-windows))
  4069. (widen)
  4070. (goto-char pos)
  4071. (when (org-mode-p)
  4072. (org-show-context 'agenda)
  4073. (save-excursion
  4074. (and (outline-next-heading)
  4075. (org-flag-heading nil)))))) ; show the next heading
  4076. (defun org-agenda-goto-mouse (ev)
  4077. "Go to the Org-mode file which contains the item at the mouse click."
  4078. (interactive "e")
  4079. (mouse-set-point ev)
  4080. (org-agenda-goto))
  4081. (defun org-agenda-show ()
  4082. "Display the Org-mode file which contains the item at point."
  4083. (interactive)
  4084. (let ((win (selected-window)))
  4085. (org-agenda-goto t)
  4086. (select-window win)))
  4087. (defun org-agenda-recenter (arg)
  4088. "Display the Org-mode file which contains the item at point and recenter."
  4089. (interactive "P")
  4090. (let ((win (selected-window)))
  4091. (org-agenda-goto t)
  4092. (recenter arg)
  4093. (select-window win)))
  4094. (defun org-agenda-show-mouse (ev)
  4095. "Display the Org-mode file which contains the item at the mouse click."
  4096. (interactive "e")
  4097. (mouse-set-point ev)
  4098. (org-agenda-show))
  4099. (defun org-agenda-check-no-diary ()
  4100. "Check if the entry is a diary link and abort if yes."
  4101. (if (get-text-property (point) 'org-agenda-diary-link)
  4102. (org-agenda-error)))
  4103. (defun org-agenda-error ()
  4104. (error "Command not allowed in this line"))
  4105. (defun org-agenda-tree-to-indirect-buffer ()
  4106. "Show the subtree corresponding to the current entry in an indirect buffer.
  4107. This calls the command `org-tree-to-indirect-buffer' from the original
  4108. Org-mode buffer.
  4109. With numerical prefix arg ARG, go up to this level and then take that tree.
  4110. With a C-u prefix, make a separate frame for this tree (i.e. don't use the
  4111. dedicated frame)."
  4112. (interactive)
  4113. (org-agenda-check-no-diary)
  4114. (let* ((marker (or (get-text-property (point) 'org-marker)
  4115. (org-agenda-error)))
  4116. (buffer (marker-buffer marker))
  4117. (pos (marker-position marker)))
  4118. (with-current-buffer buffer
  4119. (save-excursion
  4120. (goto-char pos)
  4121. (call-interactively 'org-tree-to-indirect-buffer)))))
  4122. (defvar org-last-heading-marker (make-marker)
  4123. "Marker pointing to the headline that last changed its TODO state
  4124. by a remote command from the agenda.")
  4125. (defun org-agenda-todo-nextset ()
  4126. "Switch TODO entry to next sequence."
  4127. (interactive)
  4128. (org-agenda-todo 'nextset))
  4129. (defun org-agenda-todo-previousset ()
  4130. "Switch TODO entry to previous sequence."
  4131. (interactive)
  4132. (org-agenda-todo 'previousset))
  4133. (defun org-agenda-todo (&optional arg)
  4134. "Cycle TODO state of line at point, also in Org-mode file.
  4135. This changes the line at point, all other lines in the agenda referring to
  4136. the same tree node, and the headline of the tree node in the Org-mode file."
  4137. (interactive "P")
  4138. (org-agenda-check-no-diary)
  4139. (let* ((col (current-column))
  4140. (marker (or (get-text-property (point) 'org-marker)
  4141. (org-agenda-error)))
  4142. (buffer (marker-buffer marker))
  4143. (pos (marker-position marker))
  4144. (hdmarker (get-text-property (point) 'org-hd-marker))
  4145. (inhibit-read-only t)
  4146. newhead)
  4147. (org-with-remote-undo buffer
  4148. (with-current-buffer buffer
  4149. (widen)
  4150. (goto-char pos)
  4151. (org-show-context 'agenda)
  4152. (save-excursion
  4153. (and (outline-next-heading)
  4154. (org-flag-heading nil))) ; show the next heading
  4155. (org-todo arg)
  4156. (and (bolp) (forward-char 1))
  4157. (setq newhead (org-get-heading))
  4158. (save-excursion
  4159. (org-back-to-heading)
  4160. (move-marker org-last-heading-marker (point))))
  4161. (beginning-of-line 1)
  4162. (save-excursion
  4163. (org-agenda-change-all-lines newhead hdmarker 'fixface))
  4164. (move-to-column col))))
  4165. (defun org-agenda-add-note (&optional arg)
  4166. "Add a time-stamped note to the entry at point."
  4167. (interactive "P")
  4168. (org-agenda-check-no-diary)
  4169. (let* ((marker (or (get-text-property (point) 'org-marker)
  4170. (org-agenda-error)))
  4171. (buffer (marker-buffer marker))
  4172. (pos (marker-position marker))
  4173. (hdmarker (get-text-property (point) 'org-hd-marker))
  4174. (inhibit-read-only t))
  4175. (with-current-buffer buffer
  4176. (widen)
  4177. (goto-char pos)
  4178. (org-show-context 'agenda)
  4179. (save-excursion
  4180. (and (outline-next-heading)
  4181. (org-flag-heading nil))) ; show the next heading
  4182. (org-add-note))))
  4183. (defun org-agenda-change-all-lines (newhead hdmarker &optional fixface)
  4184. "Change all lines in the agenda buffer which match HDMARKER.
  4185. The new content of the line will be NEWHEAD (as modified by
  4186. `org-format-agenda-item'). HDMARKER is checked with
  4187. `equal' against all `org-hd-marker' text properties in the file.
  4188. If FIXFACE is non-nil, the face of each item is modified acording to
  4189. the new TODO state."
  4190. (let* ((inhibit-read-only t)
  4191. props m pl undone-face done-face finish new dotime cat tags)
  4192. (save-excursion
  4193. (goto-char (point-max))
  4194. (beginning-of-line 1)
  4195. (while (not finish)
  4196. (setq finish (bobp))
  4197. (when (and (setq m (get-text-property (point) 'org-hd-marker))
  4198. (equal m hdmarker))
  4199. (setq props (text-properties-at (point))
  4200. dotime (get-text-property (point) 'dotime)
  4201. cat (get-text-property (point) 'org-category)
  4202. tags (get-text-property (point) 'tags)
  4203. new (org-format-agenda-item "x" newhead cat tags dotime 'noprefix)
  4204. pl (get-text-property (point) 'prefix-length)
  4205. undone-face (get-text-property (point) 'undone-face)
  4206. done-face (get-text-property (point) 'done-face))
  4207. (move-to-column pl)
  4208. (cond
  4209. ((equal new "")
  4210. (beginning-of-line 1)
  4211. (and (looking-at ".*\n?") (replace-match "")))
  4212. ((looking-at ".*")
  4213. (replace-match new t t)
  4214. (beginning-of-line 1)
  4215. (add-text-properties (point-at-bol) (point-at-eol) props)
  4216. (when fixface
  4217. (add-text-properties
  4218. (point-at-bol) (point-at-eol)
  4219. (list 'face
  4220. (if org-last-todo-state-is-todo
  4221. undone-face done-face))))
  4222. (org-agenda-highlight-todo 'line)
  4223. (beginning-of-line 1))
  4224. (t (error "Line update did not work"))))
  4225. (beginning-of-line 0)))
  4226. (org-finalize-agenda)))
  4227. (defun org-agenda-align-tags (&optional line)
  4228. "Align all tags in agenda items to `org-agenda-tags-column'."
  4229. (let ((inhibit-read-only t) l c)
  4230. (save-excursion
  4231. (goto-char (if line (point-at-bol) (point-min)))
  4232. (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@:]+:\\)[ \t]*$")
  4233. (if line (point-at-eol) nil) t)
  4234. (add-text-properties
  4235. (match-beginning 2) (match-end 2)
  4236. (list 'face (delq nil (list 'org-tag (get-text-property
  4237. (match-beginning 2) 'face)))))
  4238. (setq l (- (match-end 2) (match-beginning 2))
  4239. c (if (< org-agenda-tags-column 0)
  4240. (- (abs org-agenda-tags-column) l)
  4241. org-agenda-tags-column))
  4242. (delete-region (match-beginning 1) (match-end 1))
  4243. (goto-char (match-beginning 1))
  4244. (insert (org-add-props
  4245. (make-string (max 1 (- c (current-column))) ?\ )
  4246. (text-properties-at (point))))))))
  4247. (defun org-agenda-priority-up ()
  4248. "Increase the priority of line at point, also in Org-mode file."
  4249. (interactive)
  4250. (org-agenda-priority 'up))
  4251. (defun org-agenda-priority-down ()
  4252. "Decrease the priority of line at point, also in Org-mode file."
  4253. (interactive)
  4254. (org-agenda-priority 'down))
  4255. (defun org-agenda-priority (&optional force-direction)
  4256. "Set the priority of line at point, also in Org-mode file.
  4257. This changes the line at point, all other lines in the agenda referring to
  4258. the same tree node, and the headline of the tree node in the Org-mode file."
  4259. (interactive)
  4260. (org-agenda-check-no-diary)
  4261. (let* ((marker (or (get-text-property (point) 'org-marker)
  4262. (org-agenda-error)))
  4263. (hdmarker (get-text-property (point) 'org-hd-marker))
  4264. (buffer (marker-buffer hdmarker))
  4265. (pos (marker-position hdmarker))
  4266. (inhibit-read-only t)
  4267. newhead)
  4268. (org-with-remote-undo buffer
  4269. (with-current-buffer buffer
  4270. (widen)
  4271. (goto-char pos)
  4272. (org-show-context 'agenda)
  4273. (save-excursion
  4274. (and (outline-next-heading)
  4275. (org-flag-heading nil))) ; show the next heading
  4276. (funcall 'org-priority force-direction)
  4277. (end-of-line 1)
  4278. (setq newhead (org-get-heading)))
  4279. (org-agenda-change-all-lines newhead hdmarker)
  4280. (beginning-of-line 1))))
  4281. ;; FIXME: should fix the tags property of the agenda line.
  4282. (defun org-agenda-set-tags ()
  4283. "Set tags for the current headline."
  4284. (interactive)
  4285. (org-agenda-check-no-diary)
  4286. (if (and (org-region-active-p) (interactive-p))
  4287. (call-interactively 'org-change-tag-in-region)
  4288. (org-agenda-show) ;;; FIXME This is a stupid hack and should not be needed
  4289. (let* ((hdmarker (or (get-text-property (point) 'org-hd-marker)
  4290. (org-agenda-error)))
  4291. (buffer (marker-buffer hdmarker))
  4292. (pos (marker-position hdmarker))
  4293. (inhibit-read-only t)
  4294. newhead)
  4295. (org-with-remote-undo buffer
  4296. (with-current-buffer buffer
  4297. (widen)
  4298. (goto-char pos)
  4299. (save-excursion
  4300. (org-show-context 'agenda))
  4301. (save-excursion
  4302. (and (outline-next-heading)
  4303. (org-flag-heading nil))) ; show the next heading
  4304. (goto-char pos)
  4305. (call-interactively 'org-set-tags)
  4306. (end-of-line 1)
  4307. (setq newhead (org-get-heading)))
  4308. (org-agenda-change-all-lines newhead hdmarker)
  4309. (beginning-of-line 1)))))
  4310. (defun org-agenda-toggle-archive-tag ()
  4311. "Toggle the archive tag for the current entry."
  4312. (interactive)
  4313. (org-agenda-check-no-diary)
  4314. (org-agenda-show) ;;; FIXME This is a stupid hack and should not be needed
  4315. (let* ((hdmarker (or (get-text-property (point) 'org-hd-marker)
  4316. (org-agenda-error)))
  4317. (buffer (marker-buffer hdmarker))
  4318. (pos (marker-position hdmarker))
  4319. (inhibit-read-only t)
  4320. newhead)
  4321. (org-with-remote-undo buffer
  4322. (with-current-buffer buffer
  4323. (widen)
  4324. (goto-char pos)
  4325. (org-show-context 'agenda)
  4326. (save-excursion
  4327. (and (outline-next-heading)
  4328. (org-flag-heading nil))) ; show the next heading
  4329. (call-interactively 'org-toggle-archive-tag)
  4330. (end-of-line 1)
  4331. (setq newhead (org-get-heading)))
  4332. (org-agenda-change-all-lines newhead hdmarker)
  4333. (beginning-of-line 1))))
  4334. (defun org-agenda-date-later (arg &optional what)
  4335. "Change the date of this item to one day later."
  4336. (interactive "p")
  4337. (org-agenda-check-type t 'agenda 'timeline)
  4338. (org-agenda-check-no-diary)
  4339. (let* ((marker (or (get-text-property (point) 'org-marker)
  4340. (org-agenda-error)))
  4341. (buffer (marker-buffer marker))
  4342. (pos (marker-position marker)))
  4343. (org-with-remote-undo buffer
  4344. (with-current-buffer buffer
  4345. (widen)
  4346. (goto-char pos)
  4347. (if (not (org-at-timestamp-p))
  4348. (error "Cannot find time stamp"))
  4349. (org-timestamp-change arg (or what 'day)))
  4350. (org-agenda-show-new-time marker org-last-changed-timestamp))
  4351. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  4352. (defun org-agenda-date-earlier (arg &optional what)
  4353. "Change the date of this item to one day earlier."
  4354. (interactive "p")
  4355. (org-agenda-date-later (- arg) what))
  4356. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  4357. "Show new date stamp via text properties."
  4358. ;; We use text properties to make this undoable
  4359. (let ((inhibit-read-only t))
  4360. (setq stamp (concat " " prefix " => " stamp))
  4361. (save-excursion
  4362. (goto-char (point-max))
  4363. (while (not (bobp))
  4364. (when (equal marker (get-text-property (point) 'org-marker))
  4365. (move-to-column (- (window-width) (length stamp)) t)
  4366. (if (featurep 'xemacs)
  4367. ;; Use `duplicable' property to trigger undo recording
  4368. (let ((ex (make-extent nil nil))
  4369. (gl (make-glyph stamp)))
  4370. (set-glyph-face gl 'secondary-selection)
  4371. (set-extent-properties
  4372. ex (list 'invisible t 'end-glyph gl 'duplicable t))
  4373. (insert-extent ex (1- (point)) (point-at-eol)))
  4374. (add-text-properties
  4375. (1- (point)) (point-at-eol)
  4376. (list 'display (org-add-props stamp nil
  4377. 'face 'secondary-selection))))
  4378. (beginning-of-line 1))
  4379. (beginning-of-line 0)))))
  4380. (defun org-agenda-date-prompt (arg)
  4381. "Change the date of this item. Date is prompted for, with default today.
  4382. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  4383. be used to request time specification in the time stamp."
  4384. (interactive "P")
  4385. (org-agenda-check-type t 'agenda 'timeline)
  4386. (org-agenda-check-no-diary)
  4387. (let* ((marker (or (get-text-property (point) 'org-marker)
  4388. (org-agenda-error)))
  4389. (buffer (marker-buffer marker))
  4390. (pos (marker-position marker)))
  4391. (org-with-remote-undo buffer
  4392. (with-current-buffer buffer
  4393. (widen)
  4394. (goto-char pos)
  4395. (if (not (org-at-timestamp-p))
  4396. (error "Cannot find time stamp"))
  4397. (org-time-stamp arg)
  4398. (message "Time stamp changed to %s" org-last-changed-timestamp)))))
  4399. (defun org-agenda-schedule (arg)
  4400. "Schedule the item at point."
  4401. (interactive "P")
  4402. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  4403. (org-agenda-check-no-diary)
  4404. (let* ((marker (or (get-text-property (point) 'org-marker)
  4405. (org-agenda-error)))
  4406. (type (marker-insertion-type marker))
  4407. (buffer (marker-buffer marker))
  4408. (pos (marker-position marker))
  4409. (org-insert-labeled-timestamps-at-point nil)
  4410. ts)
  4411. (when type (message "%s" type) (sit-for 3))
  4412. (set-marker-insertion-type marker t)
  4413. (org-with-remote-undo buffer
  4414. (with-current-buffer buffer
  4415. (widen)
  4416. (goto-char pos)
  4417. (setq ts (org-schedule arg)))
  4418. (org-agenda-show-new-time marker ts "S"))
  4419. (message "Item scheduled for %s" ts)))
  4420. (defun org-agenda-deadline (arg)
  4421. "Schedule the item at point."
  4422. (interactive "P")
  4423. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  4424. (org-agenda-check-no-diary)
  4425. (let* ((marker (or (get-text-property (point) 'org-marker)
  4426. (org-agenda-error)))
  4427. (buffer (marker-buffer marker))
  4428. (pos (marker-position marker))
  4429. (org-insert-labeled-timestamps-at-point nil)
  4430. ts)
  4431. (org-with-remote-undo buffer
  4432. (with-current-buffer buffer
  4433. (widen)
  4434. (goto-char pos)
  4435. (setq ts (org-deadline arg)))
  4436. (org-agenda-show-new-time marker ts "S"))
  4437. (message "Deadline for this item set to %s" ts)))
  4438. (defun org-agenda-clock-in (&optional arg)
  4439. "Start the clock on the currently selected item."
  4440. (interactive "P")
  4441. (org-agenda-check-no-diary)
  4442. (let* ((marker (or (get-text-property (point) 'org-marker)
  4443. (org-agenda-error)))
  4444. (pos (marker-position marker)))
  4445. (org-with-remote-undo (marker-buffer marker)
  4446. (with-current-buffer (marker-buffer marker)
  4447. (widen)
  4448. (goto-char pos)
  4449. (org-clock-in)))))
  4450. (defun org-agenda-clock-out (&optional arg)
  4451. "Stop the currently running clock."
  4452. (interactive "P")
  4453. (unless (marker-buffer org-clock-marker)
  4454. (error "No running clock"))
  4455. (org-with-remote-undo (marker-buffer org-clock-marker)
  4456. (org-clock-out)))
  4457. (defun org-agenda-clock-cancel (&optional arg)
  4458. "Cancel the currently running clock."
  4459. (interactive "P")
  4460. (unless (marker-buffer org-clock-marker)
  4461. (error "No running clock"))
  4462. (org-with-remote-undo (marker-buffer org-clock-marker)
  4463. (org-clock-cancel)))
  4464. (defun org-agenda-diary-entry ()
  4465. "Make a diary entry, like the `i' command from the calendar.
  4466. All the standard commands work: block, weekly etc."
  4467. (interactive)
  4468. (org-agenda-check-type t 'agenda 'timeline)
  4469. (require 'diary-lib)
  4470. (let* ((char (progn
  4471. (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
  4472. (read-char-exclusive)))
  4473. (cmd (cdr (assoc char
  4474. '((?d . insert-diary-entry)
  4475. (?w . insert-weekly-diary-entry)
  4476. (?m . insert-monthly-diary-entry)
  4477. (?y . insert-yearly-diary-entry)
  4478. (?a . insert-anniversary-diary-entry)
  4479. (?b . insert-block-diary-entry)
  4480. (?c . insert-cyclic-diary-entry)))))
  4481. (oldf (symbol-function 'calendar-cursor-to-date))
  4482. ; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  4483. (point (point))
  4484. (mark (or (mark t) (point))))
  4485. (unless cmd
  4486. (error "No command associated with <%c>" char))
  4487. (unless (and (get-text-property point 'day)
  4488. (or (not (equal ?b char))
  4489. (get-text-property mark 'day)))
  4490. (error "Don't know which date to use for diary entry"))
  4491. ;; We implement this by hacking the `calendar-cursor-to-date' function
  4492. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  4493. (let ((calendar-mark-ring
  4494. (list (calendar-gregorian-from-absolute
  4495. (or (get-text-property mark 'day)
  4496. (get-text-property point 'day))))))
  4497. (unwind-protect
  4498. (progn
  4499. (fset 'calendar-cursor-to-date
  4500. (lambda (&optional error)
  4501. (calendar-gregorian-from-absolute
  4502. (get-text-property point 'day))))
  4503. (call-interactively cmd))
  4504. (fset 'calendar-cursor-to-date oldf)))))
  4505. (defun org-agenda-execute-calendar-command (cmd)
  4506. "Execute a calendar command from the agenda, with the date associated to
  4507. the cursor position."
  4508. (org-agenda-check-type t 'agenda 'timeline)
  4509. (require 'diary-lib)
  4510. (unless (get-text-property (point) 'day)
  4511. (error "Don't know which date to use for calendar command"))
  4512. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  4513. (point (point))
  4514. (date (calendar-gregorian-from-absolute
  4515. (get-text-property point 'day)))
  4516. ;; the following 2 vars are needed in the calendar
  4517. (displayed-month (car date))
  4518. (displayed-year (nth 2 date)))
  4519. (unwind-protect
  4520. (progn
  4521. (fset 'calendar-cursor-to-date
  4522. (lambda (&optional error)
  4523. (calendar-gregorian-from-absolute
  4524. (get-text-property point 'day))))
  4525. (call-interactively cmd))
  4526. (fset 'calendar-cursor-to-date oldf))))
  4527. (defun org-agenda-phases-of-moon ()
  4528. "Display the phases of the moon for the 3 months around the cursor date."
  4529. (interactive)
  4530. (org-agenda-execute-calendar-command 'calendar-phases-of-moon))
  4531. (defun org-agenda-holidays ()
  4532. "Display the holidays for the 3 months around the cursor date."
  4533. (interactive)
  4534. (org-agenda-execute-calendar-command 'list-calendar-holidays))
  4535. (defvar calendar-longitude)
  4536. (defvar calendar-latitude)
  4537. (defvar calendar-location-name)
  4538. (defun org-agenda-sunrise-sunset (arg)
  4539. "Display sunrise and sunset for the cursor date.
  4540. Latitude and longitude can be specified with the variables
  4541. `calendar-latitude' and `calendar-longitude'. When called with prefix
  4542. argument, latitude and longitude will be prompted for."
  4543. (interactive "P")
  4544. (require 'solar)
  4545. (let ((calendar-longitude (if arg nil calendar-longitude))
  4546. (calendar-latitude (if arg nil calendar-latitude))
  4547. (calendar-location-name
  4548. (if arg "the given coordinates" calendar-location-name)))
  4549. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  4550. (defun org-agenda-goto-calendar ()
  4551. "Open the Emacs calendar with the date at the cursor."
  4552. (interactive)
  4553. (org-agenda-check-type t 'agenda 'timeline)
  4554. (let* ((day (or (get-text-property (point) 'day)
  4555. (error "Don't know which date to open in calendar")))
  4556. (date (calendar-gregorian-from-absolute day))
  4557. (calendar-move-hook nil)
  4558. (calendar-view-holidays-initially-flag nil)
  4559. (calendar-view-diary-initially-flag nil)
  4560. (view-calendar-holidays-initially nil)
  4561. (calendar-view-diary-initially-flag nil)
  4562. (calendar-view-holidays-initially-flag nil)
  4563. (view-diary-entries-initially nil))
  4564. (calendar)
  4565. (calendar-goto-date date)))
  4566. ;;;###autoload
  4567. (defun org-calendar-goto-agenda ()
  4568. "Compute the Org-mode agenda for the calendar date displayed at the cursor.
  4569. This is a command that has to be installed in `calendar-mode-map'."
  4570. (interactive)
  4571. (org-agenda-list nil (calendar-absolute-from-gregorian
  4572. (calendar-cursor-to-date))
  4573. nil))
  4574. (defun org-agenda-convert-date ()
  4575. (interactive)
  4576. (org-agenda-check-type t 'agenda 'timeline)
  4577. (let ((day (get-text-property (point) 'day))
  4578. date s)
  4579. (unless day
  4580. (error "Don't know which date to convert"))
  4581. (setq date (calendar-gregorian-from-absolute day))
  4582. (setq s (concat
  4583. "Gregorian: " (calendar-date-string date) "\n"
  4584. "ISO: " (calendar-iso-date-string date) "\n"
  4585. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  4586. "Julian: " (calendar-julian-date-string date) "\n"
  4587. "Astron. JD: " (calendar-astro-date-string date)
  4588. " (Julian date number at noon UTC)\n"
  4589. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  4590. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  4591. "French: " (calendar-french-date-string date) "\n"
  4592. "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
  4593. "Mayan: " (calendar-mayan-date-string date) "\n"
  4594. "Coptic: " (calendar-coptic-date-string date) "\n"
  4595. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  4596. "Persian: " (calendar-persian-date-string date) "\n"
  4597. "Chinese: " (calendar-chinese-date-string date) "\n"))
  4598. (with-output-to-temp-buffer "*Dates*"
  4599. (princ s))
  4600. (if (fboundp 'fit-window-to-buffer)
  4601. (fit-window-to-buffer (get-buffer-window "*Dates*")))))
  4602. ;;; Appointment reminders
  4603. (defvar appt-time-msg-list)
  4604. ;;;###autoload
  4605. (defun org-agenda-to-appt (&optional refresh filter)
  4606. "Activate appointments found in `org-agenda-files'.
  4607. With a \\[universal-argument] prefix, refresh the list of
  4608. appointements.
  4609. If FILTER is t, interactively prompt the user for a regular
  4610. expression, and filter out entries that don't match it.
  4611. If FILTER is a string, use this string as a regular expression
  4612. for filtering entries out.
  4613. FILTER can also be an alist with the car of each cell being
  4614. either 'headline or 'category. For example:
  4615. '((headline \"IMPORTANT\")
  4616. (category \"Work\"))
  4617. will only add headlines containing IMPORTANT or headlines
  4618. belonging to the \"Work\" category."
  4619. (interactive "P")
  4620. (require 'calendar)
  4621. (if refresh (setq appt-time-msg-list nil))
  4622. (if (eq filter t)
  4623. (setq filter (read-from-minibuffer "Regexp filter: ")))
  4624. (let* ((cnt 0) ; count added events
  4625. (org-agenda-new-buffers nil)
  4626. (org-deadline-warning-days 0)
  4627. (today (org-date-to-gregorian
  4628. (time-to-days (current-time))))
  4629. (files (org-agenda-files)) entries file)
  4630. ;; Get all entries which may contain an appt
  4631. (while (setq file (pop files))
  4632. (setq entries
  4633. (append entries
  4634. (org-agenda-get-day-entries
  4635. file today :timestamp :scheduled :deadline))))
  4636. (setq entries (delq nil entries))
  4637. ;; Map thru entries and find if we should filter them out
  4638. (mapc
  4639. (lambda(x)
  4640. (let* ((evt (org-trim (get-text-property 1 'txt x)))
  4641. (cat (get-text-property 1 'org-category x))
  4642. (tod (get-text-property 1 'time-of-day x))
  4643. (ok (or (null filter)
  4644. (and (stringp filter) (string-match filter evt))
  4645. (and (listp filter)
  4646. (or (string-match
  4647. (cadr (assoc 'category filter)) cat)
  4648. (string-match
  4649. (cadr (assoc 'headline filter)) evt))))))
  4650. ;; FIXME: Shall we remove text-properties for the appt text?
  4651. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  4652. (when (and ok tod)
  4653. (setq tod (number-to-string tod)
  4654. tod (when (string-match
  4655. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)" tod)
  4656. (concat (match-string 1 tod) ":"
  4657. (match-string 2 tod))))
  4658. (appt-add tod evt)
  4659. (setq cnt (1+ cnt))))) entries)
  4660. (org-release-buffers org-agenda-new-buffers)
  4661. (if (eq cnt 0)
  4662. (message "No event to add")
  4663. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  4664. (provide 'org-agenda)
  4665. ;;; org-agenda.el ends here