org-agenda.el 216 KB

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