org-agenda.el 217 KB

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