org-agenda.el 323 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2011 Free Software Foundation, Inc.
  3. ;; Author: Carsten Dominik <carsten at orgmode dot org>
  4. ;; Keywords: outlines, hypermedia, calendar, wp
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 7.7
  7. ;;
  8. ;; This file is part of GNU Emacs.
  9. ;;
  10. ;; GNU Emacs is free software: you can redistribute it and/or modify
  11. ;; it under the terms of the GNU General Public License as published by
  12. ;; the Free Software Foundation, either version 3 of the License, or
  13. ;; (at your option) any later version.
  14. ;; GNU Emacs is distributed in the hope that it will be useful,
  15. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. ;; GNU General Public License for more details.
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  20. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  21. ;;
  22. ;;; Commentary:
  23. ;; This file contains the code for creating and using the Agenda for Org-mode.
  24. ;;
  25. ;; The functions `org-batch-agenda', `org-batch-agenda-csv', and
  26. ;; `org-batch-store-agenda-views' are implemented as macros to provide
  27. ;; a conveniant way for extracting agenda information from the command
  28. ;; line. The Lisp does not evaluate parameters of a macro call; thus
  29. ;; it is not necessary to quote the parameters passed to one of those
  30. ;; functions. E.g. you can write:
  31. ;;
  32. ;; emacs -batch -l ~/.emacs -eval '(org-batch-agenda "a" org-agenda-span 7)'
  33. ;;
  34. ;; To export an agenda spanning 7 days. If `org-batch-agenda' would
  35. ;; have been implemented as a regular function you'd have to quote the
  36. ;; symbol org-agenda-span. Moreover: To use a symbol as parameter
  37. ;; value you would have to double quote the symbol.
  38. ;;
  39. ;; This is a hack, but it works even when running Org byte-compiled.
  40. ;;
  41. ;;; Code:
  42. (require 'org)
  43. (eval-when-compile
  44. (require 'cl))
  45. (declare-function diary-add-to-list "diary-lib"
  46. (date string specifier &optional marker globcolor literal))
  47. (declare-function calendar-absolute-from-iso "cal-iso" (date))
  48. (declare-function calendar-astro-date-string "cal-julian" (&optional date))
  49. (declare-function calendar-bahai-date-string "cal-bahai" (&optional date))
  50. (declare-function calendar-chinese-date-string "cal-china" (&optional date))
  51. (declare-function calendar-coptic-date-string "cal-coptic" (&optional date))
  52. (declare-function calendar-ethiopic-date-string "cal-coptic" (&optional date))
  53. (declare-function calendar-french-date-string "cal-french" (&optional date))
  54. (declare-function calendar-goto-date "cal-move" (date))
  55. (declare-function calendar-hebrew-date-string "cal-hebrew" (&optional date))
  56. (declare-function calendar-islamic-date-string "cal-islam" (&optional date))
  57. (declare-function calendar-iso-date-string "cal-iso" (&optional date))
  58. (declare-function calendar-iso-from-absolute "cal-iso" (date))
  59. (declare-function calendar-julian-date-string "cal-julian" (&optional date))
  60. (declare-function calendar-mayan-date-string "cal-mayan" (&optional date))
  61. (declare-function calendar-persian-date-string "cal-persia" (&optional date))
  62. (declare-function org-datetree-find-date-create "org-datetree"
  63. (date &optional keep-restriction))
  64. (declare-function org-columns-quit "org-colview" ())
  65. (declare-function diary-date-display-form "diary-lib" (&optional type))
  66. (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
  67. (declare-function org-habit-insert-consistency-graphs
  68. "org-habit" (&optional line))
  69. (declare-function org-is-habit-p "org-habit" (&optional pom))
  70. (declare-function org-habit-parse-todo "org-habit" (&optional pom))
  71. (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
  72. (declare-function org-pop-to-buffer-same-window "org-compat"
  73. (&optional buffer-or-name norecord label))
  74. (defvar calendar-mode-map)
  75. (defvar org-clock-current-task) ; defined in org-clock.el
  76. (defvar org-mobile-force-id-on-agenda-items) ; defined in org-mobile.el
  77. (defvar org-habit-show-habits)
  78. (defvar org-habit-show-habits-only-for-today)
  79. ;; Defined somewhere in this file, but used before definition.
  80. (defvar org-agenda-buffer-name)
  81. (defvar org-agenda-overriding-header)
  82. (defvar org-agenda-title-append nil)
  83. (defvar entry)
  84. (defvar date)
  85. (defvar org-agenda-undo-list)
  86. (defvar org-agenda-pending-undo-list)
  87. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  88. (defcustom org-agenda-confirm-kill 1
  89. "When set, remote killing from the agenda buffer needs confirmation.
  90. When t, a confirmation is always needed. When a number N, confirmation is
  91. only needed when the text to be killed contains more than N non-white lines."
  92. :group 'org-agenda
  93. :type '(choice
  94. (const :tag "Never" nil)
  95. (const :tag "Always" t)
  96. (integer :tag "When more than N lines")))
  97. (defcustom org-agenda-compact-blocks nil
  98. "Non-nil means make the block agenda more compact.
  99. This is done globally by leaving out lines like the agenda span
  100. name and week number or the separator lines."
  101. :group 'org-agenda
  102. :type 'boolean)
  103. (defcustom org-agenda-block-separator ?=
  104. "The separator between blocks in the agenda.
  105. If this is a string, it will be used as the separator, with a newline added.
  106. If it is a character, it will be repeated to fill the window width.
  107. If nil the separator is disabled. In `org-agenda-custom-commands' this
  108. addresses the separator between the current and the previous block."
  109. :group 'org-agenda
  110. :type '(choice
  111. (const :tag "Disabled" nil)
  112. (character)
  113. (string)))
  114. (defgroup org-agenda-export nil
  115. "Options concerning exporting agenda views in Org-mode."
  116. :tag "Org Agenda Export"
  117. :group 'org-agenda)
  118. (defcustom org-agenda-with-colors t
  119. "Non-nil means use colors in agenda views."
  120. :group 'org-agenda-export
  121. :type 'boolean)
  122. (defcustom org-agenda-exporter-settings nil
  123. "Alist of variable/value pairs that should be active during agenda export.
  124. This is a good place to set options for ps-print and for htmlize.
  125. Note that the way this is implemented, the values will be evaluated
  126. before assigned to the variables. So make sure to quote values you do
  127. *not* want evaluated, for example
  128. (setq org-agenda-exporter-settings
  129. '((ps-print-color-p 'black-white)))"
  130. :group 'org-agenda-export
  131. :type '(repeat
  132. (list
  133. (variable)
  134. (sexp :tag "Value"))))
  135. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  136. "Hook run in temporary buffer before writing it to an export file.
  137. A useful function is `org-agenda-add-entry-text'."
  138. :group 'org-agenda-export
  139. :type 'hook
  140. :options '(org-agenda-add-entry-text))
  141. (defcustom org-agenda-add-entry-text-maxlines 0
  142. "Maximum number of entry text lines to be added to agenda.
  143. This is only relevant when `org-agenda-add-entry-text' is part of
  144. `org-agenda-before-write-hook', which it is by default.
  145. When this is 0, nothing will happen. When it is greater than 0, it
  146. specifies the maximum number of lines that will be added for each entry
  147. that is listed in the agenda view.
  148. Note that this variable is not used during display, only when exporting
  149. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  150. and `org-agenda-entry-text-maxlines'."
  151. :group 'org-agenda
  152. :type 'integer)
  153. (defcustom org-agenda-add-entry-text-descriptive-links t
  154. "Non-nil means export org-links as descriptive links in agenda added text.
  155. This variable applies to the text added to the agenda when
  156. `org-agenda-add-entry-text-maxlines' is larger than 0.
  157. When this variable nil, the URL will (also) be shown."
  158. :group 'org-agenda
  159. :type 'boolean)
  160. (defcustom org-agenda-export-html-style ""
  161. "The style specification for exported HTML Agenda files.
  162. If this variable contains a string, it will replace the default <style>
  163. section as produced by `htmlize'.
  164. Since there are different ways of setting style information, this variable
  165. needs to contain the full HTML structure to provide a style, including the
  166. surrounding HTML tags. The style specifications should include definitions
  167. the fonts used by the agenda, here is an example:
  168. <style type=\"text/css\">
  169. p { font-weight: normal; color: gray; }
  170. .org-agenda-structure {
  171. font-size: 110%;
  172. color: #003399;
  173. font-weight: 600;
  174. }
  175. .org-todo {
  176. color: #cc6666;
  177. font-weight: bold;
  178. }
  179. .org-agenda-done {
  180. color: #339933;
  181. }
  182. .org-done {
  183. color: #339933;
  184. }
  185. .title { text-align: center; }
  186. .todo, .deadline { color: red; }
  187. .done { color: green; }
  188. </style>
  189. or, if you want to keep the style in a file,
  190. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  191. As the value of this option simply gets inserted into the HTML <head> header,
  192. you can \"misuse\" it to also add other text to the header. However,
  193. <style>...</style> is required, if not present the variable will be ignored."
  194. :group 'org-agenda-export
  195. :group 'org-export-html
  196. :type 'string)
  197. (defcustom org-agenda-persistent-filter nil
  198. "When set, keep filters from one agenda view to the next."
  199. :group 'org-agenda
  200. :type 'boolean)
  201. (defgroup org-agenda-custom-commands nil
  202. "Options concerning agenda views in Org-mode."
  203. :tag "Org Agenda Custom Commands"
  204. :group 'org-agenda)
  205. (defconst org-sorting-choice
  206. '(choice
  207. (const time-up) (const time-down)
  208. (const category-keep) (const category-up) (const category-down)
  209. (const tag-down) (const tag-up)
  210. (const priority-up) (const priority-down)
  211. (const todo-state-up) (const todo-state-down)
  212. (const effort-up) (const effort-down)
  213. (const habit-up) (const habit-down)
  214. (const alpha-up) (const alpha-down)
  215. (const user-defined-up) (const user-defined-down))
  216. "Sorting choices.")
  217. (defconst org-agenda-custom-commands-local-options
  218. `(repeat :tag "Local settings for this command. Remember to quote values"
  219. (choice :tag "Setting"
  220. (list :tag "Heading for this block"
  221. (const org-agenda-overriding-header)
  222. (string :tag "Headline"))
  223. (list :tag "Files to be searched"
  224. (const org-agenda-files)
  225. (list
  226. (const :format "" quote)
  227. (repeat (file))))
  228. (list :tag "Sorting strategy"
  229. (const org-agenda-sorting-strategy)
  230. (list
  231. (const :format "" quote)
  232. (repeat
  233. ,org-sorting-choice)))
  234. (list :tag "Prefix format"
  235. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  236. (string))
  237. (list :tag "Number of days in agenda"
  238. (const org-agenda-span)
  239. (choice (const :tag "Day" 'day)
  240. (const :tag "Week" 'week)
  241. (const :tag "Month" 'month)
  242. (const :tag "Year" 'year)
  243. (integer :tag "Custom")))
  244. (list :tag "Fixed starting date"
  245. (const org-agenda-start-day)
  246. (string :value "2007-11-01"))
  247. (list :tag "Start on day of week"
  248. (const org-agenda-start-on-weekday)
  249. (choice :value 1
  250. (const :tag "Today" nil)
  251. (integer :tag "Weekday No.")))
  252. (list :tag "Include data from diary"
  253. (const org-agenda-include-diary)
  254. (boolean))
  255. (list :tag "Deadline Warning days"
  256. (const org-deadline-warning-days)
  257. (integer :value 1))
  258. (list :tag "Tags filter preset"
  259. (const org-agenda-filter-preset)
  260. (list
  261. (const :format "" quote)
  262. (repeat
  263. (string :tag "+tag or -tag"))))
  264. (list :tag "Set daily/weekly entry types"
  265. (const org-agenda-entry-types)
  266. (set :greedy t :value (:deadline :scheduled :timestamp :sexp)
  267. (const :deadline)
  268. (const :scheduled)
  269. (const :timestamp)
  270. (const :sexp)))
  271. (list :tag "Standard skipping condition"
  272. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  273. (const org-agenda-skip-function)
  274. (list
  275. (const :format "" quote)
  276. (list
  277. (choice
  278. :tag "Skipping range"
  279. (const :tag "Skip entry" org-agenda-skip-entry-if)
  280. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  281. (repeat :inline t :tag "Conditions for skipping"
  282. (choice
  283. :tag "Condition type"
  284. (list :tag "Regexp matches" :inline t (const :format "" 'regexp) (regexp))
  285. (list :tag "Regexp does not match" :inline t (const :format "" 'notregexp) (regexp))
  286. (list :tag "TODO state is" :inline t
  287. (const 'todo)
  288. (choice
  289. (const :tag "any not-done state" 'todo)
  290. (const :tag "any done state" 'done)
  291. (const :tag "any state" 'any)
  292. (list :tag "Keyword list"
  293. (const :format "" quote)
  294. (repeat (string :tag "Keyword")))))
  295. (list :tag "TODO state is not" :inline t
  296. (const 'nottodo)
  297. (choice
  298. (const :tag "any not-done state" 'todo)
  299. (const :tag "any done state" 'done)
  300. (const :tag "any state" 'any)
  301. (list :tag "Keyword list"
  302. (const :format "" quote)
  303. (repeat (string :tag "Keyword")))))
  304. (const :tag "scheduled" 'scheduled)
  305. (const :tag "not scheduled" 'notscheduled)
  306. (const :tag "deadline" 'deadline)
  307. (const :tag "no deadline" 'notdeadline)
  308. (const :tag "timestamp" 'timestamp)
  309. (const :tag "no timestamp" 'nottimestamp))))))
  310. (list :tag "Non-standard skipping condition"
  311. :value (org-agenda-skip-function)
  312. (const org-agenda-skip-function)
  313. (sexp :tag "Function or form (quoted!)"))
  314. (list :tag "Any variable"
  315. (variable :tag "Variable")
  316. (sexp :tag "Value (sexp)"))))
  317. "Selection of examples for agenda command settings.
  318. This will be spliced into the custom type of
  319. `org-agenda-custom-commands'.")
  320. (defcustom org-agenda-custom-commands nil
  321. "Custom commands for the agenda.
  322. These commands will be offered on the splash screen displayed by the
  323. agenda dispatcher \\[org-agenda]. Each entry is a list like this:
  324. (key desc type match settings files)
  325. key The key (one or more characters as a string) to be associated
  326. with the command.
  327. desc A description of the command, when omitted or nil, a default
  328. description is built using MATCH.
  329. type The command type, any of the following symbols:
  330. agenda The daily/weekly agenda.
  331. todo Entries with a specific TODO keyword, in all agenda files.
  332. search Entries containing search words entry or headline.
  333. tags Tags/Property/TODO match in all agenda files.
  334. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  335. todo-tree Sparse tree of specific TODO keyword in *current* file.
  336. tags-tree Sparse tree with all tags matches in *current* file.
  337. occur-tree Occur sparse tree for *current* file.
  338. ... A user-defined function.
  339. match What to search for:
  340. - a single keyword for TODO keyword searches
  341. - a tags match expression for tags searches
  342. - a word search expression for text searches.
  343. - a regular expression for occur searches
  344. For all other commands, this should be the empty string.
  345. settings A list of option settings, similar to that in a let form, so like
  346. this: ((opt1 val1) (opt2 val2) ...). The values will be
  347. evaluated at the moment of execution, so quote them when needed.
  348. files A list of files file to write the produced agenda buffer to
  349. with the command `org-store-agenda-views'.
  350. If a file name ends in \".html\", an HTML version of the buffer
  351. is written out. If it ends in \".ps\", a postscript version is
  352. produced. Otherwise, only the plain text is written to the file.
  353. You can also define a set of commands, to create a composite agenda buffer.
  354. In this case, an entry looks like this:
  355. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  356. where
  357. desc A description string to be displayed in the dispatcher menu.
  358. cmd An agenda command, similar to the above. However, tree commands
  359. are no allowed, but instead you can get agenda and global todo list.
  360. So valid commands for a set are:
  361. (agenda \"\" settings)
  362. (alltodo \"\" settings)
  363. (stuck \"\" settings)
  364. (todo \"match\" settings files)
  365. (search \"match\" settings files)
  366. (tags \"match\" settings files)
  367. (tags-todo \"match\" settings files)
  368. Each command can carry a list of options, and another set of options can be
  369. given for the whole set of commands. Individual command options take
  370. precedence over the general options.
  371. When using several characters as key to a command, the first characters
  372. are prefix commands. For the dispatcher to display useful information, you
  373. should provide a description for the prefix, like
  374. (setq org-agenda-custom-commands
  375. '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  376. (\"hl\" tags \"+HOME+Lisa\")
  377. (\"hp\" tags \"+HOME+Peter\")
  378. (\"hk\" tags \"+HOME+Kim\")))"
  379. :group 'org-agenda-custom-commands
  380. :type `(repeat
  381. (choice :value ("x" "Describe command here" tags "" nil)
  382. (list :tag "Single command"
  383. (string :tag "Access Key(s) ")
  384. (option (string :tag "Description"))
  385. (choice
  386. (const :tag "Agenda" agenda)
  387. (const :tag "TODO list" alltodo)
  388. (const :tag "Search words" search)
  389. (const :tag "Stuck projects" stuck)
  390. (const :tag "Tags/Property match (all agenda files)" tags)
  391. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  392. (const :tag "TODO keyword search (all agenda files)" todo)
  393. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  394. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  395. (const :tag "Occur tree (current buffer)" occur-tree)
  396. (sexp :tag "Other, user-defined function"))
  397. (string :tag "Match (only for some commands)")
  398. ,org-agenda-custom-commands-local-options
  399. (option (repeat :tag "Export" (file :tag "Export to"))))
  400. (list :tag "Command series, all agenda files"
  401. (string :tag "Access Key(s)")
  402. (string :tag "Description ")
  403. (repeat :tag "Component"
  404. (choice
  405. (list :tag "Agenda"
  406. (const :format "" agenda)
  407. (const :tag "" :format "" "")
  408. ,org-agenda-custom-commands-local-options)
  409. (list :tag "TODO list (all keywords)"
  410. (const :format "" alltodo)
  411. (const :tag "" :format "" "")
  412. ,org-agenda-custom-commands-local-options)
  413. (list :tag "Search words"
  414. (const :format "" search)
  415. (string :tag "Match")
  416. ,org-agenda-custom-commands-local-options)
  417. (list :tag "Stuck projects"
  418. (const :format "" stuck)
  419. (const :tag "" :format "" "")
  420. ,org-agenda-custom-commands-local-options)
  421. (list :tag "Tags search"
  422. (const :format "" tags)
  423. (string :tag "Match")
  424. ,org-agenda-custom-commands-local-options)
  425. (list :tag "Tags search, TODO entries only"
  426. (const :format "" tags-todo)
  427. (string :tag "Match")
  428. ,org-agenda-custom-commands-local-options)
  429. (list :tag "TODO keyword search"
  430. (const :format "" todo)
  431. (string :tag "Match")
  432. ,org-agenda-custom-commands-local-options)
  433. (list :tag "Other, user-defined function"
  434. (symbol :tag "function")
  435. (string :tag "Match")
  436. ,org-agenda-custom-commands-local-options)))
  437. (repeat :tag "Settings for entire command set"
  438. (list (variable :tag "Any variable")
  439. (sexp :tag "Value")))
  440. (option (repeat :tag "Export" (file :tag "Export to"))))
  441. (cons :tag "Prefix key documentation"
  442. (string :tag "Access Key(s)")
  443. (string :tag "Description ")))))
  444. (defcustom org-agenda-query-register ?o
  445. "The register holding the current query string.
  446. The purpose of this is that if you construct a query string interactively,
  447. you can then use it to define a custom command."
  448. :group 'org-agenda-custom-commands
  449. :type 'character)
  450. (defcustom org-stuck-projects
  451. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  452. "How to identify stuck projects.
  453. This is a list of four items:
  454. 1. A tags/todo/property matcher string that is used to identify a project.
  455. See the manual for a description of tag and property searches.
  456. The entire tree below a headline matched by this is considered one project.
  457. 2. A list of TODO keywords identifying non-stuck projects.
  458. If the project subtree contains any headline with one of these todo
  459. keywords, the project is considered to be not stuck. If you specify
  460. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  461. 3. A list of tags identifying non-stuck projects.
  462. If the project subtree contains any headline with one of these tags,
  463. the project is considered to be not stuck. If you specify \"*\" as
  464. a tag, any tag will mark the project unstuck. Note that this is about
  465. the explicit presence of a tag somewhere in the subtree, inherited
  466. tags to not count here. If inherited tags make a project not stuck,
  467. use \"-TAG\" in the tags part of the matcher under (1.) above.
  468. 4. An arbitrary regular expression matching non-stuck projects.
  469. If the project turns out to be not stuck, search continues also in the
  470. subtree to see if any of the subtasks have project status.
  471. See also the variable `org-tags-match-list-sublevels' which applies
  472. to projects matched by this search as well.
  473. After defining this variable, you may use \\[org-agenda-list-stuck-projects]
  474. or `C-c a #' to produce the list."
  475. :group 'org-agenda-custom-commands
  476. :type '(list
  477. (string :tag "Tags/TODO match to identify a project")
  478. (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
  479. (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
  480. (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
  481. (defcustom org-agenda-filter-effort-default-operator "<"
  482. "The default operator for effort estimate filtering.
  483. If you select an effort estimate limit without first pressing an operator,
  484. this one will be used."
  485. :group 'org-agenda-custom-commands
  486. :type '(choice (const :tag "less or equal" "<")
  487. (const :tag "greater or equal"">")
  488. (const :tag "equal" "=")))
  489. (defgroup org-agenda-skip nil
  490. "Options concerning skipping parts of agenda files."
  491. :tag "Org Agenda Skip"
  492. :group 'org-agenda)
  493. (defcustom org-agenda-skip-function-global nil
  494. "Function to be called at each match during agenda construction.
  495. If this function returns nil, the current match should not be skipped.
  496. If the function decided to skip an agenda match, is must return the
  497. buffer position from which the search should be continued.
  498. This may also be a Lisp form, which will be evaluated.
  499. This variable will be applied to every agenda match, including
  500. tags/property searches and TODO lists. So try to make the test function
  501. do its checking as efficiently as possible. To implement a skipping
  502. condition just for specific agenda commands, use the variable
  503. `org-agenda-skip-function' which can be set in the options section
  504. of custom agenda commands."
  505. :group 'org-agenda-skip
  506. :type 'sexp)
  507. (defgroup org-agenda-daily/weekly nil
  508. "Options concerning the daily/weekly agenda."
  509. :tag "Org Agenda Daily/Weekly"
  510. :group 'org-agenda)
  511. (defgroup org-agenda-todo-list nil
  512. "Options concerning the global todo list agenda view."
  513. :tag "Org Agenda Todo List"
  514. :group 'org-agenda)
  515. (defgroup org-agenda-match-view nil
  516. "Options concerning the general tags/property/todo match agenda view."
  517. :tag "Org Agenda Match View"
  518. :group 'org-agenda)
  519. (defgroup org-agenda-search-view nil
  520. "Options concerning the general tags/property/todo match agenda view."
  521. :tag "Org Agenda Match View"
  522. :group 'org-agenda)
  523. (defvar org-agenda-archives-mode nil
  524. "Non-nil means the agenda will include archived items.
  525. If this is the symbol `trees', trees in the selected agenda scope
  526. that are marked with the ARCHIVE tag will be included anyway. When this is
  527. t, also all archive files associated with the current selection of agenda
  528. files will be included.")
  529. (defcustom org-agenda-skip-comment-trees t
  530. "Non-nil means skip trees that start with the COMMENT keyword.
  531. When nil, these trees are also scanned by agenda commands."
  532. :group 'org-agenda-skip
  533. :type 'boolean)
  534. (defcustom org-agenda-todo-list-sublevels t
  535. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  536. When nil, the sublevels of a TODO entry are not checked, resulting in
  537. potentially much shorter TODO lists."
  538. :group 'org-agenda-skip
  539. :group 'org-agenda-todo-list
  540. :type 'boolean)
  541. (defcustom org-agenda-todo-ignore-with-date nil
  542. "Non-nil means don't show entries with a date in the global todo list.
  543. You can use this if you prefer to mark mere appointments with a TODO keyword,
  544. but don't want them to show up in the TODO list.
  545. When this is set, it also covers deadlines and scheduled items, the settings
  546. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  547. will be ignored.
  548. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  549. :group 'org-agenda-skip
  550. :group 'org-agenda-todo-list
  551. :type 'boolean)
  552. (defcustom org-agenda-todo-ignore-timestamp nil
  553. "Non-nil means don't show entries with a timestamp.
  554. This applies when creating the global todo list.
  555. Valid values are:
  556. past Don't show entries for today or in the past.
  557. future Don't show entries with a timestamp in the future.
  558. The idea behind this is that if it has a future
  559. timestamp, you don't want to think about it until the
  560. date.
  561. all Don't show any entries with a timestamp in the global todo list.
  562. The idea behind this is that by setting a timestamp, you
  563. have already \"taken care\" of this item.
  564. This variable can also have an integer as a value. If positive (N),
  565. todos with a timestamp N or more days in the future will be ignored. If
  566. negative (-N), todos with a timestamp N or more days in the past will be
  567. ignored. If 0, todos with a timestamp either today or in the future will
  568. be ignored. For example, a value of -1 will exclude todos with a
  569. timestamp in the past (yesterday or earlier), while a value of 7 will
  570. exclude todos with a timestamp a week or more in the future.
  571. See also `org-agenda-todo-ignore-with-date'.
  572. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  573. to make his option also apply to the tags-todo list."
  574. :group 'org-agenda-skip
  575. :group 'org-agenda-todo-list
  576. :type '(choice
  577. (const :tag "Ignore future timestamp todos" future)
  578. (const :tag "Ignore past or present timestamp todos" past)
  579. (const :tag "Ignore all timestamp todos" all)
  580. (const :tag "Show timestamp todos" nil)
  581. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  582. (defcustom org-agenda-todo-ignore-scheduled nil
  583. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  584. This applies when creating the global todo list.
  585. Valid values are:
  586. past Don't show entries scheduled today or in the past.
  587. future Don't show entries scheduled in the future.
  588. The idea behind this is that by scheduling it, you don't want to
  589. think about it until the scheduled date.
  590. all Don't show any scheduled entries in the global todo list.
  591. The idea behind this is that by scheduling it, you have already
  592. \"taken care\" of this item.
  593. t Same as `all', for backward compatibility.
  594. This variable can also have an integer as a value. See
  595. `org-agenda-todo-ignore-timestamp' for more details.
  596. See also `org-agenda-todo-ignore-with-date'.
  597. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  598. to make his option also apply to the tags-todo list."
  599. :group 'org-agenda-skip
  600. :group 'org-agenda-todo-list
  601. :type '(choice
  602. (const :tag "Ignore future-scheduled todos" future)
  603. (const :tag "Ignore past- or present-scheduled todos" past)
  604. (const :tag "Ignore all scheduled todos" all)
  605. (const :tag "Ignore all scheduled todos (compatibility)" t)
  606. (const :tag "Show scheduled todos" nil)
  607. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  608. (defcustom org-agenda-todo-ignore-deadlines nil
  609. "Non-nil means ignore some deadlined TODO items when making TODO list.
  610. There are different motivations for using different values, please think
  611. carefully when configuring this variable.
  612. This applies when creating the global todo list.
  613. Valid values are:
  614. near Don't show near deadline entries. A deadline is near when it is
  615. closer than `org-deadline-warning-days' days. The idea behind this
  616. is that such items will appear in the agenda anyway.
  617. far Don't show TODO entries where a deadline has been defined, but
  618. the deadline is not near. This is useful if you don't want to
  619. use the todo list to figure out what to do now.
  620. past Don't show entries with a deadline timestamp for today or in the past.
  621. future Don't show entries with a deadline timestamp in the future, not even
  622. when they become `near' ones. Use it with caution.
  623. all Ignore all TODO entries that do have a deadline.
  624. t Same as `near', for backward compatibility.
  625. This variable can also have an integer as a value. See
  626. `org-agenda-todo-ignore-timestamp' for more details.
  627. See also `org-agenda-todo-ignore-with-date'.
  628. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  629. to make his option also apply to the tags-todo list."
  630. :group 'org-agenda-skip
  631. :group 'org-agenda-todo-list
  632. :type '(choice
  633. (const :tag "Ignore near deadlines" near)
  634. (const :tag "Ignore near deadlines (compatibility)" t)
  635. (const :tag "Ignore far deadlines" far)
  636. (const :tag "Ignore all TODOs with a deadlines" all)
  637. (const :tag "Show all TODOs, even if they have a deadline" nil)
  638. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  639. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  640. "Non-nil means honor todo-list ...ignore options also in tags-todo search.
  641. The variables
  642. `org-agenda-todo-ignore-with-date',
  643. `org-agenda-todo-ignore-timestamp',
  644. `org-agenda-todo-ignore-scheduled',
  645. `org-agenda-todo-ignore-deadlines'
  646. make the global TODO list skip entries that have time stamps of certain
  647. kinds. If this option is set, the same options will also apply for the
  648. tags-todo search, which is the general tags/property matcher
  649. restricted to unfinished TODO entries only."
  650. :group 'org-agenda-skip
  651. :group 'org-agenda-todo-list
  652. :group 'org-agenda-match-view
  653. :type 'boolean)
  654. (defcustom org-agenda-skip-scheduled-if-done nil
  655. "Non-nil means don't show scheduled items in agenda when they are done.
  656. This is relevant for the daily/weekly agenda, not for the TODO list. And
  657. it applies only to the actual date of the scheduling. Warnings about
  658. an item with a past scheduling dates are always turned off when the item
  659. is DONE."
  660. :group 'org-agenda-skip
  661. :group 'org-agenda-daily/weekly
  662. :type 'boolean)
  663. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  664. "Non-nil means skip scheduling line if same entry shows because of deadline.
  665. In the agenda of today, an entry can show up multiple times because
  666. it is both scheduled and has a nearby deadline, and maybe a plain time
  667. stamp as well.
  668. When this variable is t, then only the deadline is shown and the fact that
  669. the entry is scheduled today or was scheduled previously is not shown.
  670. When this variable is nil, the entry will be shown several times. When
  671. the variable is the symbol `not-today', then skip scheduled previously,
  672. but not scheduled today."
  673. :group 'org-agenda-skip
  674. :group 'org-agenda-daily/weekly
  675. :type '(choice
  676. (const :tag "Never" nil)
  677. (const :tag "Always" t)
  678. (const :tag "Not when scheduled today" not-today)))
  679. (defcustom org-agenda-skip-deadline-if-done nil
  680. "Non-nil means don't show deadlines when the corresponding item is done.
  681. When nil, the deadline is still shown and should give you a happy feeling.
  682. This is relevant for the daily/weekly agenda. And it applied only to the
  683. actually date of the deadline. Warnings about approaching and past-due
  684. deadlines are always turned off when the item is DONE."
  685. :group 'org-agenda-skip
  686. :group 'org-agenda-daily/weekly
  687. :type 'boolean)
  688. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  689. "Non-nil means skip deadline prewarning when entry is also scheduled.
  690. This will apply on all days where a prewarning for the deadline would
  691. be shown, but not at the day when the entry is actually due. On that day,
  692. the deadline will be shown anyway.
  693. This variable may be set to nil, t, or a number which will then give
  694. the number of days before the actual deadline when the prewarnings
  695. should resume.
  696. This can be used in a workflow where the first showing of the deadline will
  697. trigger you to schedule it, and then you don't want to be reminded of it
  698. because you will take care of it on the day when scheduled."
  699. :group 'org-agenda-skip
  700. :group 'org-agenda-daily/weekly
  701. :type '(choice
  702. (const :tag "Alwas show prewarning" nil)
  703. (const :tag "Remove prewarning if entry is scheduled" t)
  704. (integer :tag "Restart prewarning N days before deadline")))
  705. (defcustom org-agenda-skip-additional-timestamps-same-entry t
  706. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  707. When non-nil, after the search for timestamps has matched once in an
  708. entry, the rest of the entry will not be searched."
  709. :group 'org-agenda-skip
  710. :type 'boolean)
  711. (defcustom org-agenda-skip-timestamp-if-done nil
  712. "Non-nil means don't select item by timestamp or -range if it is DONE."
  713. :group 'org-agenda-skip
  714. :group 'org-agenda-daily/weekly
  715. :type 'boolean)
  716. (defcustom org-agenda-dim-blocked-tasks t
  717. "Non-nil means dim blocked tasks in the agenda display.
  718. This causes some overhead during agenda construction, but if you
  719. have turned on `org-enforce-todo-dependencies',
  720. `org-enforce-todo-checkbox-dependencies', or any other blocking
  721. mechanism, this will create useful feedback in the agenda.
  722. Instead of t, this variable can also have the value `invisible'.
  723. Then blocked tasks will be invisible and only become visible when
  724. they become unblocked. An exemption to this behavior is when a task is
  725. blocked because of unchecked checkboxes below it. Since checkboxes do
  726. not show up in the agenda views, making this task invisible you remove any
  727. trace from agenda views that there is something to do. Therefore, a task
  728. that is blocked because of checkboxes will never be made invisible, it
  729. will only be dimmed."
  730. :group 'org-agenda-daily/weekly
  731. :group 'org-agenda-todo-list
  732. :type '(choice
  733. (const :tag "Do not dim" nil)
  734. (const :tag "Dim to a grey face" t)
  735. (const :tag "Make invisible" invisible)))
  736. (defcustom org-timeline-show-empty-dates 3
  737. "Non-nil means `org-timeline' also shows dates without an entry.
  738. When nil, only the days which actually have entries are shown.
  739. When t, all days between the first and the last date are shown.
  740. When an integer, show also empty dates, but if there is a gap of more than
  741. N days, just insert a special line indicating the size of the gap."
  742. :group 'org-agenda-skip
  743. :type '(choice
  744. (const :tag "None" nil)
  745. (const :tag "All" t)
  746. (integer :tag "at most")))
  747. (defgroup org-agenda-startup nil
  748. "Options concerning initial settings in the Agenda in Org Mode."
  749. :tag "Org Agenda Startup"
  750. :group 'org-agenda)
  751. (defcustom org-agenda-menu-show-matcher t
  752. "Non-nil means show the match string in the agenda dispatcher menu.
  753. When nil, the matcher string is not shown, but is put into the help-echo
  754. property so than moving the mouse over the command shows it.
  755. Setting it to nil is good if matcher strings are very long and/or if
  756. you want to use two-column display (see `org-agenda-menu-two-column')."
  757. :group 'org-agenda
  758. :type 'boolean)
  759. (defcustom org-agenda-menu-two-column nil
  760. "Non-nil means, use two columns to show custom commands in the dispatcher.
  761. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  762. to nil."
  763. :group 'org-agenda
  764. :type 'boolean)
  765. (defcustom org-finalize-agenda-hook nil
  766. "Hook run just before displaying an agenda buffer."
  767. :group 'org-agenda-startup
  768. :type 'hook)
  769. (defcustom org-agenda-mouse-1-follows-link nil
  770. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  771. A longer mouse click will still set point. Does not work on XEmacs.
  772. Needs to be set before org.el is loaded."
  773. :group 'org-agenda-startup
  774. :type 'boolean)
  775. (defcustom org-agenda-start-with-follow-mode nil
  776. "The initial value of follow mode in a newly created agenda window."
  777. :group 'org-agenda-startup
  778. :type 'boolean)
  779. (defcustom org-agenda-show-outline-path t
  780. "Non-nil means show outline path in echo area after line motion."
  781. :group 'org-agenda-startup
  782. :type 'boolean)
  783. (defcustom org-agenda-start-with-entry-text-mode nil
  784. "The initial value of entry-text-mode in a newly created agenda window."
  785. :group 'org-agenda-startup
  786. :type 'boolean)
  787. (defcustom org-agenda-entry-text-maxlines 5
  788. "Number of text lines to be added when `E' is pressed in the agenda.
  789. Note that this variable only used during agenda display. Add add entry text
  790. when exporting the agenda, configure the variable
  791. `org-agenda-add-entry-ext-maxlines'."
  792. :group 'org-agenda
  793. :type 'integer)
  794. (defcustom org-agenda-entry-text-exclude-regexps nil
  795. "List of regular expressions to clean up entry text.
  796. The complete matches of all regular expressions in this list will be
  797. removed from entry text before it is shown in the agenda."
  798. :group 'org-agenda
  799. :type '(repeat (regexp)))
  800. (defvar org-agenda-entry-text-cleanup-hook nil
  801. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  802. This cleanup is done in a temporary buffer, so the function may inspect and
  803. change the entire buffer.
  804. Some default stuff like drawers and scheduling/deadline dates will already
  805. have been removed when this is called, as will any matches for regular
  806. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  807. (defvar org-agenda-include-inactive-timestamps nil
  808. "Non-nil means include inactive time stamps in agenda and timeline.")
  809. (defgroup org-agenda-windows nil
  810. "Options concerning the windows used by the Agenda in Org Mode."
  811. :tag "Org Agenda Windows"
  812. :group 'org-agenda)
  813. (defcustom org-agenda-window-setup 'reorganize-frame
  814. "How the agenda buffer should be displayed.
  815. Possible values for this option are:
  816. current-window Show agenda in the current window, keeping all other windows.
  817. other-window Use `switch-to-buffer-other-window' to display agenda.
  818. reorganize-frame Show only two windows on the current frame, the current
  819. window and the agenda.
  820. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  821. Also, when exiting the agenda, kill that frame.
  822. See also the variable `org-agenda-restore-windows-after-quit'."
  823. :group 'org-agenda-windows
  824. :type '(choice
  825. (const current-window)
  826. (const other-frame)
  827. (const other-window)
  828. (const reorganize-frame)))
  829. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  830. "The min and max height of the agenda window as a fraction of frame height.
  831. The value of the variable is a cons cell with two numbers between 0 and 1.
  832. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  833. :group 'org-agenda-windows
  834. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  835. (defcustom org-agenda-restore-windows-after-quit nil
  836. "Non-nil means restore window configuration upon exiting agenda.
  837. Before the window configuration is changed for displaying the agenda,
  838. the current status is recorded. When the agenda is exited with
  839. `q' or `x' and this option is set, the old state is restored. If
  840. `org-agenda-window-setup' is `other-frame', the value of this
  841. option will be ignored."
  842. :group 'org-agenda-windows
  843. :type 'boolean)
  844. (defcustom org-agenda-ndays nil
  845. "Number of days to include in overview display.
  846. Should be 1 or 7.
  847. Obsolete, see `org-agenda-span'."
  848. :group 'org-agenda-daily/weekly
  849. :type 'integer)
  850. (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
  851. (defcustom org-agenda-span 'week
  852. "Number of days to include in overview display.
  853. Can be day, week, month, year, or any number of days.
  854. Custom commands can set this variable in the options section."
  855. :group 'org-agenda-daily/weekly
  856. :type '(choice (const :tag "Day" day)
  857. (const :tag "Week" week)
  858. (const :tag "Month" month)
  859. (const :tag "Year" year)
  860. (integer :tag "Custom")))
  861. (defcustom org-agenda-start-on-weekday 1
  862. "Non-nil means start the overview always on the specified weekday.
  863. 0 denotes Sunday, 1 denotes Monday etc.
  864. When nil, always start on the current day.
  865. Custom commands can set this variable in the options section."
  866. :group 'org-agenda-daily/weekly
  867. :type '(choice (const :tag "Today" nil)
  868. (integer :tag "Weekday No.")))
  869. (defcustom org-agenda-show-all-dates t
  870. "Non-nil means `org-agenda' shows every day in the selected range.
  871. When nil, only the days which actually have entries are shown."
  872. :group 'org-agenda-daily/weekly
  873. :type 'boolean)
  874. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  875. "Format string for displaying dates in the agenda.
  876. Used by the daily/weekly agenda and by the timeline. This should be
  877. a format string understood by `format-time-string', or a function returning
  878. the formatted date as a string. The function must take a single argument,
  879. a calendar-style date list like (month day year)."
  880. :group 'org-agenda-daily/weekly
  881. :type '(choice
  882. (string :tag "Format string")
  883. (function :tag "Function")))
  884. (defun org-agenda-format-date-aligned (date)
  885. "Format a date string for display in the daily/weekly agenda, or timeline.
  886. This function makes sure that dates are aligned for easy reading."
  887. (require 'cal-iso)
  888. (let* ((dayname (calendar-day-name date))
  889. (day (cadr date))
  890. (day-of-week (calendar-day-of-week date))
  891. (month (car date))
  892. (monthname (calendar-month-name month))
  893. (year (nth 2 date))
  894. (iso-week (org-days-to-iso-week
  895. (calendar-absolute-from-gregorian date)))
  896. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  897. (1- year))
  898. ((and (= month 12) (<= iso-week 1))
  899. (1+ year))
  900. (t year)))
  901. (weekstring (if (= day-of-week 1)
  902. (format " W%02d" iso-week)
  903. "")))
  904. (format "%-10s %2d %s %4d%s"
  905. dayname day monthname year weekstring)))
  906. (defcustom org-agenda-time-leading-zero nil
  907. "Non-nil means use leading zero for military times in agenda.
  908. For example, 9:30am would become 09:30 rather than 9:30."
  909. :group 'org-agenda-daily/weekly
  910. :type 'boolean)
  911. (defcustom org-agenda-timegrid-use-ampm nil
  912. "When set, show AM/PM style timestamps on the timegrid."
  913. :group 'org-agenda
  914. :type 'boolean)
  915. (defun org-agenda-time-of-day-to-ampm (time)
  916. "Convert TIME of a string like '13:45' to an AM/PM style time string."
  917. (let* ((hour-number (string-to-number (substring time 0 -3)))
  918. (minute (substring time -2))
  919. (ampm "am"))
  920. (cond
  921. ((equal hour-number 12)
  922. (setq ampm "pm"))
  923. ((> hour-number 12)
  924. (setq ampm "pm")
  925. (setq hour-number (- hour-number 12))))
  926. (concat
  927. (if org-agenda-time-leading-zero
  928. (format "%02d" hour-number)
  929. (format "%02s" (number-to-string hour-number)))
  930. ":" minute ampm)))
  931. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  932. "Conditionally convert TIME to AM/PM format
  933. based on `org-agenda-timegrid-use-ampm'"
  934. (if org-agenda-timegrid-use-ampm
  935. (org-agenda-time-of-day-to-ampm time)
  936. time))
  937. (defcustom org-agenda-weekend-days '(6 0)
  938. "Which days are weekend?
  939. These days get the special face `org-agenda-date-weekend' in the agenda
  940. and timeline buffers."
  941. :group 'org-agenda-daily/weekly
  942. :type '(set :greedy t
  943. (const :tag "Monday" 1)
  944. (const :tag "Tuesday" 2)
  945. (const :tag "Wednesday" 3)
  946. (const :tag "Thursday" 4)
  947. (const :tag "Friday" 5)
  948. (const :tag "Saturday" 6)
  949. (const :tag "Sunday" 0)))
  950. (defcustom org-agenda-include-diary nil
  951. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  952. Custom commands can set this variable in the options section."
  953. :group 'org-agenda-daily/weekly
  954. :type 'boolean)
  955. (defcustom org-agenda-include-deadlines t
  956. "If non-nil, include entries within their deadline warning period.
  957. Custom commands can set this variable in the options section."
  958. :group 'org-agenda-daily/weekly
  959. :type 'boolean)
  960. (defcustom org-agenda-include-all-todo nil
  961. "Set means weekly/daily agenda will always contain all TODO entries.
  962. The TODO entries will be listed at the top of the agenda, before
  963. the entries for specific days.
  964. This option is deprecated, it is better to define a block agenda instead."
  965. :group 'org-agenda-daily/weekly
  966. :type 'boolean)
  967. (defcustom org-agenda-repeating-timestamp-show-all t
  968. "Non-nil means show all occurrences of a repeating stamp in the agenda.
  969. When set to a list of strings, only show occurrences of repeating
  970. stamps for these TODO keywords. When nil, only one occurrence is
  971. shown, either today or the nearest into the future."
  972. :group 'org-agenda-daily/weekly
  973. :type '(choice
  974. (const :tag "Show repeating stamps" t)
  975. (repeat :tag "Show repeating stamps for these TODO keywords"
  976. (string :tag "TODO Keyword"))
  977. (const :tag "Don't show repeating stamps" nil)))
  978. (defcustom org-scheduled-past-days 10000
  979. "No. of days to continue listing scheduled items that are not marked DONE.
  980. When an item is scheduled on a date, it shows up in the agenda on this
  981. day and will be listed until it is marked done for the number of days
  982. given here."
  983. :group 'org-agenda-daily/weekly
  984. :type 'integer)
  985. (defcustom org-agenda-log-mode-items '(closed clock)
  986. "List of items that should be shown in agenda log mode.
  987. This list may contain the following symbols:
  988. closed Show entries that have been closed on that day.
  989. clock Show entries that have received clocked time on that day.
  990. state Show all logged state changes.
  991. Note that instead of changing this variable, you can also press `C-u l' in
  992. the agenda to display all available LOG items temporarily."
  993. :group 'org-agenda-daily/weekly
  994. :type '(set :greedy t (const closed) (const clock) (const state)))
  995. (defcustom org-agenda-clock-consistency-checks
  996. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  997. :gap-ok-around ("4:00")
  998. :default-face ((:background "DarkRed") (:foreground "white"))
  999. :overlap-face nil :gap-face nil :no-end-time-face nil
  1000. :long-face nil :short-face nil)
  1001. "This is a property list, with the following keys:
  1002. :max-duration Mark clocking chunks that are longer than this time.
  1003. This is a time string like \"HH:MM\", or the number
  1004. of minutes as an integer.
  1005. :min-duration Mark clocking chunks that are shorter that this.
  1006. This is a time string like \"HH:MM\", or the number
  1007. of minutes as an integer.
  1008. :max-gap Mark gaps between clocking chunks that are longer than
  1009. this duration. A number of minutes, or a string
  1010. like \"HH:MM\".
  1011. :gap-ok-around List of times during the day which are usually not working
  1012. times. When a gap is detected, but the gap contains any
  1013. of these times, the gap is *not* reported. For example,
  1014. if this is (\"4:00\" \"13:00\") then gaps that contain
  1015. 4:00 in the morning (i.e. the night) and 13:00
  1016. (i.e. a typical lunch time) do not cause a warning.
  1017. You should have at least one time during the night in this
  1018. list, or otherwise the first task each morning will trigger
  1019. a warning because it follows a long gap.
  1020. Furthermore, the following properties can be used to define faces for
  1021. issue display.
  1022. :default-face the default face, if the specific face is undefined
  1023. :overlap-face face for overlapping clocks
  1024. :gap-face face for gaps between clocks
  1025. :no-end-time-face face for incomplete clocks
  1026. :long-face face for clock intervals that are too long
  1027. :short-face face for clock intervals that are too short"
  1028. :group 'org-agenda-daily/weekly
  1029. :group 'org-clock
  1030. :type 'plist)
  1031. (defcustom org-agenda-log-mode-add-notes t
  1032. "Non-nil means add first line of notes to log entries in agenda views.
  1033. If a log item like a state change or a clock entry is associated with
  1034. notes, the first line of these notes will be added to the entry in the
  1035. agenda display."
  1036. :group 'org-agenda-daily/weekly
  1037. :type 'boolean)
  1038. (defcustom org-agenda-start-with-log-mode nil
  1039. "The initial value of log-mode in a newly created agenda window."
  1040. :group 'org-agenda-startup
  1041. :group 'org-agenda-daily/weekly
  1042. :type 'boolean)
  1043. (defcustom org-agenda-start-with-clockreport-mode nil
  1044. "The initial value of clockreport-mode in a newly created agenda window."
  1045. :group 'org-agenda-startup
  1046. :group 'org-agenda-daily/weekly
  1047. :type 'boolean)
  1048. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1049. "Property list with parameters for the clocktable in clockreport mode.
  1050. This is the display mode that shows a clock table in the daily/weekly
  1051. agenda, the properties for this dynamic block can be set here.
  1052. The usual clocktable parameters are allowed here, but you cannot set
  1053. the properties :name, :tstart, :tend, :block, and :scope - these will
  1054. be overwritten to make sure the content accurately reflects the
  1055. current display in the agenda."
  1056. :group 'org-agenda-daily/weekly
  1057. :type 'plist)
  1058. (defcustom org-agenda-search-view-always-boolean nil
  1059. "Non-nil means the search string is interpreted as individual parts.
  1060. The search string for search view can either be interpreted as a phrase,
  1061. or as a list of snippets that define a boolean search for a number of
  1062. strings.
  1063. When this is non-nil, the string will be split on whitespace, and each
  1064. snippet will be searched individually, and all must match in order to
  1065. select an entry. A snippet is then a single string of non-white
  1066. characters, or a string in double quotes, or a regexp in {} braces.
  1067. If a snippet is preceded by \"-\", the snippet must *not* match.
  1068. \"+\" is syntactic sugar for positive selection. Each snippet may
  1069. be found as a full word or a partial word, but see the variable
  1070. `org-agenda-search-view-force-full-words'.
  1071. When this is nil, search will look for the entire search phrase as one,
  1072. with each space character matching any amount of whitespace, including
  1073. line breaks.
  1074. Even when this is nil, you can still switch to Boolean search dynamically
  1075. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1076. is a regexp marked with braces like \"{abc}\", this will also switch to
  1077. boolean search."
  1078. :group 'org-agenda-search-view
  1079. :type 'boolean)
  1080. (if (fboundp 'defvaralias)
  1081. (defvaralias 'org-agenda-search-view-search-words-only
  1082. 'org-agenda-search-view-always-boolean))
  1083. (defcustom org-agenda-search-view-force-full-words nil
  1084. "Non-nil means, search words must be matches as complete words.
  1085. When nil, they may also match part of a word."
  1086. :group 'org-agenda-search-view
  1087. :type 'boolean)
  1088. (defgroup org-agenda-time-grid nil
  1089. "Options concerning the time grid in the Org-mode Agenda."
  1090. :tag "Org Agenda Time Grid"
  1091. :group 'org-agenda)
  1092. (defcustom org-agenda-search-headline-for-time t
  1093. "Non-nil means search headline for a time-of-day.
  1094. If the headline contains a time-of-day in one format or another, it will
  1095. be used to sort the entry into the time sequence of items for a day.
  1096. Some people have time stamps in the headline that refer to the creation
  1097. time or so, and then this produces an unwanted side effect. If this is
  1098. the case for your, use this variable to turn off searching the headline
  1099. for a time."
  1100. :group 'org-agenda-time-grid
  1101. :type 'boolean)
  1102. (defcustom org-agenda-use-time-grid t
  1103. "Non-nil means show a time grid in the agenda schedule.
  1104. A time grid is a set of lines for specific times (like every two hours between
  1105. 8:00 and 20:00). The items scheduled for a day at specific times are
  1106. sorted in between these lines.
  1107. For details about when the grid will be shown, and what it will look like, see
  1108. the variable `org-agenda-time-grid'."
  1109. :group 'org-agenda-time-grid
  1110. :type 'boolean)
  1111. (defcustom org-agenda-time-grid
  1112. '((daily today require-timed)
  1113. "----------------"
  1114. (800 1000 1200 1400 1600 1800 2000))
  1115. "The settings for time grid for agenda display.
  1116. This is a list of three items. The first item is again a list. It contains
  1117. symbols specifying conditions when the grid should be displayed:
  1118. daily if the agenda shows a single day
  1119. weekly if the agenda shows an entire week
  1120. today show grid on current date, independent of daily/weekly display
  1121. require-timed show grid only if at least one item has a time specification
  1122. The second item is a string which will be placed behind the grid time.
  1123. The third item is a list of integers, indicating the times that should have
  1124. a grid line."
  1125. :group 'org-agenda-time-grid
  1126. :type
  1127. '(list
  1128. (set :greedy t :tag "Grid Display Options"
  1129. (const :tag "Show grid in single day agenda display" daily)
  1130. (const :tag "Show grid in weekly agenda display" weekly)
  1131. (const :tag "Always show grid for today" today)
  1132. (const :tag "Show grid only if any timed entries are present"
  1133. require-timed)
  1134. (const :tag "Skip grid times already present in an entry"
  1135. remove-match))
  1136. (string :tag "Grid String")
  1137. (repeat :tag "Grid Times" (integer :tag "Time"))))
  1138. (defcustom org-agenda-show-current-time-in-grid t
  1139. "Non-nil means show the current time in the time grid."
  1140. :group 'org-agenda-time-grid
  1141. :type 'boolean)
  1142. (defcustom org-agenda-current-time-string
  1143. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1144. "The string for the current time marker in the agenda."
  1145. :group 'org-agenda-time-grid
  1146. :type 'string)
  1147. (defgroup org-agenda-sorting nil
  1148. "Options concerning sorting in the Org-mode Agenda."
  1149. :tag "Org Agenda Sorting"
  1150. :group 'org-agenda)
  1151. (defcustom org-agenda-sorting-strategy
  1152. '((agenda habit-down time-up priority-down category-keep)
  1153. (todo priority-down category-keep)
  1154. (tags priority-down category-keep)
  1155. (search category-keep))
  1156. "Sorting structure for the agenda items of a single day.
  1157. This is a list of symbols which will be used in sequence to determine
  1158. if an entry should be listed before another entry. The following
  1159. symbols are recognized:
  1160. time-up Put entries with time-of-day indications first, early first
  1161. time-down Put entries with time-of-day indications first, late first
  1162. category-keep Keep the default order of categories, corresponding to the
  1163. sequence in `org-agenda-files'.
  1164. category-up Sort alphabetically by category, A-Z.
  1165. category-down Sort alphabetically by category, Z-A.
  1166. tag-up Sort alphabetically by last tag, A-Z.
  1167. tag-down Sort alphabetically by last tag, Z-A.
  1168. priority-up Sort numerically by priority, high priority last.
  1169. priority-down Sort numerically by priority, high priority first.
  1170. todo-state-up Sort by todo state, tasks that are done last.
  1171. todo-state-down Sort by todo state, tasks that are done first.
  1172. effort-up Sort numerically by estimated effort, high effort last.
  1173. effort-down Sort numerically by estimated effort, high effort first.
  1174. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1175. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1176. habit-up Put entries that are habits first
  1177. habit-down Put entries that are habits last
  1178. alpha-up Sort headlines alphabetically
  1179. alpha-down Sort headlines alphabetically, reversed
  1180. The different possibilities will be tried in sequence, and testing stops
  1181. if one comparison returns a \"not-equal\". For example, the default
  1182. '(time-up category-keep priority-down)
  1183. means: Pull out all entries having a specified time of day and sort them,
  1184. in order to make a time schedule for the current day the first thing in the
  1185. agenda listing for the day. Of the entries without a time indication, keep
  1186. the grouped in categories, don't sort the categories, but keep them in
  1187. the sequence given in `org-agenda-files'. Within each category sort by
  1188. priority.
  1189. Leaving out `category-keep' would mean that items will be sorted across
  1190. categories by priority.
  1191. Instead of a single list, this can also be a set of list for specific
  1192. contents, with a context symbol in the car of the list, any of
  1193. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1194. Custom commands can bind this variable in the options section."
  1195. :group 'org-agenda-sorting
  1196. :type `(choice
  1197. (repeat :tag "General" ,org-sorting-choice)
  1198. (list :tag "Individually"
  1199. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1200. (repeat ,org-sorting-choice))
  1201. (cons (const :tag "Strategy for TODO lists" todo)
  1202. (repeat ,org-sorting-choice))
  1203. (cons (const :tag "Strategy for Tags matches" tags)
  1204. (repeat ,org-sorting-choice))
  1205. (cons (const :tag "Strategy for search matches" search)
  1206. (repeat ,org-sorting-choice)))))
  1207. (defcustom org-agenda-cmp-user-defined nil
  1208. "A function to define the comparison `user-defined'.
  1209. This function must receive two arguments, agenda entry a and b.
  1210. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1211. the user comparison, return nil.
  1212. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1213. part of an agenda sorting strategy."
  1214. :group 'org-agenda-sorting
  1215. :type 'symbol)
  1216. (defcustom org-sort-agenda-notime-is-late t
  1217. "Non-nil means items without time are considered late.
  1218. This is only relevant for sorting. When t, items which have no explicit
  1219. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1220. do have a time. When nil, the default time is before 0:00. You can use this
  1221. option to decide if the schedule for today should come before or after timeless
  1222. agenda entries."
  1223. :group 'org-agenda-sorting
  1224. :type 'boolean)
  1225. (defcustom org-sort-agenda-noeffort-is-high t
  1226. "Non-nil means items without effort estimate are sorted as high effort.
  1227. This also applies when filtering an agenda view with respect to the
  1228. < or > effort operator. Then, tasks with no effort defined will be treated
  1229. as tasks with high effort.
  1230. When nil, such items are sorted as 0 minutes effort."
  1231. :group 'org-agenda-sorting
  1232. :type 'boolean)
  1233. (defgroup org-agenda-line-format nil
  1234. "Options concerning the entry prefix in the Org-mode agenda display."
  1235. :tag "Org Agenda Line Format"
  1236. :group 'org-agenda)
  1237. (defcustom org-agenda-prefix-format
  1238. '((agenda . " %i %-12:c%?-12t% s")
  1239. (timeline . " % s")
  1240. (todo . " %i %-12:c")
  1241. (tags . " %i %-12:c")
  1242. (search . " %i %-12:c"))
  1243. "Format specifications for the prefix of items in the agenda views.
  1244. An alist with five entries, each for the different agenda types. The
  1245. keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
  1246. The values are format strings.
  1247. This format works similar to a printf format, with the following meaning:
  1248. %c the category of the item, \"Diary\" for entries from the diary,
  1249. or as given by the CATEGORY keyword or derived from the file name
  1250. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1251. %T the last tag of the item (ignore inherited tags, which come first)
  1252. %t the HH:MM time-of-day specification if one applies to the entry
  1253. %s Scheduling/Deadline information, a short string
  1254. %(expression) Eval EXPRESSION and replace the control string
  1255. by the result
  1256. All specifiers work basically like the standard `%s' of printf, but may
  1257. contain two additional characters: a question mark just after the `%'
  1258. and a whitespace/punctuation character just before the final letter.
  1259. If the first character after `%' is a question mark, the entire field
  1260. will only be included if the corresponding value applies to the current
  1261. entry. This is useful for fields which should have fixed width when
  1262. present, but zero width when absent. For example, \"%?-12t\" will
  1263. result in a 12 character time field if a time of the day is specified,
  1264. but will completely disappear in entries which do not contain a time.
  1265. If there is punctuation or whitespace character just before the final
  1266. format letter, this character will be appended to the field value if
  1267. the value is not empty. For example, the format \"%-12:c\" leads to
  1268. \"Diary: \" if the category is \"Diary\". If the category were be
  1269. empty, no additional colon would be inserted.
  1270. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1271. which means:
  1272. - Indent the line with two space characters
  1273. - Give the category a 12 chars wide field, padded with whitespace on
  1274. the right (because of `-'). Append a colon if there is a category
  1275. (because of `:').
  1276. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1277. time, don't put in an empty field, just skip it (because of '?').
  1278. - Finally, put the scheduling information.
  1279. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1280. `org-agenda-remove-tags'.
  1281. Custom commands can set this variable in the options section."
  1282. :type '(choice
  1283. (string :tag "General format")
  1284. (list :greedy t :tag "View dependent"
  1285. (cons (const agenda) (string :tag "Format"))
  1286. (cons (const timeline) (string :tag "Format"))
  1287. (cons (const todo) (string :tag "Format"))
  1288. (cons (const tags) (string :tag "Format"))
  1289. (cons (const search) (string :tag "Format"))))
  1290. :group 'org-agenda-line-format)
  1291. (defvar org-prefix-format-compiled nil
  1292. "The compiled version of the most recently used prefix format.
  1293. See the variable `org-agenda-prefix-format'.")
  1294. (defcustom org-agenda-todo-keyword-format "%-1s"
  1295. "Format for the TODO keyword in agenda lines.
  1296. Set this to something like \"%-12s\" if you want all TODO keywords
  1297. to occupy a fixed space in the agenda display."
  1298. :group 'org-agenda-line-format
  1299. :type 'string)
  1300. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1301. "Text preceding timerange entries in the agenda view.
  1302. This is a list with two strings. The first applies when the range
  1303. is entirely on one day. The second applies if the range spans several days.
  1304. The strings may have two \"%d\" format specifiers which will be filled
  1305. with the sequence number of the days, and the total number of days in the
  1306. range, respectively."
  1307. :group 'org-agenda-line-format
  1308. :type '(list
  1309. (string :tag "Deadline today ")
  1310. (choice :tag "Deadline relative"
  1311. (string :tag "Format string")
  1312. (function))))
  1313. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1314. "Text preceding scheduled items in the agenda view.
  1315. This is a list with two strings. The first applies when the item is
  1316. scheduled on the current day. The second applies when it has been scheduled
  1317. previously, it may contain a %d indicating that this is the nth time that
  1318. this item is scheduled, due to automatic rescheduling of unfinished items
  1319. for the following day. So this number is one larger than the number of days
  1320. that passed since this item was scheduled first."
  1321. :group 'org-agenda-line-format
  1322. :type '(list
  1323. (string :tag "Scheduled today ")
  1324. (string :tag "Scheduled previously")))
  1325. (defcustom org-agenda-inactive-leader "["
  1326. "Text preceding item pulled into the agenda by inactive time stamps.
  1327. These entries are added to the agenda when pressing \"[\"."
  1328. :group 'org-agenda-line-format
  1329. :type '(list
  1330. (string :tag "Scheduled today ")
  1331. (string :tag "Scheduled previously")))
  1332. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: ")
  1333. "Text preceding deadline items in the agenda view.
  1334. This is a list with two strings. The first applies when the item has its
  1335. deadline on the current day. The second applies when it is in the past or
  1336. in the future, it may contain %d to capture how many days away the deadline
  1337. is (was)."
  1338. :group 'org-agenda-line-format
  1339. :type '(list
  1340. (string :tag "Deadline today ")
  1341. (choice :tag "Deadline relative"
  1342. (string :tag "Format string")
  1343. (function))))
  1344. (defcustom org-agenda-remove-times-when-in-prefix t
  1345. "Non-nil means remove duplicate time specifications in agenda items.
  1346. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1347. time-of-day specification in a headline or diary entry is extracted and
  1348. placed into the prefix. If this option is non-nil, the original specification
  1349. \(a timestamp or -range, or just a plain time(range) specification like
  1350. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1351. cluttered.
  1352. The option can be t or nil. It may also be the symbol `beg', indicating
  1353. that the time should only be removed when it is located at the beginning of
  1354. the headline/diary entry."
  1355. :group 'org-agenda-line-format
  1356. :type '(choice
  1357. (const :tag "Always" t)
  1358. (const :tag "Never" nil)
  1359. (const :tag "When at beginning of entry" beg)))
  1360. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1361. "Non-nil means remove time ranges specifications in agenda
  1362. items that span on several days."
  1363. :group 'org-agenda-line-format
  1364. :type 'boolean)
  1365. (defcustom org-agenda-default-appointment-duration nil
  1366. "Default duration for appointments that only have a starting time.
  1367. When nil, no duration is specified in such cases.
  1368. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1369. :group 'org-agenda-line-format
  1370. :type '(choice
  1371. (integer :tag "Minutes")
  1372. (const :tag "No default duration")))
  1373. (defcustom org-agenda-show-inherited-tags t
  1374. "Non-nil means show inherited tags in each agenda line."
  1375. :group 'org-agenda-line-format
  1376. :type 'boolean)
  1377. (defcustom org-agenda-hide-tags-regexp nil
  1378. "Regular expression used to filter away specific tags in agenda views.
  1379. This means that these tags will be present, but not be shown in the agenda
  1380. line. Secondary filtering will still work on the hidden tags.
  1381. Nil means don't hide any tags."
  1382. :group 'org-agenda-line-format
  1383. :type '(choice
  1384. (const :tag "Hide none" nil)
  1385. (string :tag "Regexp ")))
  1386. (defcustom org-agenda-remove-tags nil
  1387. "Non-nil means remove the tags from the headline copy in the agenda.
  1388. When this is the symbol `prefix', only remove tags when
  1389. `org-agenda-prefix-format' contains a `%T' specifier."
  1390. :group 'org-agenda-line-format
  1391. :type '(choice
  1392. (const :tag "Always" t)
  1393. (const :tag "Never" nil)
  1394. (const :tag "When prefix format contains %T" prefix)))
  1395. (if (fboundp 'defvaralias)
  1396. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1397. 'org-agenda-remove-tags))
  1398. (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
  1399. "Shift tags in agenda items to this column.
  1400. If this number is positive, it specifies the column. If it is negative,
  1401. it means that the tags should be flushright to that column. For example,
  1402. -80 works well for a normal 80 character screen."
  1403. :group 'org-agenda-line-format
  1404. :type 'integer)
  1405. (if (fboundp 'defvaralias)
  1406. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column))
  1407. (defcustom org-agenda-fontify-priorities 'cookies
  1408. "Non-nil means highlight low and high priorities in agenda.
  1409. When t, the highest priority entries are bold, lowest priority italic.
  1410. However, settings in `org-priority-faces' will overrule these faces.
  1411. When this variable is the symbol `cookies', only fontify the
  1412. cookies, not the entire task.
  1413. This may also be an association list of priority faces, whose
  1414. keys are the character values of `org-highest-priority',
  1415. `org-default-priority', and `org-lowest-priority' (the default values
  1416. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1417. color as a string, or a list like `(:background \"Red\")'.
  1418. If it is a color, the variable `org-faces-easy-properties'
  1419. determines if it is a foreground or a background color."
  1420. :group 'org-agenda-line-format
  1421. :type '(choice
  1422. (const :tag "Never" nil)
  1423. (const :tag "Defaults" t)
  1424. (const :tag "Cookies only" cookies)
  1425. (repeat :tag "Specify"
  1426. (list (character :tag "Priority" :value ?A)
  1427. (choice :tag "Face "
  1428. (string :tag "Color")
  1429. (sexp :tag "Face"))))))
  1430. (defcustom org-agenda-day-face-function nil
  1431. "Function called to determine what face should be used to display a day.
  1432. The only argument passed to that function is the day. It should
  1433. returns a face, or nil if does not want to specify a face and let
  1434. the normal rules apply."
  1435. :group 'org-agenda-line-format
  1436. :type 'function)
  1437. (defcustom org-agenda-category-icon-alist nil
  1438. "Alist of category icon to be displayed in agenda views.
  1439. Each entry should have the following format:
  1440. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1441. Where CATEGORY-REGEXP is a regexp matching the categories where
  1442. the icon should be displayed.
  1443. FILE-OR-DATA either a file path or a string containing image data.
  1444. The other fields can be omited safely if not needed:
  1445. TYPE indicates the image type.
  1446. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1447. image data.
  1448. PROPS are additional image attributes to assign to the image,
  1449. like, e.g. `:ascent center'.
  1450. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1451. If you want to set the display properties yourself, just put a
  1452. list as second element:
  1453. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1454. For example, to display a 16px horizontal space for Emacs
  1455. category, you can use:
  1456. (\"Emacs\" '(space . (:width (16))))"
  1457. :group 'org-agenda-line-format
  1458. :type '(alist :key-type (string :tag "Regexp matching category")
  1459. :value-type (choice (list :tag "Icon"
  1460. (string :tag "File or data")
  1461. (symbol :tag "Type")
  1462. (boolean :tag "Data?")
  1463. (repeat :tag "Extra image properties" :inline t symbol))
  1464. (list :tag "Display properties" sexp))))
  1465. (defgroup org-agenda-column-view nil
  1466. "Options concerning column view in the agenda."
  1467. :tag "Org Agenda Column View"
  1468. :group 'org-agenda)
  1469. (defcustom org-agenda-columns-show-summaries t
  1470. "Non-nil means show summaries for columns displayed in the agenda view."
  1471. :group 'org-agenda-column-view
  1472. :type 'boolean)
  1473. (defcustom org-agenda-columns-compute-summary-properties t
  1474. "Non-nil means recompute all summary properties before column view.
  1475. When column view in the agenda is listing properties that have a summary
  1476. operator, it can go to all relevant buffers and recompute the summaries
  1477. there. This can mean overhead for the agenda column view, but is necessary
  1478. to have thing up to date.
  1479. As a special case, a CLOCKSUM property also makes sure that the clock
  1480. computations are current."
  1481. :group 'org-agenda-column-view
  1482. :type 'boolean)
  1483. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1484. "Non-nil means the duration of an appointment will add to day effort.
  1485. The property to which appointment durations will be added is the one given
  1486. in the option `org-effort-property'. If an appointment does not have
  1487. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1488. is not set, an appointment without end time will not contribute to the time
  1489. estimate."
  1490. :group 'org-agenda-column-view
  1491. :type 'boolean)
  1492. (defcustom org-agenda-auto-exclude-function nil
  1493. "A function called with a tag to decide if it is filtered on '/ RET'.
  1494. The sole argument to the function, which is called once for each
  1495. possible tag, is a string giving the name of the tag. The
  1496. function should return either nil if the tag should be included
  1497. as normal, or \"-<TAG>\" to exclude the tag.
  1498. Note that for the purpose of tag filtering, only the lower-case version of
  1499. all tags will be considered, so that this function will only ever see
  1500. the lower-case version of all tags."
  1501. :group 'org-agenda
  1502. :type 'function)
  1503. (defcustom org-agenda-bulk-custom-functions nil
  1504. "Alist of characters and custom functions for bulk actions.
  1505. For example, this value makes those two functions available:
  1506. '((?R set-category)
  1507. (?C bulk-cut))
  1508. With selected entries in an agenda buffer, `B R' will call
  1509. the custom function `set-category' on the selected entries.
  1510. Note that functions in this alist don't need to be quoted."
  1511. :type 'alist
  1512. :group 'org-agenda)
  1513. (eval-when-compile
  1514. (require 'cl))
  1515. (require 'org)
  1516. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1517. "Execute BODY with point at location given by `org-hd-marker' property.
  1518. If STRING is non-nil, the text property will be fetched from position 0
  1519. in that string. If STRING is nil, it will be fetched from the beginning
  1520. of the current line."
  1521. (org-with-gensyms (marker)
  1522. `(let ((,marker (get-text-property (if string 0 (point-at-bol))
  1523. 'org-hd-marker string)))
  1524. (with-current-buffer (marker-buffer ,marker)
  1525. (save-excursion
  1526. (goto-char ,marker)
  1527. ,@body)))))
  1528. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1529. (defun org-add-agenda-custom-command (entry)
  1530. "Replace or add a command in `org-agenda-custom-commands'.
  1531. This is mostly for hacking and trying a new command - once the command
  1532. works you probably want to add it to `org-agenda-custom-commands' for good."
  1533. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1534. (if ass
  1535. (setcdr ass (cdr entry))
  1536. (push entry org-agenda-custom-commands))))
  1537. ;;; Define the Org-agenda-mode
  1538. (defvar org-agenda-mode-map (make-sparse-keymap)
  1539. "Keymap for `org-agenda-mode'.")
  1540. (if (fboundp 'defvaralias)
  1541. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map))
  1542. (defvar org-agenda-menu) ; defined later in this file.
  1543. (defvar org-agenda-restrict) ; defined later in this file.
  1544. (defvar org-agenda-follow-mode nil)
  1545. (defvar org-agenda-entry-text-mode nil)
  1546. (defvar org-agenda-clockreport-mode nil)
  1547. (defvar org-agenda-show-log nil)
  1548. (defvar org-agenda-redo-command nil)
  1549. (defvar org-agenda-query-string nil)
  1550. (defvar org-agenda-mode-hook nil
  1551. "Hook for `org-agenda-mode', run after the mode is turned on.")
  1552. (defvar org-agenda-type nil)
  1553. (defvar org-agenda-force-single-file nil)
  1554. (defvar org-agenda-bulk-marked-entries) ;; Defined further down in this file
  1555. (defun org-agenda-mode ()
  1556. "Mode for time-sorted view on action items in Org-mode files.
  1557. The following commands are available:
  1558. \\{org-agenda-mode-map}"
  1559. (interactive)
  1560. (kill-all-local-variables)
  1561. (setq org-agenda-undo-list nil
  1562. org-agenda-pending-undo-list nil
  1563. org-agenda-bulk-marked-entries nil)
  1564. (setq major-mode 'org-agenda-mode)
  1565. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1566. (org-set-local 'font-lock-global-modes (list 'not major-mode))
  1567. (setq mode-name "Org-Agenda")
  1568. (use-local-map org-agenda-mode-map)
  1569. (easy-menu-add org-agenda-menu)
  1570. (if org-startup-truncated (setq truncate-lines t))
  1571. (org-set-local 'line-move-visual nil)
  1572. (org-add-hook 'post-command-hook 'org-agenda-post-command-hook nil 'local)
  1573. (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1574. ;; Make sure properties are removed when copying text
  1575. (when (boundp 'buffer-substring-filters)
  1576. (org-set-local 'buffer-substring-filters
  1577. (cons (lambda (x)
  1578. (set-text-properties 0 (length x) nil x) x)
  1579. buffer-substring-filters)))
  1580. (unless org-agenda-keep-modes
  1581. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1582. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  1583. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode
  1584. org-agenda-show-log org-agenda-start-with-log-mode))
  1585. (easy-menu-change
  1586. '("Agenda") "Agenda Files"
  1587. (append
  1588. (list
  1589. (vector
  1590. (if (get 'org-agenda-files 'org-restrict)
  1591. "Restricted to single file"
  1592. "Edit File List")
  1593. '(org-edit-agenda-file-list)
  1594. (not (get 'org-agenda-files 'org-restrict)))
  1595. "--")
  1596. (mapcar 'org-file-menu-entry (org-agenda-files))))
  1597. (org-agenda-set-mode-name)
  1598. (apply
  1599. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  1600. (list 'org-agenda-mode-hook)))
  1601. (substitute-key-definition 'undo 'org-agenda-undo
  1602. org-agenda-mode-map global-map)
  1603. (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
  1604. (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
  1605. (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
  1606. (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
  1607. (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
  1608. (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
  1609. (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
  1610. (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
  1611. (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-remove-all-marks)
  1612. (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
  1613. (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
  1614. (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
  1615. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
  1616. (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
  1617. (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
  1618. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
  1619. (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
  1620. (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
  1621. (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
  1622. (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
  1623. (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
  1624. (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
  1625. (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
  1626. (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
  1627. (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
  1628. (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
  1629. (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
  1630. (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
  1631. (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
  1632. (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
  1633. (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
  1634. (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
  1635. (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
  1636. (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
  1637. (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
  1638. (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
  1639. (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
  1640. (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
  1641. (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
  1642. (org-defkey org-agenda-mode-map "k" 'org-agenda-action)
  1643. (org-defkey org-agenda-mode-map "\C-c\C-x\C-k" 'org-agenda-action)
  1644. (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
  1645. (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
  1646. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
  1647. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
  1648. (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
  1649. (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
  1650. (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
  1651. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  1652. (while l (org-defkey org-agenda-mode-map
  1653. (int-to-string (pop l)) 'digit-argument)))
  1654. (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
  1655. (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
  1656. (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
  1657. (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
  1658. (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
  1659. (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
  1660. (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
  1661. (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
  1662. (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
  1663. (org-defkey org-agenda-mode-map "g" 'org-agenda-redo)
  1664. (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
  1665. (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
  1666. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  1667. 'org-clock-modify-effort-estimate)
  1668. (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
  1669. (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
  1670. (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
  1671. (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-write-agenda)
  1672. (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
  1673. (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
  1674. (org-defkey org-agenda-mode-map "P" 'org-agenda-show-priority)
  1675. (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
  1676. (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
  1677. (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
  1678. (substitute-key-definition 'next-line 'org-agenda-next-line
  1679. org-agenda-mode-map global-map)
  1680. (substitute-key-definition 'previous-line 'org-agenda-previous-line
  1681. org-agenda-mode-map global-map)
  1682. (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
  1683. (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
  1684. (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
  1685. (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
  1686. (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
  1687. (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
  1688. (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
  1689. (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
  1690. (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
  1691. (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
  1692. (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
  1693. (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
  1694. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
  1695. (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
  1696. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
  1697. (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
  1698. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
  1699. (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
  1700. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
  1701. (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
  1702. (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
  1703. (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
  1704. (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
  1705. (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
  1706. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
  1707. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
  1708. (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
  1709. (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
  1710. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
  1711. (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
  1712. (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
  1713. (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
  1714. (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
  1715. (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
  1716. (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
  1717. (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
  1718. (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
  1719. (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
  1720. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
  1721. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
  1722. (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
  1723. (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
  1724. (when org-agenda-mouse-1-follows-link
  1725. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  1726. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  1727. '("Agenda"
  1728. ("Agenda Files")
  1729. "--"
  1730. ("Agenda Dates"
  1731. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
  1732. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  1733. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  1734. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  1735. "--"
  1736. ("View"
  1737. ["Day View" org-agenda-day-view
  1738. :active (org-agenda-check-type nil 'agenda)
  1739. :style radio :selected (eq org-agenda-current-span 'day)
  1740. :keys "v d (or just d)"]
  1741. ["Week View" org-agenda-week-view
  1742. :active (org-agenda-check-type nil 'agenda)
  1743. :style radio :selected (eq org-agenda-current-span 'week)
  1744. :keys "v w (or just w)"]
  1745. ["Month View" org-agenda-month-view
  1746. :active (org-agenda-check-type nil 'agenda)
  1747. :style radio :selected (eq org-agenda-current-span 'month)
  1748. :keys "v m"]
  1749. ["Year View" org-agenda-year-view
  1750. :active (org-agenda-check-type nil 'agenda)
  1751. :style radio :selected (eq org-agenda-current-span 'year)
  1752. :keys "v y"]
  1753. "--"
  1754. ["Include Diary" org-agenda-toggle-diary
  1755. :style toggle :selected org-agenda-include-diary
  1756. :active (org-agenda-check-type nil 'agenda)]
  1757. ["Include Deadlines" org-agenda-toggle-deadlines
  1758. :style toggle :selected org-agenda-include-deadlines
  1759. :active (org-agenda-check-type nil 'agenda)]
  1760. ["Use Time Grid" org-agenda-toggle-time-grid
  1761. :style toggle :selected org-agenda-use-time-grid
  1762. :active (org-agenda-check-type nil 'agenda)]
  1763. "--"
  1764. ["Show clock report" org-agenda-clockreport-mode
  1765. :style toggle :selected org-agenda-clockreport-mode
  1766. :active (org-agenda-check-type nil 'agenda)]
  1767. ["Show some entry text" org-agenda-entry-text-mode
  1768. :style toggle :selected org-agenda-entry-text-mode
  1769. :active t]
  1770. "--"
  1771. ["Show Logbook entries" org-agenda-log-mode
  1772. :style toggle :selected org-agenda-show-log
  1773. :active (org-agenda-check-type nil 'agenda 'timeline)
  1774. :keys "v l (or just l)"]
  1775. ["Include archived trees" org-agenda-archives-mode
  1776. :style toggle :selected org-agenda-archives-mode :active t
  1777. :keys "v a"]
  1778. ["Include archive files" (org-agenda-archives-mode t)
  1779. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  1780. :keys "v A"]
  1781. "--"
  1782. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  1783. ["Write view to file" org-write-agenda t]
  1784. ["Rebuild buffer" org-agenda-redo t]
  1785. ["Save all Org-mode Buffers" org-save-all-org-buffers t]
  1786. "--"
  1787. ["Show original entry" org-agenda-show t]
  1788. ["Go To (other window)" org-agenda-goto t]
  1789. ["Go To (this window)" org-agenda-switch-to t]
  1790. ["Follow Mode" org-agenda-follow-mode
  1791. :style toggle :selected org-agenda-follow-mode :active t]
  1792. ; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  1793. "--"
  1794. ("TODO"
  1795. ["Cycle TODO" org-agenda-todo t]
  1796. ["Next TODO set" org-agenda-todo-nextset t]
  1797. ["Previous TODO set" org-agenda-todo-previousset t]
  1798. ["Add note" org-agenda-add-note t])
  1799. ("Archive/Refile/Delete"
  1800. ["Archive default" org-agenda-archive-default t]
  1801. ["Archive default" org-agenda-archive-default-with-confirmation t]
  1802. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  1803. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  1804. ["Archive subtree" org-agenda-archive t]
  1805. "--"
  1806. ["Refile" org-agenda-refile t]
  1807. "--"
  1808. ["Delete subtree" org-agenda-kill t])
  1809. ("Bulk action"
  1810. ["Mark entry" org-agenda-bulk-mark t]
  1811. ["Mark matching regexp" org-agenda-bulk-mark-regexp t]
  1812. ["Unmark entry" org-agenda-bulk-unmark t]
  1813. ["Unmark all entries" org-agenda-bulk-remove-all-marks :active t :keys "C-u s"])
  1814. ["Act on all marked" org-agenda-bulk-action t]
  1815. "--"
  1816. ("Tags and Properties"
  1817. ["Show all Tags" org-agenda-show-tags t]
  1818. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  1819. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  1820. "--"
  1821. ["Column View" org-columns t])
  1822. ("Deadline/Schedule"
  1823. ["Schedule" org-agenda-schedule t]
  1824. ["Set Deadline" org-agenda-deadline t]
  1825. "--"
  1826. ["Mark item" org-agenda-action :active t :keys "k m"]
  1827. ["Show mark item" org-agenda-action :active t :keys "k v"]
  1828. ["Schedule marked item" org-agenda-action :active t :keys "k s"]
  1829. ["Set Deadline for marked item" org-agenda-action :active t :keys "k d"]
  1830. "--"
  1831. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
  1832. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
  1833. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
  1834. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
  1835. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
  1836. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
  1837. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
  1838. ("Clock and Effort"
  1839. ["Clock in" org-agenda-clock-in t]
  1840. ["Clock out" org-agenda-clock-out t]
  1841. ["Clock cancel" org-agenda-clock-cancel t]
  1842. ["Goto running clock" org-clock-goto t]
  1843. "--"
  1844. ["Set Effort" org-agenda-set-effort t]
  1845. ["Change clocked effort" org-clock-modify-effort-estimate
  1846. (org-clock-is-active)])
  1847. ("Priority"
  1848. ["Set Priority" org-agenda-priority t]
  1849. ["Increase Priority" org-agenda-priority-up t]
  1850. ["Decrease Priority" org-agenda-priority-down t]
  1851. ["Show Priority" org-agenda-show-priority t])
  1852. ("Calendar/Diary"
  1853. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
  1854. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
  1855. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
  1856. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
  1857. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
  1858. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
  1859. "--"
  1860. ["Create iCalendar File" org-export-icalendar-combine-agenda-files t])
  1861. "--"
  1862. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  1863. "--"
  1864. ("MobileOrg"
  1865. ["Push Files and Views" org-mobile-push t]
  1866. ["Get Captured and Flagged" org-mobile-pull t]
  1867. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
  1868. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  1869. "--"
  1870. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  1871. "--"
  1872. ["Quit" org-agenda-quit t]
  1873. ["Exit and Release Buffers" org-agenda-exit t]
  1874. ))
  1875. ;;; Agenda undo
  1876. (defvar org-agenda-allow-remote-undo t
  1877. "Non-nil means allow remote undo from the agenda buffer.")
  1878. (defvar org-agenda-undo-list nil
  1879. "List of undoable operations in the agenda since last refresh.")
  1880. (defvar org-agenda-undo-has-started-in nil
  1881. "Buffers that have already seen `undo-start' in the current undo sequence.")
  1882. (defvar org-agenda-pending-undo-list nil
  1883. "In a series of undo commands, this is the list of remaining undo items.")
  1884. (defun org-agenda-undo ()
  1885. "Undo a remote editing step in the agenda.
  1886. This undoes changes both in the agenda buffer and in the remote buffer
  1887. that have been changed along."
  1888. (interactive)
  1889. (or org-agenda-allow-remote-undo
  1890. (error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  1891. (if (not (eq this-command last-command))
  1892. (setq org-agenda-undo-has-started-in nil
  1893. org-agenda-pending-undo-list org-agenda-undo-list))
  1894. (if (not org-agenda-pending-undo-list)
  1895. (error "No further undo information"))
  1896. (let* ((entry (pop org-agenda-pending-undo-list))
  1897. buf line cmd rembuf)
  1898. (setq cmd (pop entry) line (pop entry))
  1899. (setq rembuf (nth 2 entry))
  1900. (org-with-remote-undo rembuf
  1901. (while (bufferp (setq buf (pop entry)))
  1902. (if (pop entry)
  1903. (with-current-buffer buf
  1904. (let ((last-undo-buffer buf)
  1905. (inhibit-read-only t))
  1906. (unless (memq buf org-agenda-undo-has-started-in)
  1907. (push buf org-agenda-undo-has-started-in)
  1908. (make-local-variable 'pending-undo-list)
  1909. (undo-start))
  1910. (while (and pending-undo-list
  1911. (listp pending-undo-list)
  1912. (not (car pending-undo-list)))
  1913. (pop pending-undo-list))
  1914. (undo-more 1))))))
  1915. (org-goto-line line)
  1916. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  1917. (defun org-verify-change-for-undo (l1 l2)
  1918. "Verify that a real change occurred between the undo lists L1 and L2."
  1919. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  1920. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  1921. (not (eq l1 l2)))
  1922. ;;; Agenda dispatch
  1923. (defvar org-agenda-restrict nil)
  1924. (defvar org-agenda-restrict-begin (make-marker))
  1925. (defvar org-agenda-restrict-end (make-marker))
  1926. (defvar org-agenda-last-dispatch-buffer nil)
  1927. (defvar org-agenda-overriding-restriction nil)
  1928. ;;;###autoload
  1929. (defun org-agenda (&optional arg keys restriction)
  1930. "Dispatch agenda commands to collect entries to the agenda buffer.
  1931. Prompts for a command to execute. Any prefix arg will be passed
  1932. on to the selected command. The default selections are:
  1933. a Call `org-agenda-list' to display the agenda for current day or week.
  1934. t Call `org-todo-list' to display the global todo list.
  1935. T Call `org-todo-list' to display the global todo list, select only
  1936. entries with a specific TODO keyword (the user gets a prompt).
  1937. m Call `org-tags-view' to display headlines with tags matching
  1938. a condition (the user is prompted for the condition).
  1939. M Like `m', but select only TODO entries, no ordinary headlines.
  1940. L Create a timeline for the current buffer.
  1941. e Export views to associated files.
  1942. s Search entries for keywords.
  1943. / Multi occur across all agenda files and also files listed
  1944. in `org-agenda-text-search-extra-files'.
  1945. < Restrict agenda commands to buffer, subtree, or region.
  1946. Press several times to get the desired effect.
  1947. > Remove a previous restriction.
  1948. # List \"stuck\" projects.
  1949. ! Configure what \"stuck\" means.
  1950. C Configure custom agenda commands.
  1951. More commands can be added by configuring the variable
  1952. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  1953. searches can be pre-defined in this way.
  1954. If the current buffer is in Org-mode and visiting a file, you can also
  1955. first press `<' once to indicate that the agenda should be temporarily
  1956. \(until the next use of \\[org-agenda]) restricted to the current file.
  1957. Pressing `<' twice means to restrict to the current subtree or region
  1958. \(if active)."
  1959. (interactive "P")
  1960. (catch 'exit
  1961. (let* ((prefix-descriptions nil)
  1962. (org-agenda-window-setup (if (equal (buffer-name)
  1963. org-agenda-buffer-name)
  1964. 'current-window
  1965. org-agenda-window-setup))
  1966. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  1967. (org-agenda-custom-commands
  1968. ;; normalize different versions
  1969. (delq nil
  1970. (mapcar
  1971. (lambda (x)
  1972. (cond ((stringp (cdr x))
  1973. (push x prefix-descriptions)
  1974. nil)
  1975. ((stringp (nth 1 x)) x)
  1976. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  1977. (t (cons (car x) (cons "" (cdr x))))))
  1978. org-agenda-custom-commands)))
  1979. (buf (current-buffer))
  1980. (bfn (buffer-file-name (buffer-base-buffer)))
  1981. entry key type match lprops ans)
  1982. ;; Turn off restriction unless there is an overriding one,
  1983. (unless org-agenda-overriding-restriction
  1984. (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
  1985. ;; There is a request to keep the file list in place
  1986. (put 'org-agenda-files 'org-restrict nil))
  1987. (setq org-agenda-restrict nil)
  1988. (move-marker org-agenda-restrict-begin nil)
  1989. (move-marker org-agenda-restrict-end nil))
  1990. ;; Delete old local properties
  1991. (put 'org-agenda-redo-command 'org-lprops nil)
  1992. ;; Delete previously set last-arguments
  1993. (put 'org-agenda-redo-command 'last-args nil)
  1994. ;; Remember where this call originated
  1995. (setq org-agenda-last-dispatch-buffer (current-buffer))
  1996. (unless keys
  1997. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  1998. keys (car ans)
  1999. restriction (cdr ans)))
  2000. ;; Establish the restriction, if any
  2001. (when (and (not org-agenda-overriding-restriction) restriction)
  2002. (put 'org-agenda-files 'org-restrict (list bfn))
  2003. (cond
  2004. ((eq restriction 'region)
  2005. (setq org-agenda-restrict t)
  2006. (move-marker org-agenda-restrict-begin (region-beginning))
  2007. (move-marker org-agenda-restrict-end (region-end)))
  2008. ((eq restriction 'subtree)
  2009. (save-excursion
  2010. (setq org-agenda-restrict t)
  2011. (org-back-to-heading t)
  2012. (move-marker org-agenda-restrict-begin (point))
  2013. (move-marker org-agenda-restrict-end
  2014. (progn (org-end-of-subtree t)))))))
  2015. ;; For example the todo list should not need it (but does...)
  2016. (cond
  2017. ((setq entry (assoc keys org-agenda-custom-commands))
  2018. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2019. (progn
  2020. (setq type (nth 2 entry) match (eval (nth 3 entry))
  2021. lprops (nth 4 entry))
  2022. (put 'org-agenda-redo-command 'org-lprops lprops)
  2023. (cond
  2024. ((eq type 'agenda)
  2025. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2026. ((eq type 'alltodo)
  2027. (org-let lprops '(org-todo-list current-prefix-arg)))
  2028. ((eq type 'search)
  2029. (org-let lprops '(org-search-view current-prefix-arg match nil)))
  2030. ((eq type 'stuck)
  2031. (org-let lprops '(org-agenda-list-stuck-projects
  2032. current-prefix-arg)))
  2033. ((eq type 'tags)
  2034. (org-let lprops '(org-tags-view current-prefix-arg match)))
  2035. ((eq type 'tags-todo)
  2036. (org-let lprops '(org-tags-view '(4) match)))
  2037. ((eq type 'todo)
  2038. (org-let lprops '(org-todo-list match)))
  2039. ((eq type 'tags-tree)
  2040. (org-check-for-org-mode)
  2041. (org-let lprops '(org-match-sparse-tree current-prefix-arg match)))
  2042. ((eq type 'todo-tree)
  2043. (org-check-for-org-mode)
  2044. (org-let lprops
  2045. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2046. (regexp-quote match) "\\>"))))
  2047. ((eq type 'occur-tree)
  2048. (org-check-for-org-mode)
  2049. (org-let lprops '(org-occur match)))
  2050. ((functionp type)
  2051. (org-let lprops '(funcall type match)))
  2052. ((fboundp type)
  2053. (org-let lprops '(funcall type match)))
  2054. (t (error "Invalid custom agenda command type %s" type))))
  2055. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2056. ((equal keys "C")
  2057. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2058. (customize-variable 'org-agenda-custom-commands))
  2059. ((equal keys "a") (call-interactively 'org-agenda-list))
  2060. ((equal keys "s") (call-interactively 'org-search-view))
  2061. ((equal keys "t") (call-interactively 'org-todo-list))
  2062. ((equal keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2063. ((equal keys "m") (call-interactively 'org-tags-view))
  2064. ((equal keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2065. ((equal keys "e") (call-interactively 'org-store-agenda-views))
  2066. ((equal keys "?") (org-tags-view nil "+FLAGGED")
  2067. (org-add-hook
  2068. 'post-command-hook
  2069. (lambda ()
  2070. (unless (current-message)
  2071. (let* ((m (org-agenda-get-any-marker))
  2072. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2073. (when note
  2074. (message (concat
  2075. "FLAGGING-NOTE ([?] for more info): "
  2076. (org-add-props
  2077. (replace-regexp-in-string
  2078. "\\\\n" "//"
  2079. (copy-sequence note))
  2080. nil 'face 'org-warning)))))))
  2081. t t))
  2082. ((equal keys "L")
  2083. (unless (org-mode-p)
  2084. (error "This is not an Org-mode file"))
  2085. (unless restriction
  2086. (put 'org-agenda-files 'org-restrict (list bfn))
  2087. (org-call-with-arg 'org-timeline arg)))
  2088. ((equal keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2089. ((equal keys "/") (call-interactively 'org-occur-in-agenda-files))
  2090. ((equal keys "!") (customize-variable 'org-stuck-projects))
  2091. (t (error "Invalid agenda key"))))))
  2092. (defun org-agenda-append-agenda ()
  2093. "Append another agenda view to the current one.
  2094. This function allows interactive building of block agendas.
  2095. Agenda views are separated by `org-agenda-block-separator'."
  2096. (interactive)
  2097. (unless (string= (buffer-name) org-agenda-buffer-name)
  2098. (error "Can only append from within agenda buffer"))
  2099. (let ((org-agenda-multi t))
  2100. (org-agenda)
  2101. (widen)))
  2102. (defun org-agenda-normalize-custom-commands (cmds)
  2103. (delq nil
  2104. (mapcar
  2105. (lambda (x)
  2106. (cond ((stringp (cdr x)) nil)
  2107. ((stringp (nth 1 x)) x)
  2108. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2109. (t (cons (car x) (cons "" (cdr x))))))
  2110. cmds)))
  2111. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2112. "The user interface for selecting an agenda command."
  2113. (catch 'exit
  2114. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2115. (restrict-ok (and bfn (org-mode-p)))
  2116. (region-p (org-region-active-p))
  2117. (custom org-agenda-custom-commands)
  2118. (selstring "")
  2119. restriction second-time
  2120. c entry key type match prefixes rmheader header-end custom1 desc
  2121. line lines left right n n1)
  2122. (save-window-excursion
  2123. (delete-other-windows)
  2124. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2125. (erase-buffer)
  2126. (insert (eval-when-compile
  2127. (let ((header
  2128. "
  2129. Press key for an agenda command: < Buffer, subtree/region restriction
  2130. -------------------------------- > Remove restriction
  2131. a Agenda for current week or day e Export agenda views
  2132. t List of all TODO entries T Entries with special TODO kwd
  2133. m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
  2134. L Timeline for current buffer # List stuck projects (!=configure)
  2135. s Search for keywords C Configure custom agenda commands
  2136. / Multi-occur ? Find :FLAGGED: entries
  2137. ")
  2138. (start 0))
  2139. (while (string-match
  2140. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2141. header start)
  2142. (setq start (match-end 0))
  2143. (add-text-properties (match-beginning 2) (match-end 2)
  2144. '(face bold) header))
  2145. header)))
  2146. (setq header-end (move-marker (make-marker) (point)))
  2147. (while t
  2148. (setq custom1 custom)
  2149. (when (eq rmheader t)
  2150. (org-goto-line 1)
  2151. (re-search-forward ":" nil t)
  2152. (delete-region (match-end 0) (point-at-eol))
  2153. (forward-char 1)
  2154. (looking-at "-+")
  2155. (delete-region (match-end 0) (point-at-eol))
  2156. (move-marker header-end (match-end 0)))
  2157. (goto-char header-end)
  2158. (delete-region (point) (point-max))
  2159. ;; Produce all the lines that describe custom commands and prefixes
  2160. (setq lines nil)
  2161. (while (setq entry (pop custom1))
  2162. (setq key (car entry) desc (nth 1 entry)
  2163. type (nth 2 entry)
  2164. match (nth 3 entry))
  2165. (if (> (length key) 1)
  2166. (add-to-list 'prefixes (string-to-char key))
  2167. (setq line
  2168. (format
  2169. "%-4s%-14s"
  2170. (org-add-props (copy-sequence key)
  2171. '(face bold))
  2172. (cond
  2173. ((string-match "\\S-" desc) desc)
  2174. ((eq type 'agenda) "Agenda for current week or day")
  2175. ((eq type 'alltodo) "List of all TODO entries")
  2176. ((eq type 'search) "Word search")
  2177. ((eq type 'stuck) "List of stuck projects")
  2178. ((eq type 'todo) "TODO keyword")
  2179. ((eq type 'tags) "Tags query")
  2180. ((eq type 'tags-todo) "Tags (TODO)")
  2181. ((eq type 'tags-tree) "Tags tree")
  2182. ((eq type 'todo-tree) "TODO kwd tree")
  2183. ((eq type 'occur-tree) "Occur tree")
  2184. ((functionp type) (if (symbolp type)
  2185. (symbol-name type)
  2186. "Lambda expression"))
  2187. (t "???"))))
  2188. (if org-agenda-menu-show-matcher
  2189. (setq line
  2190. (concat line ": "
  2191. (cond
  2192. ((stringp match)
  2193. (setq match (copy-sequence match))
  2194. (org-add-props match nil 'face 'org-warning))
  2195. (match
  2196. (format "set of %d commands" (length match)))
  2197. (t ""))))
  2198. (if (org-string-nw-p match)
  2199. (add-text-properties
  2200. 0 (length line) (list 'help-echo
  2201. (concat "Matcher: "match)) line)))
  2202. (push line lines)))
  2203. (setq lines (nreverse lines))
  2204. (when prefixes
  2205. (mapc (lambda (x)
  2206. (push
  2207. (format "%s %s"
  2208. (org-add-props (char-to-string x)
  2209. nil 'face 'bold)
  2210. (or (cdr (assoc (concat selstring
  2211. (char-to-string x))
  2212. prefix-descriptions))
  2213. "Prefix key"))
  2214. lines))
  2215. prefixes))
  2216. ;; Check if we should display in two columns
  2217. (if org-agenda-menu-two-column
  2218. (progn
  2219. (setq n (length lines)
  2220. n1 (+ (/ n 2) (mod n 2))
  2221. right (nthcdr n1 lines)
  2222. left (copy-sequence lines))
  2223. (setcdr (nthcdr (1- n1) left) nil))
  2224. (setq left lines right nil))
  2225. (while left
  2226. (insert "\n" (pop left))
  2227. (when right
  2228. (if (< (current-column) 40)
  2229. (move-to-column 40 t)
  2230. (insert " "))
  2231. (insert (pop right))))
  2232. ;; Make the window the right size
  2233. (goto-char (point-min))
  2234. (if second-time
  2235. (if (not (pos-visible-in-window-p (point-max)))
  2236. (org-fit-window-to-buffer))
  2237. (setq second-time t)
  2238. (org-fit-window-to-buffer))
  2239. ;; Ask for selection
  2240. (message "Press key for agenda command%s:"
  2241. (if (or restrict-ok org-agenda-overriding-restriction)
  2242. (if org-agenda-overriding-restriction
  2243. " (restriction lock active)"
  2244. (if restriction
  2245. (format " (restricted to %s)" restriction)
  2246. " (unrestricted)"))
  2247. ""))
  2248. (setq c (read-char-exclusive))
  2249. (message "")
  2250. (cond
  2251. ((assoc (char-to-string c) custom)
  2252. (setq selstring (concat selstring (char-to-string c)))
  2253. (throw 'exit (cons selstring restriction)))
  2254. ((memq c prefixes)
  2255. (setq selstring (concat selstring (char-to-string c))
  2256. prefixes nil
  2257. rmheader (or rmheader t)
  2258. custom (delq nil (mapcar
  2259. (lambda (x)
  2260. (if (or (= (length (car x)) 1)
  2261. (/= (string-to-char (car x)) c))
  2262. nil
  2263. (cons (substring (car x) 1) (cdr x))))
  2264. custom))))
  2265. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2266. (message "Restriction is only possible in Org-mode buffers")
  2267. (ding) (sit-for 1))
  2268. ((eq c ?1)
  2269. (org-agenda-remove-restriction-lock 'noupdate)
  2270. (setq restriction 'buffer))
  2271. ((eq c ?0)
  2272. (org-agenda-remove-restriction-lock 'noupdate)
  2273. (setq restriction (if region-p 'region 'subtree)))
  2274. ((eq c ?<)
  2275. (org-agenda-remove-restriction-lock 'noupdate)
  2276. (setq restriction
  2277. (cond
  2278. ((eq restriction 'buffer)
  2279. (if region-p 'region 'subtree))
  2280. ((memq restriction '(subtree region))
  2281. nil)
  2282. (t 'buffer))))
  2283. ((eq c ?>)
  2284. (org-agenda-remove-restriction-lock 'noupdate)
  2285. (setq restriction nil))
  2286. ((and (equal selstring "") (memq c '(?s ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2287. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2288. ((and (> (length selstring) 0) (eq c ?\d))
  2289. (delete-window)
  2290. (org-agenda-get-restriction-and-command prefix-descriptions))
  2291. ((equal c ?q) (error "Abort"))
  2292. (t (error "Invalid key %c" c))))))))
  2293. (defvar org-agenda-overriding-arguments nil) ; dynamically scoped parameter
  2294. (defvar org-agenda-last-arguments nil
  2295. "The arguments of the previous call to `org-agenda'.")
  2296. (defun org-agenda-run-series (name series)
  2297. (org-let (nth 1 series) '(org-prepare-agenda name))
  2298. (let* ((org-agenda-multi t)
  2299. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2300. (org-agenda-overriding-arguments
  2301. (or org-agenda-overriding-arguments
  2302. (unless (null (delq nil (get 'org-agenda-redo-command 'last-args)))
  2303. (get 'org-agenda-redo-command 'last-args))))
  2304. (cmds (car series))
  2305. (gprops (nth 1 series))
  2306. match ;; The byte compiler incorrectly complains about this. Keep it!
  2307. cmd type lprops)
  2308. (while (setq cmd (pop cmds))
  2309. (setq type (car cmd) match (eval (nth 1 cmd)) lprops (nth 2 cmd))
  2310. (cond
  2311. ((eq type 'agenda)
  2312. (org-let2 gprops lprops
  2313. '(call-interactively 'org-agenda-list)))
  2314. ((eq type 'alltodo)
  2315. (org-let2 gprops lprops
  2316. '(call-interactively 'org-todo-list)))
  2317. ((eq type 'search)
  2318. (org-let2 gprops lprops
  2319. '(org-search-view current-prefix-arg match nil)))
  2320. ((eq type 'stuck)
  2321. (org-let2 gprops lprops
  2322. '(call-interactively 'org-agenda-list-stuck-projects)))
  2323. ((eq type 'tags)
  2324. (org-let2 gprops lprops
  2325. '(org-tags-view current-prefix-arg match)))
  2326. ((eq type 'tags-todo)
  2327. (org-let2 gprops lprops
  2328. '(org-tags-view '(4) match)))
  2329. ((eq type 'todo)
  2330. (org-let2 gprops lprops
  2331. '(org-todo-list match)))
  2332. ((fboundp type)
  2333. (org-let2 gprops lprops
  2334. '(funcall type match)))
  2335. (t (error "Invalid type in command series"))))
  2336. (widen)
  2337. (setq org-agenda-redo-command redo)
  2338. (put 'org-agenda-redo-command 'last-args org-agenda-last-arguments)
  2339. (goto-char (point-min)))
  2340. (org-fit-agenda-window)
  2341. (org-let (nth 1 series) '(org-finalize-agenda)))
  2342. ;;;###autoload
  2343. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2344. "Run an agenda command in batch mode and send the result to STDOUT.
  2345. If CMD-KEY is a string of length 1, it is used as a key in
  2346. `org-agenda-custom-commands' and triggers this command. If it is a
  2347. longer string it is used as a tags/todo match string.
  2348. Parameters are alternating variable names and values that will be bound
  2349. before running the agenda command."
  2350. (org-eval-in-environment (org-make-parameter-alist parameters)
  2351. (if (> (length cmd-key) 2)
  2352. (org-tags-view nil cmd-key)
  2353. (org-agenda nil cmd-key)))
  2354. (set-buffer org-agenda-buffer-name)
  2355. (princ (org-encode-for-stdout (buffer-string))))
  2356. (def-edebug-spec org-batch-agenda (form &rest sexp))
  2357. ;(defun org-encode-for-stdout (string)
  2358. ; (if (fboundp 'encode-coding-string)
  2359. ; (encode-coding-string string buffer-file-coding-system)
  2360. ; string))
  2361. (defun org-encode-for-stdout (string)
  2362. string)
  2363. (defvar org-agenda-info nil)
  2364. ;;;###autoload
  2365. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2366. "Run an agenda command in batch mode and send the result to STDOUT.
  2367. If CMD-KEY is a string of length 1, it is used as a key in
  2368. `org-agenda-custom-commands' and triggers this command. If it is a
  2369. longer string it is used as a tags/todo match string.
  2370. Parameters are alternating variable names and values that will be bound
  2371. before running the agenda command.
  2372. The output gives a line for each selected agenda item. Each
  2373. item is a list of comma-separated values, like this:
  2374. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2375. category The category of the item
  2376. head The headline, without TODO kwd, TAGS and PRIORITY
  2377. type The type of the agenda entry, can be
  2378. todo selected in TODO match
  2379. tagsmatch selected in tags match
  2380. diary imported from diary
  2381. deadline a deadline on given date
  2382. scheduled scheduled on given date
  2383. timestamp entry has timestamp on given date
  2384. closed entry was closed on given date
  2385. upcoming-deadline warning about deadline
  2386. past-scheduled forwarded scheduled item
  2387. block entry has date block including g. date
  2388. todo The todo keyword, if any
  2389. tags All tags including inherited ones, separated by colons
  2390. date The relevant date, like 2007-2-14
  2391. time The time, like 15:00-16:50
  2392. extra Sting with extra planning info
  2393. priority-l The priority letter if any was given
  2394. priority-n The computed numerical priority
  2395. agenda-day The day in the agenda where this is listed"
  2396. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  2397. (org-make-parameter-alist parameters))
  2398. (if (> (length cmd-key) 2)
  2399. (org-tags-view nil cmd-key)
  2400. (org-agenda nil cmd-key)))
  2401. (set-buffer org-agenda-buffer-name)
  2402. (let* ((lines (org-split-string (buffer-string) "\n"))
  2403. line)
  2404. (while (setq line (pop lines))
  2405. (catch 'next
  2406. (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
  2407. (setq org-agenda-info
  2408. (org-fix-agenda-info (text-properties-at 0 line)))
  2409. (princ
  2410. (org-encode-for-stdout
  2411. (mapconcat 'org-agenda-export-csv-mapper
  2412. '(org-category txt type todo tags date time extra
  2413. priority-letter priority agenda-day)
  2414. ",")))
  2415. (princ "\n")))))
  2416. (def-edebug-spec org-batch-agenda-csv (form &rest sexp))
  2417. (defun org-fix-agenda-info (props)
  2418. "Make sure all properties on an agenda item have a canonical form.
  2419. This ensures the export commands can easily use it."
  2420. (let (tmp re)
  2421. (when (setq tmp (plist-get props 'tags))
  2422. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  2423. (when (setq tmp (plist-get props 'date))
  2424. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2425. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2426. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  2427. (setq tmp (calendar-date-string tmp)))
  2428. (setq props (plist-put props 'date tmp)))
  2429. (when (setq tmp (plist-get props 'day))
  2430. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2431. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2432. (setq tmp (calendar-date-string tmp)))
  2433. (setq props (plist-put props 'day tmp))
  2434. (setq props (plist-put props 'agenda-day tmp)))
  2435. (when (setq tmp (plist-get props 'txt))
  2436. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  2437. (plist-put props 'priority-letter (match-string 1 tmp))
  2438. (setq tmp (replace-match "" t t tmp)))
  2439. (when (and (setq re (plist-get props 'org-todo-regexp))
  2440. (setq re (concat "\\`\\.*" re " ?"))
  2441. (string-match re tmp))
  2442. (plist-put props 'todo (match-string 1 tmp))
  2443. (setq tmp (replace-match "" t t tmp)))
  2444. (plist-put props 'txt tmp)))
  2445. props)
  2446. (defun org-agenda-export-csv-mapper (prop)
  2447. (let ((res (plist-get org-agenda-info prop)))
  2448. (setq res
  2449. (cond
  2450. ((not res) "")
  2451. ((stringp res) res)
  2452. (t (prin1-to-string res))))
  2453. (while (string-match "," res)
  2454. (setq res (replace-match ";" t t res)))
  2455. (org-trim res)))
  2456. ;;;###autoload
  2457. (defun org-store-agenda-views (&rest parameters)
  2458. (interactive)
  2459. (eval (list 'org-batch-store-agenda-views)))
  2460. ;;;###autoload
  2461. (defmacro org-batch-store-agenda-views (&rest parameters)
  2462. "Run all custom agenda commands that have a file argument."
  2463. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  2464. (pop-up-frames nil)
  2465. (dir default-directory)
  2466. (pars (org-make-parameter-alist parameters))
  2467. cmd thiscmdkey files opts cmd-or-set)
  2468. (save-window-excursion
  2469. (while cmds
  2470. (setq cmd (pop cmds)
  2471. thiscmdkey (car cmd)
  2472. cmd-or-set (nth 2 cmd)
  2473. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  2474. files (nth (if (listp cmd-or-set) 4 5) cmd))
  2475. (if (stringp files) (setq files (list files)))
  2476. (when files
  2477. (org-eval-in-environment (append org-agenda-exporter-settings
  2478. opts pars)
  2479. (org-agenda nil thiscmdkey))
  2480. (set-buffer org-agenda-buffer-name)
  2481. (while files
  2482. (org-eval-in-environment (append org-agenda-exporter-settings
  2483. opts pars)
  2484. (org-write-agenda (expand-file-name (pop files) dir) nil t)))
  2485. (and (get-buffer org-agenda-buffer-name)
  2486. (kill-buffer org-agenda-buffer-name)))))))
  2487. (def-edebug-spec org-batch-store-agenda-views (&rest sexp))
  2488. (defun org-agenda-mark-header-line (pos)
  2489. "Mark the line at POS as an agenda structure header."
  2490. (save-excursion
  2491. (goto-char pos)
  2492. (put-text-property (point-at-bol) (point-at-eol)
  2493. 'org-agenda-structural-header t)
  2494. (when org-agenda-title-append
  2495. (put-text-property (point-at-bol) (point-at-eol)
  2496. 'org-agenda-title-append org-agenda-title-append))))
  2497. (defvar org-mobile-creating-agendas)
  2498. (defun org-write-agenda (file &optional open nosettings)
  2499. "Write the current buffer (an agenda view) as a file.
  2500. Depending on the extension of the file name, plain text (.txt),
  2501. HTML (.html or .htm) or Postscript (.ps) is produced.
  2502. If the extension is .ics, run icalendar export over all files used
  2503. to construct the agenda and limit the export to entries listed in the
  2504. agenda now.
  2505. With prefix argument OPEN, open the new file immediately.
  2506. If NOSETTINGS is given, do not scope the settings of
  2507. `org-agenda-exporter-settings' into the export commands. This is used when
  2508. the settings have already been scoped and we do not wish to overrule other,
  2509. higher priority settings."
  2510. (interactive "FWrite agenda to file: \nP")
  2511. (if (not (file-writable-p file))
  2512. (error "Cannot write agenda to file %s" file))
  2513. (org-let (if nosettings nil org-agenda-exporter-settings)
  2514. '(save-excursion
  2515. (save-window-excursion
  2516. (org-agenda-mark-filtered-text)
  2517. (let ((bs (copy-sequence (buffer-string))) beg)
  2518. (org-agenda-unmark-filtered-text)
  2519. (with-temp-buffer
  2520. (rename-buffer "Agenda View" t)
  2521. (set-buffer-modified-p nil)
  2522. (insert bs)
  2523. (org-agenda-remove-marked-text 'org-filtered)
  2524. (while (setq beg (text-property-any (point-min) (point-max)
  2525. 'org-filtered t))
  2526. (delete-region
  2527. beg (or (next-single-property-change beg 'org-filtered)
  2528. (point-max))))
  2529. (run-hooks 'org-agenda-before-write-hook)
  2530. (cond
  2531. ((org-bound-and-true-p org-mobile-creating-agendas)
  2532. (org-mobile-write-agenda-for-mobile file))
  2533. ((string-match "\\.html?\\'" file)
  2534. (require 'htmlize)
  2535. (set-buffer (htmlize-buffer (current-buffer)))
  2536. (when (and org-agenda-export-html-style
  2537. (string-match "<style>" org-agenda-export-html-style))
  2538. ;; replace <style> section with org-agenda-export-html-style
  2539. (goto-char (point-min))
  2540. (kill-region (- (search-forward "<style") 6)
  2541. (search-forward "</style>"))
  2542. (insert org-agenda-export-html-style))
  2543. (write-file file)
  2544. (kill-buffer (current-buffer))
  2545. (message "HTML written to %s" file))
  2546. ((string-match "\\.ps\\'" file)
  2547. (require 'ps-print)
  2548. (ps-print-buffer-with-faces file)
  2549. (message "Postscript written to %s" file))
  2550. ((string-match "\\.pdf\\'" file)
  2551. (require 'ps-print)
  2552. (ps-print-buffer-with-faces
  2553. (concat (file-name-sans-extension file) ".ps"))
  2554. (call-process "ps2pdf" nil nil nil
  2555. (expand-file-name
  2556. (concat (file-name-sans-extension file) ".ps"))
  2557. (expand-file-name file))
  2558. (delete-file (concat (file-name-sans-extension file) ".ps"))
  2559. (message "PDF written to %s" file))
  2560. ((string-match "\\.ics\\'" file)
  2561. (require 'org-icalendar)
  2562. (let ((org-agenda-marker-table
  2563. (org-create-marker-find-array
  2564. (org-agenda-collect-markers)))
  2565. (org-icalendar-verify-function 'org-check-agenda-marker-table)
  2566. (org-combined-agenda-icalendar-file file))
  2567. (apply 'org-export-icalendar 'combine
  2568. (org-agenda-files nil 'ifmode))))
  2569. (t
  2570. (let ((bs (buffer-string)))
  2571. (find-file file)
  2572. (erase-buffer)
  2573. (insert bs)
  2574. (save-buffer 0)
  2575. (kill-buffer (current-buffer))
  2576. (message "Plain text written to %s" file))))))))
  2577. (set-buffer org-agenda-buffer-name))
  2578. (when open (org-open-file file)))
  2579. (defvar org-agenda-filter-overlays nil)
  2580. (defun org-agenda-mark-filtered-text ()
  2581. "Mark all text hidden by filtering with a text property."
  2582. (let ((inhibit-read-only t))
  2583. (mapc
  2584. (lambda (o)
  2585. (when (equal (overlay-buffer o) (current-buffer))
  2586. (put-text-property
  2587. (overlay-start o) (overlay-end o)
  2588. 'org-filtered t)))
  2589. org-agenda-filter-overlays)))
  2590. (defun org-agenda-unmark-filtered-text ()
  2591. "Remove the filtering text property."
  2592. (let ((inhibit-read-only t))
  2593. (remove-text-properties (point-min) (point-max) '(org-filtered t))))
  2594. (defun org-agenda-remove-marked-text (property &optional value)
  2595. "Delete all text marked with VALUE of PROPERTY.
  2596. VALUE defaults to t."
  2597. (let (beg)
  2598. (setq value (or value t))
  2599. (while (setq beg (text-property-any (point-min) (point-max)
  2600. property value))
  2601. (delete-region
  2602. beg (or (next-single-property-change beg 'org-filtered)
  2603. (point-max))))))
  2604. (defun org-agenda-add-entry-text ()
  2605. "Add entry text to agenda lines.
  2606. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  2607. entry text following headings shown in the agenda.
  2608. Drawers will be excluded, also the line with scheduling/deadline info."
  2609. (when (and (> org-agenda-add-entry-text-maxlines 0)
  2610. (not (org-bound-and-true-p org-mobile-creating-agendas)))
  2611. (let (m txt)
  2612. (goto-char (point-min))
  2613. (while (not (eobp))
  2614. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  2615. (beginning-of-line 2)
  2616. (setq txt (org-agenda-get-some-entry-text
  2617. m org-agenda-add-entry-text-maxlines " > "))
  2618. (end-of-line 1)
  2619. (if (string-match "\\S-" txt)
  2620. (insert "\n" txt)
  2621. (or (eobp) (forward-char 1))))))))
  2622. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  2623. &rest keep)
  2624. "Extract entry text from MARKER, at most N-LINES lines.
  2625. This will ignore drawers etc, just get the text.
  2626. If INDENT is given, prefix every line with this string. If KEEP is
  2627. given, it is a list of symbols, defining stuff that should not be
  2628. removed from the entry content. Currently only `planning' is allowed here."
  2629. (let (txt drawer-re kwd-time-re ind)
  2630. (save-excursion
  2631. (with-current-buffer (marker-buffer marker)
  2632. (if (not (org-mode-p))
  2633. (setq txt "")
  2634. (save-excursion
  2635. (save-restriction
  2636. (widen)
  2637. (goto-char marker)
  2638. (end-of-line 1)
  2639. (setq txt (buffer-substring
  2640. (min (1+ (point)) (point-max))
  2641. (progn (outline-next-heading) (point)))
  2642. drawer-re org-drawer-regexp
  2643. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  2644. ".*\n?"))
  2645. (with-temp-buffer
  2646. (insert txt)
  2647. (when org-agenda-add-entry-text-descriptive-links
  2648. (goto-char (point-min))
  2649. (while (org-activate-bracket-links (point-max))
  2650. (add-text-properties (match-beginning 0) (match-end 0)
  2651. '(face org-link))))
  2652. (goto-char (point-min))
  2653. (while (re-search-forward org-bracket-link-regexp (point-max) t)
  2654. (set-text-properties (match-beginning 0) (match-end 0)
  2655. nil))
  2656. (goto-char (point-min))
  2657. (while (re-search-forward drawer-re nil t)
  2658. (delete-region
  2659. (match-beginning 0)
  2660. (progn (re-search-forward
  2661. "^[ \t]*:END:.*\n?" nil 'move)
  2662. (point))))
  2663. (unless (member 'planning keep)
  2664. (goto-char (point-min))
  2665. (while (re-search-forward kwd-time-re nil t)
  2666. (replace-match "")))
  2667. (goto-char (point-min))
  2668. (when org-agenda-entry-text-exclude-regexps
  2669. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  2670. (while (setq re (pop re-list))
  2671. (goto-char (point-min))
  2672. (while (re-search-forward re nil t)
  2673. (replace-match "")))))
  2674. (goto-char (point-max))
  2675. (skip-chars-backward " \t\n")
  2676. (if (looking-at "[ \t\n]+\\'") (replace-match ""))
  2677. ;; find and remove min common indentation
  2678. (goto-char (point-min))
  2679. (untabify (point-min) (point-max))
  2680. (setq ind (org-get-indentation))
  2681. (while (not (eobp))
  2682. (unless (looking-at "[ \t]*$")
  2683. (setq ind (min ind (org-get-indentation))))
  2684. (beginning-of-line 2))
  2685. (goto-char (point-min))
  2686. (while (not (eobp))
  2687. (unless (looking-at "[ \t]*$")
  2688. (move-to-column ind)
  2689. (delete-region (point-at-bol) (point)))
  2690. (beginning-of-line 2))
  2691. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  2692. (goto-char (point-min))
  2693. (when indent
  2694. (while (and (not (eobp)) (re-search-forward "^" nil t))
  2695. (replace-match indent t t)))
  2696. (goto-char (point-min))
  2697. (while (looking-at "[ \t]*\n") (replace-match ""))
  2698. (goto-char (point-max))
  2699. (when (> (org-current-line)
  2700. n-lines)
  2701. (org-goto-line (1+ n-lines))
  2702. (backward-char 1))
  2703. (setq txt (buffer-substring (point-min) (point)))))))))
  2704. txt))
  2705. (defun org-agenda-collect-markers ()
  2706. "Collect the markers pointing to entries in the agenda buffer."
  2707. (let (m markers)
  2708. (save-excursion
  2709. (goto-char (point-min))
  2710. (while (not (eobp))
  2711. (when (setq m (or (org-get-at-bol 'org-hd-marker)
  2712. (org-get-at-bol 'org-marker)))
  2713. (push m markers))
  2714. (beginning-of-line 2)))
  2715. (nreverse markers)))
  2716. (defun org-create-marker-find-array (marker-list)
  2717. "Create a alist of files names with all marker positions in that file."
  2718. (let (f tbl m a p)
  2719. (while (setq m (pop marker-list))
  2720. (setq p (marker-position m)
  2721. f (buffer-file-name (or (buffer-base-buffer
  2722. (marker-buffer m))
  2723. (marker-buffer m))))
  2724. (if (setq a (assoc f tbl))
  2725. (push (marker-position m) (cdr a))
  2726. (push (list f p) tbl)))
  2727. (mapcar (lambda (x) (setcdr x (sort (copy-sequence (cdr x)) '<)) x)
  2728. tbl)))
  2729. (defvar org-agenda-marker-table nil) ; dynamically scoped parameter
  2730. (defun org-check-agenda-marker-table ()
  2731. "Check of the current entry is on the marker list."
  2732. (let ((file (buffer-file-name (or (buffer-base-buffer) (current-buffer))))
  2733. a)
  2734. (and (setq a (assoc file org-agenda-marker-table))
  2735. (save-match-data
  2736. (save-excursion
  2737. (org-back-to-heading t)
  2738. (member (point) (cdr a)))))))
  2739. (defun org-check-for-org-mode ()
  2740. "Make sure current buffer is in org-mode. Error if not."
  2741. (or (org-mode-p)
  2742. (error "Cannot execute org-mode agenda command on buffer in %s"
  2743. major-mode)))
  2744. (defun org-fit-agenda-window ()
  2745. "Fit the window to the buffer size."
  2746. (and (memq org-agenda-window-setup '(reorganize-frame))
  2747. (fboundp 'fit-window-to-buffer)
  2748. (org-fit-window-to-buffer
  2749. nil
  2750. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2751. (floor (* (frame-height) (car org-agenda-window-frame-fractions))))))
  2752. ;;; Agenda prepare and finalize
  2753. (defvar org-agenda-multi nil) ; dynamically scoped
  2754. (defvar org-agenda-buffer-name "*Org Agenda*")
  2755. (defvar org-pre-agenda-window-conf nil)
  2756. (defvar org-agenda-columns-active nil)
  2757. (defvar org-agenda-name nil)
  2758. (defvar org-agenda-filter nil)
  2759. (defvar org-agenda-filter-while-redo nil)
  2760. (defvar org-agenda-filter-preset nil
  2761. "A preset of the tags filter used for secondary agenda filtering.
  2762. This must be a list of strings, each string must be a single tag preceded
  2763. by \"+\" or \"-\".
  2764. This variable should not be set directly, but agenda custom commands can
  2765. bind it in the options section. The preset filter is a global property of
  2766. the entire agenda view. In a block agenda, it will not work reliably to
  2767. define a filter for one of the individual blocks. You need to set it in
  2768. the global options and expect it to be applied to the entire view.")
  2769. (defun org-prepare-agenda (&optional name)
  2770. (setq org-todo-keywords-for-agenda nil)
  2771. (setq org-done-keywords-for-agenda nil)
  2772. (setq org-drawers-for-agenda nil)
  2773. (unless org-agenda-persistent-filter
  2774. (setq org-agenda-filter nil))
  2775. (put 'org-agenda-filter :preset-filter org-agenda-filter-preset)
  2776. (if org-agenda-multi
  2777. (progn
  2778. (setq buffer-read-only nil)
  2779. (goto-char (point-max))
  2780. (unless (or (bobp) org-agenda-compact-blocks
  2781. (not org-agenda-block-separator))
  2782. (insert "\n"
  2783. (if (stringp org-agenda-block-separator)
  2784. org-agenda-block-separator
  2785. (make-string (window-width) org-agenda-block-separator))
  2786. "\n"))
  2787. (narrow-to-region (point) (point-max)))
  2788. (org-agenda-reset-markers)
  2789. (setq org-agenda-contributing-files nil)
  2790. (setq org-agenda-columns-active nil)
  2791. (org-prepare-agenda-buffers (org-agenda-files nil 'ifmode))
  2792. (setq org-todo-keywords-for-agenda
  2793. (org-uniquify org-todo-keywords-for-agenda))
  2794. (setq org-done-keywords-for-agenda
  2795. (org-uniquify org-done-keywords-for-agenda))
  2796. (setq org-drawers-for-agenda (org-uniquify org-drawers-for-agenda))
  2797. (let* ((abuf (get-buffer-create org-agenda-buffer-name))
  2798. (awin (get-buffer-window abuf)))
  2799. (cond
  2800. ((equal (current-buffer) abuf) nil)
  2801. (awin (select-window awin))
  2802. ((not (setq org-pre-agenda-window-conf (current-window-configuration))))
  2803. ((equal org-agenda-window-setup 'current-window)
  2804. (org-pop-to-buffer-same-window abuf))
  2805. ((equal org-agenda-window-setup 'other-window)
  2806. (org-switch-to-buffer-other-window abuf))
  2807. ((equal org-agenda-window-setup 'other-frame)
  2808. (switch-to-buffer-other-frame abuf))
  2809. ((equal org-agenda-window-setup 'reorganize-frame)
  2810. (delete-other-windows)
  2811. (org-switch-to-buffer-other-window abuf)))
  2812. ;; additional test in case agenda is invoked from within agenda
  2813. ;; buffer via elisp link
  2814. (unless (equal (current-buffer) abuf)
  2815. (org-pop-to-buffer-same-window abuf)))
  2816. (setq buffer-read-only nil)
  2817. (let ((inhibit-read-only t)) (erase-buffer))
  2818. (org-agenda-mode)
  2819. (and name (not org-agenda-name)
  2820. (org-set-local 'org-agenda-name name)))
  2821. (setq buffer-read-only nil))
  2822. (defun org-finalize-agenda ()
  2823. "Finishing touch for the agenda buffer, called just before displaying it."
  2824. (unless org-agenda-multi
  2825. (save-excursion
  2826. (let ((inhibit-read-only t))
  2827. (goto-char (point-min))
  2828. (while (org-activate-bracket-links (point-max))
  2829. (add-text-properties (match-beginning 0) (match-end 0)
  2830. '(face org-link)))
  2831. (org-agenda-align-tags)
  2832. (unless org-agenda-with-colors
  2833. (remove-text-properties (point-min) (point-max) '(face nil))))
  2834. (if (and (boundp 'org-agenda-overriding-columns-format)
  2835. org-agenda-overriding-columns-format)
  2836. (org-set-local 'org-agenda-overriding-columns-format
  2837. org-agenda-overriding-columns-format))
  2838. (if (and (boundp 'org-agenda-view-columns-initially)
  2839. org-agenda-view-columns-initially)
  2840. (org-agenda-columns))
  2841. (when org-agenda-fontify-priorities
  2842. (org-agenda-fontify-priorities))
  2843. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  2844. (org-agenda-dim-blocked-tasks))
  2845. (org-agenda-mark-clocking-task)
  2846. (when org-agenda-entry-text-mode
  2847. (org-agenda-entry-text-hide)
  2848. (org-agenda-entry-text-show))
  2849. (if (functionp 'org-habit-insert-consistency-graphs)
  2850. (org-habit-insert-consistency-graphs))
  2851. (run-hooks 'org-finalize-agenda-hook)
  2852. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  2853. (when (or org-agenda-filter (get 'org-agenda-filter :preset-filter))
  2854. (org-agenda-filter-apply org-agenda-filter))
  2855. )))
  2856. (defun org-agenda-mark-clocking-task ()
  2857. "Mark the current clock entry in the agenda if it is present."
  2858. (mapc (lambda (o)
  2859. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  2860. (delete-overlay o)))
  2861. (overlays-in (point-min) (point-max)))
  2862. (when (marker-buffer org-clock-hd-marker)
  2863. (save-excursion
  2864. (goto-char (point-min))
  2865. (let (s ov)
  2866. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  2867. (goto-char s)
  2868. (when (equal (org-get-at-bol 'org-hd-marker)
  2869. org-clock-hd-marker)
  2870. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  2871. (overlay-put ov 'type 'org-agenda-clocking)
  2872. (overlay-put ov 'face 'org-agenda-clocking)
  2873. (overlay-put ov 'help-echo
  2874. "The clock is running in this item")))))))
  2875. (defun org-agenda-fontify-priorities ()
  2876. "Make highest priority lines bold, and lowest italic."
  2877. (interactive)
  2878. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
  2879. (delete-overlay o)))
  2880. (overlays-in (point-min) (point-max)))
  2881. (save-excursion
  2882. (let ((inhibit-read-only t)
  2883. b e p ov h l)
  2884. (goto-char (point-min))
  2885. (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
  2886. (setq h (or (get-char-property (point) 'org-highest-priority)
  2887. org-highest-priority)
  2888. l (or (get-char-property (point) 'org-lowest-priority)
  2889. org-lowest-priority)
  2890. p (string-to-char (match-string 1))
  2891. b (match-beginning 0)
  2892. e (if (eq org-agenda-fontify-priorities 'cookies)
  2893. (match-end 0)
  2894. (point-at-eol))
  2895. ov (make-overlay b e))
  2896. (overlay-put
  2897. ov 'face
  2898. (cond ((org-face-from-face-or-color
  2899. 'priority nil
  2900. (cdr (assoc p org-priority-faces))))
  2901. ((and (listp org-agenda-fontify-priorities)
  2902. (org-face-from-face-or-color
  2903. 'priority nil
  2904. (cdr (assoc p org-agenda-fontify-priorities)))))
  2905. ((equal p l) 'italic)
  2906. ((equal p h) 'bold)))
  2907. (overlay-put ov 'org-type 'org-priority)))))
  2908. (defun org-agenda-dim-blocked-tasks ()
  2909. "Dim currently blocked TODO's in the agenda display."
  2910. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-blocked-todo)
  2911. (delete-overlay o)))
  2912. (overlays-in (point-min) (point-max)))
  2913. (save-excursion
  2914. (let ((inhibit-read-only t)
  2915. (org-depend-tag-blocked nil)
  2916. (invis (eq org-agenda-dim-blocked-tasks 'invisible))
  2917. org-blocked-by-checkboxes
  2918. invis1 b e p ov h l)
  2919. (goto-char (point-min))
  2920. (while (let ((pos (next-single-property-change (point) 'todo-state)))
  2921. (and pos (goto-char (1+ pos))))
  2922. (setq org-blocked-by-checkboxes nil invis1 invis)
  2923. (let ((marker (org-get-at-bol 'org-hd-marker)))
  2924. (when (and marker
  2925. (not (with-current-buffer (marker-buffer marker)
  2926. (save-excursion
  2927. (goto-char marker)
  2928. (if (org-entry-get nil "NOBLOCKING")
  2929. t ;; Never block this entry
  2930. (run-hook-with-args-until-failure
  2931. 'org-blocker-hook
  2932. (list :type 'todo-state-change
  2933. :position marker
  2934. :from 'todo
  2935. :to 'done)))))))
  2936. (if org-blocked-by-checkboxes (setq invis1 nil))
  2937. (setq b (if invis1
  2938. (max (point-min) (1- (point-at-bol)))
  2939. (point-at-bol))
  2940. e (point-at-eol)
  2941. ov (make-overlay b e))
  2942. (if invis1
  2943. (overlay-put ov 'invisible t)
  2944. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  2945. (overlay-put ov 'org-type 'org-blocked-todo)))))))
  2946. (defvar org-agenda-skip-function nil
  2947. "Function to be called at each match during agenda construction.
  2948. If this function returns nil, the current match should not be skipped.
  2949. Otherwise, the function must return a position from where the search
  2950. should be continued.
  2951. This may also be a Lisp form, it will be evaluated.
  2952. Never set this variable using `setq' or so, because then it will apply
  2953. to all future agenda commands. If you do want a global skipping condition,
  2954. use the option `org-agenda-skip-function-global' instead.
  2955. The correct usage for `org-agenda-skip-function' is to bind it with
  2956. `let' to scope it dynamically into the agenda-constructing command.
  2957. A good way to set it is through options in `org-agenda-custom-commands'.")
  2958. (defun org-agenda-skip ()
  2959. "Throw to `:skip' in places that should be skipped.
  2960. Also moves point to the end of the skipped region, so that search can
  2961. continue from there."
  2962. (let ((p (point-at-bol)) to)
  2963. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  2964. (get-text-property p :org-archived)
  2965. (org-end-of-subtree t)
  2966. (throw :skip t))
  2967. (and org-agenda-skip-comment-trees
  2968. (get-text-property p :org-comment)
  2969. (org-end-of-subtree t)
  2970. (throw :skip t))
  2971. (if (equal (char-after p) ?#) (throw :skip t))
  2972. (when (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  2973. (org-agenda-skip-eval org-agenda-skip-function)))
  2974. (goto-char to)
  2975. (throw :skip t))))
  2976. (defun org-agenda-skip-eval (form)
  2977. "If FORM is a function or a list, call (or eval) is and return result.
  2978. `save-excursion' and `save-match-data' are wrapped around the call, so point
  2979. and match data are returned to the previous state no matter what these
  2980. functions do."
  2981. (let (fp)
  2982. (and form
  2983. (or (setq fp (functionp form))
  2984. (consp form))
  2985. (save-excursion
  2986. (save-match-data
  2987. (if fp
  2988. (funcall form)
  2989. (eval form)))))))
  2990. (defvar org-agenda-markers nil
  2991. "List of all currently active markers created by `org-agenda'.")
  2992. (defvar org-agenda-last-marker-time (org-float-time)
  2993. "Creation time of the last agenda marker.")
  2994. (defun org-agenda-new-marker (&optional pos)
  2995. "Return a new agenda marker.
  2996. Org-mode keeps a list of these markers and resets them when they are
  2997. no longer in use."
  2998. (let ((m (copy-marker (or pos (point)))))
  2999. (setq org-agenda-last-marker-time (org-float-time))
  3000. (push m org-agenda-markers)
  3001. m))
  3002. (defun org-agenda-reset-markers ()
  3003. "Reset markers created by `org-agenda'."
  3004. (while org-agenda-markers
  3005. (move-marker (pop org-agenda-markers) nil)))
  3006. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3007. "Save relative positions of markers in region."
  3008. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3009. org-agenda-markers))
  3010. ;;; Entry text mode
  3011. (defun org-agenda-entry-text-show-here ()
  3012. "Add some text from the entry as context to the current line."
  3013. (let (m txt o)
  3014. (setq m (org-get-at-bol 'org-hd-marker))
  3015. (unless (marker-buffer m)
  3016. (error "No marker points to an entry here"))
  3017. (setq txt (concat "\n" (org-no-properties
  3018. (org-agenda-get-some-entry-text
  3019. m org-agenda-entry-text-maxlines " > "))))
  3020. (when (string-match "\\S-" txt)
  3021. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3022. (overlay-put o 'evaporate t)
  3023. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3024. (overlay-put o 'after-string txt))))
  3025. (defun org-agenda-entry-text-show ()
  3026. "Add entry context for all agenda lines."
  3027. (interactive)
  3028. (save-excursion
  3029. (goto-char (point-max))
  3030. (beginning-of-line 1)
  3031. (while (not (bobp))
  3032. (when (org-get-at-bol 'org-hd-marker)
  3033. (org-agenda-entry-text-show-here))
  3034. (beginning-of-line 0))))
  3035. (defun org-agenda-entry-text-hide ()
  3036. "Remove any shown entry context."
  3037. (delq nil
  3038. (mapcar (lambda (o)
  3039. (if (eq (overlay-get o 'org-overlay-type)
  3040. 'agenda-entry-content)
  3041. (progn (delete-overlay o) t)))
  3042. (overlays-in (point-min) (point-max)))))
  3043. (defun org-agenda-get-day-face (date)
  3044. "Return the face DATE should be displayed with."
  3045. (or (and (functionp org-agenda-day-face-function)
  3046. (funcall org-agenda-day-face-function date))
  3047. (cond ((org-agenda-todayp date)
  3048. 'org-agenda-date-today)
  3049. ((member (calendar-day-of-week date) org-agenda-weekend-days)
  3050. 'org-agenda-date-weekend)
  3051. (t 'org-agenda-date))))
  3052. ;;; Agenda timeline
  3053. (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
  3054. (defun org-timeline (&optional include-all)
  3055. "Show a time-sorted view of the entries in the current org file.
  3056. Only entries with a time stamp of today or later will be listed. With
  3057. \\[universal-argument] prefix, all unfinished TODO items will also be shown,
  3058. under the current date.
  3059. If the buffer contains an active region, only check the region for
  3060. dates."
  3061. (interactive "P")
  3062. (org-compile-prefix-format 'timeline)
  3063. (org-set-sorting-strategy 'timeline)
  3064. (let* ((dopast t)
  3065. (dotodo include-all)
  3066. (doclosed org-agenda-show-log)
  3067. (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
  3068. (current-buffer))))
  3069. (date (calendar-current-date))
  3070. (beg (if (org-region-active-p) (region-beginning) (point-min)))
  3071. (end (if (org-region-active-p) (region-end) (point-max)))
  3072. (day-numbers (org-get-all-dates beg end 'no-ranges
  3073. t doclosed ; always include today
  3074. org-timeline-show-empty-dates))
  3075. (org-deadline-warning-days 0)
  3076. (org-agenda-only-exact-dates t)
  3077. (today (org-today))
  3078. (past t)
  3079. args
  3080. s e rtn d emptyp)
  3081. (setq org-agenda-redo-command
  3082. (list 'progn
  3083. (list 'org-switch-to-buffer-other-window (current-buffer))
  3084. (list 'org-timeline (list 'quote include-all))))
  3085. (if (not dopast)
  3086. ;; Remove past dates from the list of dates.
  3087. (setq day-numbers (delq nil (mapcar (lambda(x)
  3088. (if (>= x today) x nil))
  3089. day-numbers))))
  3090. (org-prepare-agenda (concat "Timeline " (file-name-nondirectory entry)))
  3091. (if doclosed (push :closed args))
  3092. (push :timestamp args)
  3093. (push :deadline args)
  3094. (push :scheduled args)
  3095. (push :sexp args)
  3096. (if dotodo (push :todo args))
  3097. (insert "Timeline of file " entry "\n")
  3098. (add-text-properties (point-min) (point)
  3099. (list 'face 'org-agenda-structure))
  3100. (org-agenda-mark-header-line (point-min))
  3101. (while (setq d (pop day-numbers))
  3102. (if (and (listp d) (eq (car d) :omitted))
  3103. (progn
  3104. (setq s (point))
  3105. (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
  3106. (put-text-property s (1- (point)) 'face 'org-agenda-structure))
  3107. (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
  3108. (if (and (>= d today)
  3109. dopast
  3110. past)
  3111. (progn
  3112. (setq past nil)
  3113. (insert (make-string 79 ?-) "\n")))
  3114. (setq date (calendar-gregorian-from-absolute d))
  3115. (setq s (point))
  3116. (setq rtn (and (not emptyp)
  3117. (apply 'org-agenda-get-day-entries entry
  3118. date args)))
  3119. (if (or rtn (equal d today) org-timeline-show-empty-dates)
  3120. (progn
  3121. (insert
  3122. (if (stringp org-agenda-format-date)
  3123. (format-time-string org-agenda-format-date
  3124. (org-time-from-absolute date))
  3125. (funcall org-agenda-format-date date))
  3126. "\n")
  3127. (put-text-property s (1- (point)) 'face
  3128. (org-agenda-get-day-face date))
  3129. (put-text-property s (1- (point)) 'org-date-line t)
  3130. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3131. (if (equal d today)
  3132. (put-text-property s (1- (point)) 'org-today t))
  3133. (and rtn (insert (org-finalize-agenda-entries rtn) "\n"))
  3134. (put-text-property s (1- (point)) 'day d)))))
  3135. (goto-char (point-min))
  3136. (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
  3137. (point-min)))
  3138. (add-text-properties (point-min) (point-max) '(org-agenda-type timeline))
  3139. (org-finalize-agenda)
  3140. (setq buffer-read-only t)))
  3141. (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
  3142. "Return a list of all relevant day numbers from BEG to END buffer positions.
  3143. If NO-RANGES is non-nil, include only the start and end dates of a range,
  3144. not every single day in the range. If FORCE-TODAY is non-nil, make
  3145. sure that TODAY is included in the list. If INACTIVE is non-nil, also
  3146. inactive time stamps (those in square brackets) are included.
  3147. When EMPTY is non-nil, also include days without any entries."
  3148. (let ((re (concat
  3149. (if pre-re pre-re "")
  3150. (if inactive org-ts-regexp-both org-ts-regexp)))
  3151. dates dates1 date day day1 day2 ts1 ts2)
  3152. (if force-today
  3153. (setq dates (list (org-today))))
  3154. (save-excursion
  3155. (goto-char beg)
  3156. (while (re-search-forward re end t)
  3157. (setq day (time-to-days (org-time-string-to-time
  3158. (substring (match-string 1) 0 10))))
  3159. (or (memq day dates) (push day dates)))
  3160. (unless no-ranges
  3161. (goto-char beg)
  3162. (while (re-search-forward org-tr-regexp end t)
  3163. (setq ts1 (substring (match-string 1) 0 10)
  3164. ts2 (substring (match-string 2) 0 10)
  3165. day1 (time-to-days (org-time-string-to-time ts1))
  3166. day2 (time-to-days (org-time-string-to-time ts2)))
  3167. (while (< (setq day1 (1+ day1)) day2)
  3168. (or (memq day1 dates) (push day1 dates)))))
  3169. (setq dates (sort dates '<))
  3170. (when empty
  3171. (while (setq day (pop dates))
  3172. (setq day2 (car dates))
  3173. (push day dates1)
  3174. (when (and day2 empty)
  3175. (if (or (eq empty t)
  3176. (and (numberp empty) (<= (- day2 day) empty)))
  3177. (while (< (setq day (1+ day)) day2)
  3178. (push (list day) dates1))
  3179. (push (cons :omitted (- day2 day)) dates1))))
  3180. (setq dates (nreverse dates1)))
  3181. dates)))
  3182. ;;; Agenda Daily/Weekly
  3183. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3184. "Start day for the agenda view.
  3185. Custom commands can set this variable in the options section.")
  3186. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3187. (defvar org-agenda-current-span nil
  3188. "The current span used in the agenda view.") ; local variable in the agenda buffer
  3189. (defvar org-include-all-loc nil) ; local variable
  3190. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  3191. "List of types searched for when creating the daily/weekly agenda.
  3192. This variable is a list of symbols that controls the types of
  3193. items that appear in the daily/weekly agenda. Allowed symbols in this
  3194. list are are
  3195. :timestamp List items containing a date stamp or date range matching
  3196. the selected date. This includes sexp entries in
  3197. angular brackets.
  3198. :sexp List entries resulting from plain diary-like sexps.
  3199. :deadline List deadline due on that date. When the date is today,
  3200. also list any deadlines past due, or due within
  3201. `org-deadline-warning-days'. `:deadline' must appear before
  3202. `:scheduled' if the setting of
  3203. `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
  3204. any effect.
  3205. :scheduled List all items which are scheduled for the given date.
  3206. The diary for *today* also contains items which were
  3207. scheduled earlier and are not yet marked DONE.
  3208. By default, all four types are turned on.
  3209. Never set this variable globally using `setq', because then it
  3210. will apply to all future agenda commands. Instead, bind it with
  3211. `let' to scope it dynamically into the agenda-constructing
  3212. command. A good way to set it is through options in
  3213. `org-agenda-custom-commands'. For a more flexible (though
  3214. somewhat less efficient) way of determining what is included in
  3215. the daily/weekly agenda, see `org-agenda-skip-function'.")
  3216. ;;;###autoload
  3217. (defun org-agenda-list (&optional include-all start-day span)
  3218. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3219. The view will be for the current day or week, but from the overview buffer
  3220. you will be able to go to other days/weeks.
  3221. With a numeric prefix argument in an interactive call, the agenda will
  3222. span INCLUDE-ALL days. Lisp programs should instead specify SPAN to change
  3223. the number of days. SPAN defaults to `org-agenda-span'.
  3224. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3225. given in `org-agenda-start-on-weekday'."
  3226. (interactive "P")
  3227. (if (and (integerp include-all) (> include-all 0))
  3228. (setq span include-all include-all nil))
  3229. (setq start-day (or start-day org-agenda-start-day))
  3230. (if org-agenda-overriding-arguments
  3231. (setq include-all (car org-agenda-overriding-arguments)
  3232. start-day (nth 1 org-agenda-overriding-arguments)
  3233. span (nth 2 org-agenda-overriding-arguments)))
  3234. (if (stringp start-day)
  3235. ;; Convert to an absolute day number
  3236. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3237. (setq org-agenda-last-arguments (list include-all start-day span))
  3238. (org-compile-prefix-format 'agenda)
  3239. (org-set-sorting-strategy 'agenda)
  3240. (let* ((span (org-agenda-ndays-to-span
  3241. (or span org-agenda-ndays org-agenda-span)))
  3242. (today (org-today))
  3243. (sd (or start-day today))
  3244. (ndays (org-agenda-span-to-ndays span sd))
  3245. (org-agenda-start-on-weekday
  3246. (if (eq ndays 7)
  3247. org-agenda-start-on-weekday))
  3248. (thefiles (org-agenda-files nil 'ifmode))
  3249. (files thefiles)
  3250. (start (if (or (null org-agenda-start-on-weekday)
  3251. (< ndays 7))
  3252. sd
  3253. (let* ((nt (calendar-day-of-week
  3254. (calendar-gregorian-from-absolute sd)))
  3255. (n1 org-agenda-start-on-weekday)
  3256. (d (- nt n1)))
  3257. (- sd (+ (if (< d 0) 7 0) d)))))
  3258. (day-numbers (list start))
  3259. (day-cnt 0)
  3260. (inhibit-redisplay (not debug-on-error))
  3261. s e rtn rtnall file date d start-pos end-pos todayp
  3262. clocktable-start clocktable-end filter)
  3263. (setq org-agenda-redo-command
  3264. (list 'org-agenda-list (list 'quote include-all) start-day (list 'quote span)))
  3265. (dotimes (n (1- ndays))
  3266. (push (1+ (car day-numbers)) day-numbers))
  3267. (setq day-numbers (nreverse day-numbers))
  3268. (setq clocktable-start (car day-numbers)
  3269. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3270. (org-prepare-agenda "Day/Week")
  3271. (org-set-local 'org-starting-day (car day-numbers))
  3272. (org-set-local 'org-include-all-loc include-all)
  3273. (org-set-local 'org-agenda-current-span (org-agenda-ndays-to-span span))
  3274. (unless org-agenda-compact-blocks
  3275. (let* ((d1 (car day-numbers))
  3276. (d2 (org-last day-numbers))
  3277. (w1 (org-days-to-iso-week d1))
  3278. (w2 (org-days-to-iso-week d2)))
  3279. (setq s (point))
  3280. (if org-agenda-overriding-header
  3281. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3282. nil 'face 'org-agenda-structure) "\n")
  3283. (insert (org-agenda-span-name span)
  3284. "-agenda"
  3285. (if (< (- d2 d1) 350)
  3286. (if (= w1 w2)
  3287. (format " (W%02d)" w1)
  3288. (format " (W%02d-W%02d)" w1 w2))
  3289. "")
  3290. ":\n")))
  3291. (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
  3292. 'org-date-line t))
  3293. (org-agenda-mark-header-line s))
  3294. (while (setq d (pop day-numbers))
  3295. (setq date (calendar-gregorian-from-absolute d)
  3296. s (point))
  3297. (if (or (setq todayp (= d today))
  3298. (and (not start-pos) (= d sd)))
  3299. (setq start-pos (point))
  3300. (if (and start-pos (not end-pos))
  3301. (setq end-pos (point))))
  3302. (setq files thefiles
  3303. rtnall nil)
  3304. (while (setq file (pop files))
  3305. (catch 'nextfile
  3306. (org-check-agenda-file file)
  3307. (let ((org-agenda-entry-types org-agenda-entry-types))
  3308. (unless org-agenda-include-deadlines
  3309. (setq org-agenda-entry-types
  3310. (delq :deadline org-agenda-entry-types)))
  3311. (cond
  3312. ((memq org-agenda-show-log '(only clockcheck))
  3313. (setq rtn (org-agenda-get-day-entries
  3314. file date :closed)))
  3315. (org-agenda-show-log
  3316. (setq rtn (apply 'org-agenda-get-day-entries
  3317. file date
  3318. (append '(:closed) org-agenda-entry-types))))
  3319. (t
  3320. (setq rtn (apply 'org-agenda-get-day-entries
  3321. file date
  3322. org-agenda-entry-types)))))
  3323. (setq rtnall (append rtnall rtn))))
  3324. (if org-agenda-include-diary
  3325. (let ((org-agenda-search-headline-for-time t))
  3326. (require 'diary-lib)
  3327. (setq rtn (org-get-entries-from-diary date))
  3328. (setq rtnall (append rtnall rtn))))
  3329. (if (or rtnall org-agenda-show-all-dates)
  3330. (progn
  3331. (setq day-cnt (1+ day-cnt))
  3332. (insert
  3333. (if (stringp org-agenda-format-date)
  3334. (format-time-string org-agenda-format-date
  3335. (org-time-from-absolute date))
  3336. (funcall org-agenda-format-date date))
  3337. "\n")
  3338. (put-text-property s (1- (point)) 'face
  3339. (org-agenda-get-day-face date))
  3340. (put-text-property s (1- (point)) 'org-date-line t)
  3341. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3342. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3343. (when todayp
  3344. (put-text-property s (1- (point)) 'org-today t))
  3345. (if rtnall (insert
  3346. (org-finalize-agenda-entries
  3347. (org-agenda-add-time-grid-maybe
  3348. rtnall ndays todayp))
  3349. "\n"))
  3350. (put-text-property s (1- (point)) 'day d)
  3351. (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
  3352. (when (and org-agenda-clockreport-mode clocktable-start)
  3353. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3354. ;; the above line is to ensure the restricted range!
  3355. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3356. tbl)
  3357. (setq p (org-plist-delete p :block))
  3358. (setq p (plist-put p :tstart clocktable-start))
  3359. (setq p (plist-put p :tend clocktable-end))
  3360. (setq p (plist-put p :scope 'agenda))
  3361. (when (and (eq org-agenda-clockreport-mode 'with-filter)
  3362. (setq filter (or org-agenda-filter-while-redo
  3363. (get 'org-agenda-filter :preset-filter))))
  3364. (setq p (plist-put p :tags (mapconcat (lambda (x)
  3365. (if (string-match "[<>=]" x)
  3366. ""
  3367. x))
  3368. filter ""))))
  3369. (setq tbl (apply 'org-get-clocktable p))
  3370. (insert tbl)))
  3371. (goto-char (point-min))
  3372. (or org-agenda-multi (org-fit-agenda-window))
  3373. (unless (and (pos-visible-in-window-p (point-min))
  3374. (pos-visible-in-window-p (point-max)))
  3375. (goto-char (1- (point-max)))
  3376. (recenter -1)
  3377. (if (not (pos-visible-in-window-p (or start-pos 1)))
  3378. (progn
  3379. (goto-char (or start-pos 1))
  3380. (recenter 1))))
  3381. (goto-char (or start-pos 1))
  3382. (add-text-properties (point-min) (point-max) '(org-agenda-type agenda))
  3383. (if (eq org-agenda-show-log 'clockcheck)
  3384. (org-agenda-show-clocking-issues))
  3385. (org-finalize-agenda)
  3386. (setq buffer-read-only t)
  3387. (message "")))
  3388. (defun org-agenda-ndays-to-span (n)
  3389. "Return a span symbol for a span of N days, or N if none matches."
  3390. (cond ((symbolp n) n)
  3391. ((= n 1) 'day)
  3392. ((= n 7) 'week)
  3393. (t n)))
  3394. (defun org-agenda-span-to-ndays (span start-day)
  3395. "Return ndays from SPAN starting at START-DAY."
  3396. (cond ((numberp span) span)
  3397. ((eq span 'day) 1)
  3398. ((eq span 'week) 7)
  3399. ((eq span 'month)
  3400. (let ((date (calendar-gregorian-from-absolute start-day)))
  3401. (calendar-last-day-of-month (car date) (caddr date))))
  3402. ((eq span 'year)
  3403. (let ((date (calendar-gregorian-from-absolute start-day)))
  3404. (if (calendar-leap-year-p (caddr date)) 366 365)))))
  3405. (defun org-agenda-span-name (span)
  3406. "Return a SPAN name."
  3407. (if (null span)
  3408. ""
  3409. (if (symbolp span)
  3410. (capitalize (symbol-name span))
  3411. (format "%d days" span))))
  3412. ;;; Agenda word search
  3413. (defvar org-agenda-search-history nil)
  3414. (defvar org-todo-only nil)
  3415. (defvar org-search-syntax-table nil
  3416. "Special syntax table for org-mode search.
  3417. In this table, we have single quotes not as word constituents, to
  3418. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  3419. (defun org-search-syntax-table ()
  3420. (unless org-search-syntax-table
  3421. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  3422. (modify-syntax-entry ?' "." org-search-syntax-table)
  3423. (modify-syntax-entry ?` "." org-search-syntax-table))
  3424. org-search-syntax-table)
  3425. (defvar org-agenda-last-search-view-search-was-boolean nil)
  3426. ;;;###autoload
  3427. (defun org-search-view (&optional todo-only string edit-at)
  3428. "Show all entries that contain a phrase or words or regular expressions.
  3429. With optional prefix argument TODO-ONLY, only consider entries that are
  3430. TODO entries. The argument STRING can be used to pass a default search
  3431. string into this function. If EDIT-AT is non-nil, it means that the
  3432. user should get a chance to edit this string, with cursor at position
  3433. EDIT-AT.
  3434. The search string can be viewed either as a phrase that should be found as
  3435. is, or it can be broken into a number of snippets, each of which must match
  3436. in a Boolean way to select an entry. The default depends on the variable
  3437. `org-agenda-search-view-always-boolean'.
  3438. Even if this is turned off (the default) you can always switch to
  3439. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  3440. The default is a direct search of the whole phrase, where each space in
  3441. the search string can expand to an arbitrary amount of whitespace,
  3442. including newlines.
  3443. If using a Boolean search, the search string is split on whitespace and
  3444. each snippet is searched separately, with logical AND to select an entry.
  3445. Words prefixed with a minus must *not* occur in the entry. Words without
  3446. a prefix or prefixed with a plus must occur in the entry. Matching is
  3447. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  3448. match whole words, not parts of a word) if
  3449. `org-agenda-search-view-force-full-words' is set (default is nil).
  3450. Boolean search snippets enclosed by curly braces are interpreted as
  3451. regular expressions that must or (when preceded with \"-\") must not
  3452. match in the entry. Snippets enclosed into double quotes will be taken
  3453. as a whole, to include whitespace.
  3454. - If the search string starts with an asterisk, search only in headlines.
  3455. - If (possibly after the leading star) the search string starts with an
  3456. exclamation mark, this also means to look at TODO entries only, an effect
  3457. that can also be achieved with a prefix argument.
  3458. - If (possibly after star and exclamation mark) the search string starts
  3459. with a colon, this will mean that the (non-regexp) snippets of the
  3460. Boolean search must match as full words.
  3461. This command searches the agenda files, and in addition the files listed
  3462. in `org-agenda-text-search-extra-files'."
  3463. (interactive "P")
  3464. (org-compile-prefix-format 'search)
  3465. (org-set-sorting-strategy 'search)
  3466. (org-prepare-agenda "SEARCH")
  3467. (let* ((props (list 'face nil
  3468. 'done-face 'org-agenda-done
  3469. 'org-not-done-regexp org-not-done-regexp
  3470. 'org-todo-regexp org-todo-regexp
  3471. 'org-complex-heading-regexp org-complex-heading-regexp
  3472. 'mouse-face 'highlight
  3473. 'help-echo (format "mouse-2 or RET jump to location")))
  3474. (full-words org-agenda-search-view-force-full-words)
  3475. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  3476. regexp rtn rtnall files file pos
  3477. marker category tags c neg re boolean
  3478. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  3479. (unless (and (not edit-at)
  3480. (stringp string)
  3481. (string-match "\\S-" string))
  3482. (setq string (read-string
  3483. (if org-agenda-search-view-always-boolean
  3484. "[+-]Word/{Regexp} ...: "
  3485. "Phrase, or [+-]Word/{Regexp} ...: ")
  3486. (cond
  3487. ((integerp edit-at) (cons string edit-at))
  3488. (edit-at string))
  3489. 'org-agenda-search-history)))
  3490. (org-set-local 'org-todo-only todo-only)
  3491. (setq org-agenda-redo-command
  3492. (list 'org-search-view (if todo-only t nil) string
  3493. '(if current-prefix-arg 1 nil)))
  3494. (setq org-agenda-query-string string)
  3495. (if (equal (string-to-char string) ?*)
  3496. (setq hdl-only t
  3497. words (substring string 1))
  3498. (setq words string))
  3499. (when (equal (string-to-char words) ?!)
  3500. (setq todo-only t
  3501. words (substring words 1)))
  3502. (when (equal (string-to-char words) ?:)
  3503. (setq full-words t
  3504. words (substring words 1)))
  3505. (if (or org-agenda-search-view-always-boolean
  3506. (member (string-to-char words) '(?- ?+ ?\{)))
  3507. (setq boolean t))
  3508. (setq words (org-split-string words))
  3509. (let (www w)
  3510. (while (setq w (pop words))
  3511. (while (and (string-match "\\\\\\'" w) words)
  3512. (setq w (concat (substring w 0 -1) " " (pop words))))
  3513. (push w www))
  3514. (setq words (nreverse www) www nil)
  3515. (while (setq w (pop words))
  3516. (when (and (string-match "\\`[-+]?{" w)
  3517. (not (string-match "}\\'" w)))
  3518. (while (and words (not (string-match "}\\'" (car words))))
  3519. (setq w (concat w " " (pop words))))
  3520. (setq w (concat w " " (pop words))))
  3521. (push w www))
  3522. (setq words (nreverse www)))
  3523. (setq org-agenda-last-search-view-search-was-boolean boolean)
  3524. (when boolean
  3525. (let (wds w)
  3526. (while (setq w (pop words))
  3527. (if (or (equal (substring w 0 1) "\"")
  3528. (and (> (length w) 1)
  3529. (member (substring w 0 1) '("+" "-"))
  3530. (equal (substring w 1 2) "\"")))
  3531. (while (and words (not (equal (substring w -1) "\"")))
  3532. (setq w (concat w " " (pop words)))))
  3533. (and (string-match "\\`\\([-+]?\\)\"" w)
  3534. (setq w (replace-match "\\1" nil nil w)))
  3535. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  3536. (push w wds))
  3537. (setq words (nreverse wds))))
  3538. (if boolean
  3539. (mapc (lambda (w)
  3540. (setq c (string-to-char w))
  3541. (if (equal c ?-)
  3542. (setq neg t w (substring w 1))
  3543. (if (equal c ?+)
  3544. (setq neg nil w (substring w 1))
  3545. (setq neg nil)))
  3546. (if (string-match "\\`{.*}\\'" w)
  3547. (setq re (substring w 1 -1))
  3548. (if full-words
  3549. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  3550. (setq re (regexp-quote (downcase w)))))
  3551. (if neg (push re regexps-) (push re regexps+)))
  3552. words)
  3553. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  3554. regexps+))
  3555. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  3556. (if (not regexps+)
  3557. (setq regexp org-outline-regexp-bol)
  3558. (setq regexp (pop regexps+))
  3559. (if hdl-only (setq regexp (concat "^" org-outline-regexp ".*?"
  3560. regexp))))
  3561. (setq files (org-agenda-files nil 'ifmode))
  3562. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  3563. (pop org-agenda-text-search-extra-files)
  3564. (setq files (org-add-archive-files files)))
  3565. (setq files (append files org-agenda-text-search-extra-files)
  3566. rtnall nil)
  3567. (while (setq file (pop files))
  3568. (setq ee nil)
  3569. (catch 'nextfile
  3570. (org-check-agenda-file file)
  3571. (setq buffer (if (file-exists-p file)
  3572. (org-get-agenda-file-buffer file)
  3573. (error "No such file %s" file)))
  3574. (if (not buffer)
  3575. ;; If file does not exist, make sure an error message is sent
  3576. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  3577. file))))
  3578. (with-current-buffer buffer
  3579. (with-syntax-table (org-search-syntax-table)
  3580. (unless (org-mode-p)
  3581. (error "Agenda file %s is not in `org-mode'" file))
  3582. (let ((case-fold-search t))
  3583. (save-excursion
  3584. (save-restriction
  3585. (if org-agenda-restrict
  3586. (narrow-to-region org-agenda-restrict-begin
  3587. org-agenda-restrict-end)
  3588. (widen))
  3589. (goto-char (point-min))
  3590. (unless (or (org-on-heading-p)
  3591. (outline-next-heading))
  3592. (throw 'nextfile t))
  3593. (goto-char (max (point-min) (1- (point))))
  3594. (while (re-search-forward regexp nil t)
  3595. (org-back-to-heading t)
  3596. (skip-chars-forward "* ")
  3597. (setq beg (point-at-bol)
  3598. beg1 (point)
  3599. end (progn (outline-next-heading) (point)))
  3600. (catch :skip
  3601. (goto-char beg)
  3602. (org-agenda-skip)
  3603. (setq str (buffer-substring-no-properties
  3604. (point-at-bol)
  3605. (if hdl-only (point-at-eol) end)))
  3606. (mapc (lambda (wr) (when (string-match wr str)
  3607. (goto-char (1- end))
  3608. (throw :skip t)))
  3609. regexps-)
  3610. (mapc (lambda (wr) (unless (string-match wr str)
  3611. (goto-char (1- end))
  3612. (throw :skip t)))
  3613. (if todo-only
  3614. (cons (concat "^\*+[ \t]+" org-not-done-regexp)
  3615. regexps+)
  3616. regexps+))
  3617. (goto-char beg)
  3618. (setq marker (org-agenda-new-marker (point))
  3619. category (org-get-category)
  3620. tags (org-get-tags-at (point))
  3621. txt (org-format-agenda-item
  3622. ""
  3623. (buffer-substring-no-properties
  3624. beg1 (point-at-eol))
  3625. category tags))
  3626. (org-add-props txt props
  3627. 'org-marker marker 'org-hd-marker marker
  3628. 'org-todo-regexp org-todo-regexp
  3629. 'org-complex-heading-regexp org-complex-heading-regexp
  3630. 'priority 1000 'org-category category
  3631. 'type "search")
  3632. (push txt ee)
  3633. (goto-char (1- end))))))))))
  3634. (setq rtn (nreverse ee))
  3635. (setq rtnall (append rtnall rtn)))
  3636. (if org-agenda-overriding-header
  3637. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3638. nil 'face 'org-agenda-structure) "\n")
  3639. (insert "Search words: ")
  3640. (add-text-properties (point-min) (1- (point))
  3641. (list 'face 'org-agenda-structure))
  3642. (setq pos (point))
  3643. (insert string "\n")
  3644. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  3645. (setq pos (point))
  3646. (unless org-agenda-multi
  3647. (insert "Press `[', `]' to add/sub word, `{', `}' to add/sub regexp, `C-u r' to edit\n")
  3648. (add-text-properties pos (1- (point))
  3649. (list 'face 'org-agenda-structure))))
  3650. (org-agenda-mark-header-line (point-min))
  3651. (when rtnall
  3652. (insert (org-finalize-agenda-entries rtnall) "\n"))
  3653. (goto-char (point-min))
  3654. (or org-agenda-multi (org-fit-agenda-window))
  3655. (add-text-properties (point-min) (point-max) '(org-agenda-type search))
  3656. (org-finalize-agenda)
  3657. (setq buffer-read-only t)))
  3658. ;;; Agenda TODO list
  3659. (defvar org-select-this-todo-keyword nil)
  3660. (defvar org-last-arg nil)
  3661. ;;;###autoload
  3662. (defun org-todo-list (arg)
  3663. "Show all (not done) TODO entries from all agenda file in a single list.
  3664. The prefix arg can be used to select a specific TODO keyword and limit
  3665. the list to these. When using \\[universal-argument], you will be prompted
  3666. for a keyword. A numeric prefix directly selects the Nth keyword in
  3667. `org-todo-keywords-1'."
  3668. (interactive "P")
  3669. (org-compile-prefix-format 'todo)
  3670. (org-set-sorting-strategy 'todo)
  3671. (org-prepare-agenda "TODO")
  3672. (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  3673. (let* ((today (org-today))
  3674. (date (calendar-gregorian-from-absolute today))
  3675. (kwds org-todo-keywords-for-agenda)
  3676. (completion-ignore-case t)
  3677. (org-select-this-todo-keyword
  3678. (if (stringp arg) arg
  3679. (and arg (integerp arg) (> arg 0)
  3680. (nth (1- arg) kwds))))
  3681. rtn rtnall files file pos)
  3682. (when (equal arg '(4))
  3683. (setq org-select-this-todo-keyword
  3684. (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
  3685. (mapcar 'list kwds) nil nil)))
  3686. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  3687. (org-set-local 'org-last-arg arg)
  3688. (setq org-agenda-redo-command
  3689. '(org-todo-list (or current-prefix-arg org-last-arg)))
  3690. (setq files (org-agenda-files nil 'ifmode)
  3691. rtnall nil)
  3692. (while (setq file (pop files))
  3693. (catch 'nextfile
  3694. (org-check-agenda-file file)
  3695. (setq rtn (org-agenda-get-day-entries file date :todo))
  3696. (setq rtnall (append rtnall rtn))))
  3697. (if org-agenda-overriding-header
  3698. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3699. nil 'face 'org-agenda-structure) "\n")
  3700. (insert "Global list of TODO items of type: ")
  3701. (add-text-properties (point-min) (1- (point))
  3702. (list 'face 'org-agenda-structure
  3703. 'short-heading
  3704. (concat "ToDo: "
  3705. (or org-select-this-todo-keyword "ALL"))))
  3706. (org-agenda-mark-header-line (point-min))
  3707. (setq pos (point))
  3708. (insert (or org-select-this-todo-keyword "ALL") "\n")
  3709. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  3710. (setq pos (point))
  3711. (unless org-agenda-multi
  3712. (insert "Available with `N r': (0)ALL")
  3713. (let ((n 0) s)
  3714. (mapc (lambda (x)
  3715. (setq s (format "(%d)%s" (setq n (1+ n)) x))
  3716. (if (> (+ (current-column) (string-width s) 1) (frame-width))
  3717. (insert "\n "))
  3718. (insert " " s))
  3719. kwds))
  3720. (insert "\n"))
  3721. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  3722. (org-agenda-mark-header-line (point-min))
  3723. (when rtnall
  3724. (insert (org-finalize-agenda-entries rtnall) "\n"))
  3725. (goto-char (point-min))
  3726. (or org-agenda-multi (org-fit-agenda-window))
  3727. (add-text-properties (point-min) (point-max) '(org-agenda-type todo))
  3728. (org-finalize-agenda)
  3729. (setq buffer-read-only t)))
  3730. ;;; Agenda tags match
  3731. ;;;###autoload
  3732. (defun org-tags-view (&optional todo-only match)
  3733. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  3734. The prefix arg TODO-ONLY limits the search to TODO entries."
  3735. (interactive "P")
  3736. (org-compile-prefix-format 'tags)
  3737. (org-set-sorting-strategy 'tags)
  3738. (let* ((org-tags-match-list-sublevels
  3739. org-tags-match-list-sublevels)
  3740. (completion-ignore-case t)
  3741. rtn rtnall files file pos matcher
  3742. buffer)
  3743. (when (and (stringp match) (not (string-match "\\S-" match)))
  3744. (setq match nil))
  3745. (setq matcher (org-make-tags-matcher match)
  3746. match (car matcher) matcher (cdr matcher))
  3747. (org-prepare-agenda (concat "TAGS " match))
  3748. (setq org-agenda-query-string match)
  3749. (setq org-agenda-redo-command
  3750. (list 'org-tags-view (list 'quote todo-only)
  3751. (list 'if 'current-prefix-arg nil 'org-agenda-query-string)))
  3752. (setq files (org-agenda-files nil 'ifmode)
  3753. rtnall nil)
  3754. (while (setq file (pop files))
  3755. (catch 'nextfile
  3756. (org-check-agenda-file file)
  3757. (setq buffer (if (file-exists-p file)
  3758. (org-get-agenda-file-buffer file)
  3759. (error "No such file %s" file)))
  3760. (if (not buffer)
  3761. ;; If file does not exist, error message to agenda
  3762. (setq rtn (list
  3763. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  3764. rtnall (append rtnall rtn))
  3765. (with-current-buffer buffer
  3766. (unless (org-mode-p)
  3767. (error "Agenda file %s is not in `org-mode'" file))
  3768. (save-excursion
  3769. (save-restriction
  3770. (if org-agenda-restrict
  3771. (narrow-to-region org-agenda-restrict-begin
  3772. org-agenda-restrict-end)
  3773. (widen))
  3774. (setq rtn (org-scan-tags 'agenda matcher todo-only))
  3775. (setq rtnall (append rtnall rtn))))))))
  3776. (if org-agenda-overriding-header
  3777. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3778. nil 'face 'org-agenda-structure) "\n")
  3779. (insert "Headlines with TAGS match: ")
  3780. (add-text-properties (point-min) (1- (point))
  3781. (list 'face 'org-agenda-structure
  3782. 'short-heading
  3783. (concat "Match: " match)))
  3784. (setq pos (point))
  3785. (insert match "\n")
  3786. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  3787. (setq pos (point))
  3788. (unless org-agenda-multi
  3789. (insert "Press `C-u r' to search again with new search string\n"))
  3790. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  3791. (org-agenda-mark-header-line (point-min))
  3792. (when rtnall
  3793. (insert (org-finalize-agenda-entries rtnall) "\n"))
  3794. (goto-char (point-min))
  3795. (or org-agenda-multi (org-fit-agenda-window))
  3796. (add-text-properties (point-min) (point-max) '(org-agenda-type tags))
  3797. (org-finalize-agenda)
  3798. (setq buffer-read-only t)))
  3799. ;;; Agenda Finding stuck projects
  3800. (defvar org-agenda-skip-regexp nil
  3801. "Regular expression used in skipping subtrees for the agenda.
  3802. This is basically a temporary global variable that can be set and then
  3803. used by user-defined selections using `org-agenda-skip-function'.")
  3804. (defvar org-agenda-overriding-header nil
  3805. "When set during agenda, todo and tags searches it replaces the header.
  3806. This variable should not be set directly, but custom commands can bind it
  3807. in the options section.")
  3808. (defun org-agenda-skip-entry-when-regexp-matches ()
  3809. "Check if the current entry contains match for `org-agenda-skip-regexp'.
  3810. If yes, it returns the end position of this entry, causing agenda commands
  3811. to skip the entry but continuing the search in the subtree. This is a
  3812. function that can be put into `org-agenda-skip-function' for the duration
  3813. of a command."
  3814. (let ((end (save-excursion (org-end-of-subtree t)))
  3815. skip)
  3816. (save-excursion
  3817. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  3818. (and skip end)))
  3819. (defun org-agenda-skip-subtree-when-regexp-matches ()
  3820. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  3821. If yes, it returns the end position of this tree, causing agenda commands
  3822. to skip this subtree. This is a function that can be put into
  3823. `org-agenda-skip-function' for the duration of a command."
  3824. (let ((end (save-excursion (org-end-of-subtree t)))
  3825. skip)
  3826. (save-excursion
  3827. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  3828. (and skip end)))
  3829. (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
  3830. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  3831. If yes, it returns the end position of the current entry (NOT the tree),
  3832. causing agenda commands to skip the entry but continuing the search in
  3833. the subtree. This is a function that can be put into
  3834. `org-agenda-skip-function' for the duration of a command. An important
  3835. use of this function is for the stuck project list."
  3836. (let ((end (save-excursion (org-end-of-subtree t)))
  3837. (entry-end (save-excursion (outline-next-heading) (1- (point))))
  3838. skip)
  3839. (save-excursion
  3840. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  3841. (and skip entry-end)))
  3842. (defun org-agenda-skip-entry-if (&rest conditions)
  3843. "Skip entry if any of CONDITIONS is true.
  3844. See `org-agenda-skip-if' for details."
  3845. (org-agenda-skip-if nil conditions))
  3846. (defun org-agenda-skip-subtree-if (&rest conditions)
  3847. "Skip entry if any of CONDITIONS is true.
  3848. See `org-agenda-skip-if' for details."
  3849. (org-agenda-skip-if t conditions))
  3850. (defun org-agenda-skip-if (subtree conditions)
  3851. "Checks current entity for CONDITIONS.
  3852. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  3853. the entry, i.e. the text before the next heading is checked.
  3854. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  3855. from different tests. Valid conditions are:
  3856. scheduled Check if there is a scheduled cookie
  3857. notscheduled Check if there is no scheduled cookie
  3858. deadline Check if there is a deadline
  3859. notdeadline Check if there is no deadline
  3860. timestamp Check if there is a timestamp (also deadline or scheduled)
  3861. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  3862. regexp Check if regexp matches
  3863. notregexp Check if regexp does not match.
  3864. todo Check if TODO keyword matches
  3865. nottodo Check if TODO keyword does not match
  3866. The regexp is taken from the conditions list, it must come right after
  3867. the `regexp' or `notregexp' element.
  3868. `todo' and `nottodo' accept as an argument a list of todo
  3869. keywords, which may include \"*\" to match any todo keyword.
  3870. (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\"))
  3871. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  3872. Instead of a list a keyword class may be given
  3873. (org-agenda-skip-entry-if 'nottodo 'done)
  3874. would skip entries that haven't been marked with any of \"DONE\"
  3875. keywords. Possible classes are: `todo', `done', `any'.
  3876. If any of these conditions is met, this function returns the end point of
  3877. the entity, causing the search to continue from there. This is a function
  3878. that can be put into `org-agenda-skip-function' for the duration of a command."
  3879. (let (beg end m)
  3880. (org-back-to-heading t)
  3881. (setq beg (point)
  3882. end (if subtree
  3883. (progn (org-end-of-subtree t) (point))
  3884. (progn (outline-next-heading) (1- (point)))))
  3885. (goto-char beg)
  3886. (and
  3887. (or
  3888. (and (memq 'scheduled conditions)
  3889. (re-search-forward org-scheduled-time-regexp end t))
  3890. (and (memq 'notscheduled conditions)
  3891. (not (re-search-forward org-scheduled-time-regexp end t)))
  3892. (and (memq 'deadline conditions)
  3893. (re-search-forward org-deadline-time-regexp end t))
  3894. (and (memq 'notdeadline conditions)
  3895. (not (re-search-forward org-deadline-time-regexp end t)))
  3896. (and (memq 'timestamp conditions)
  3897. (re-search-forward org-ts-regexp end t))
  3898. (and (memq 'nottimestamp conditions)
  3899. (not (re-search-forward org-ts-regexp end t)))
  3900. (and (setq m (memq 'regexp conditions))
  3901. (stringp (nth 1 m))
  3902. (re-search-forward (nth 1 m) end t))
  3903. (and (setq m (memq 'notregexp conditions))
  3904. (stringp (nth 1 m))
  3905. (not (re-search-forward (nth 1 m) end t)))
  3906. (and (or
  3907. (setq m (memq 'todo conditions))
  3908. (setq m (memq 'nottodo conditions)))
  3909. (org-agenda-skip-if-todo m end)))
  3910. end)))
  3911. (defun org-agenda-skip-if-todo (args end)
  3912. "Helper function for `org-agenda-skip-if', do not use it directly.
  3913. ARGS is a list with first element either `todo' or `nottodo'.
  3914. The remainder is either a list of TODO keywords, or a state symbol
  3915. `todo' or `done' or `any'."
  3916. (let ((kw (car args))
  3917. (arg (cadr args))
  3918. todo-wds todo-re)
  3919. (setq todo-wds
  3920. (org-uniquify
  3921. (cond
  3922. ((listp arg) ;; list of keywords
  3923. (if (member "*" arg)
  3924. (mapcar 'substring-no-properties org-todo-keywords-1)
  3925. arg))
  3926. ((symbolp arg) ;; keyword class name
  3927. (cond
  3928. ((eq arg 'todo)
  3929. (org-delete-all org-done-keywords
  3930. (mapcar 'substring-no-properties
  3931. org-todo-keywords-1)))
  3932. ((eq arg 'done) org-done-keywords)
  3933. ((eq arg 'any)
  3934. (mapcar 'substring-no-properties org-todo-keywords-1)))))))
  3935. (setq todo-re
  3936. (concat "^\\*+[ \t]+\\<\\("
  3937. (mapconcat 'identity todo-wds "\\|")
  3938. "\\)\\>"))
  3939. (if (eq kw 'todo)
  3940. (re-search-forward todo-re end t)
  3941. (not (re-search-forward todo-re end t)))))
  3942. ;;;###autoload
  3943. (defun org-agenda-list-stuck-projects (&rest ignore)
  3944. "Create agenda view for projects that are stuck.
  3945. Stuck projects are project that have no next actions. For the definitions
  3946. of what a project is and how to check if it stuck, customize the variable
  3947. `org-stuck-projects'."
  3948. (interactive)
  3949. (let* ((org-agenda-skip-function
  3950. 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
  3951. ;; We could have used org-agenda-skip-if here.
  3952. (org-agenda-overriding-header
  3953. (or org-agenda-overriding-header "List of stuck projects: "))
  3954. (matcher (nth 0 org-stuck-projects))
  3955. (todo (nth 1 org-stuck-projects))
  3956. (todo-wds (if (member "*" todo)
  3957. (progn
  3958. (org-prepare-agenda-buffers (org-agenda-files
  3959. nil 'ifmode))
  3960. (org-delete-all
  3961. org-done-keywords-for-agenda
  3962. (copy-sequence org-todo-keywords-for-agenda)))
  3963. todo))
  3964. (todo-re (concat "^\\*+[ \t]+\\("
  3965. (mapconcat 'identity todo-wds "\\|")
  3966. "\\)\\>"))
  3967. (tags (nth 2 org-stuck-projects))
  3968. (tags-re (if (member "*" tags)
  3969. (org-re (concat org-outline-regexp-bol
  3970. ".*:[[:alnum:]_@#%]+:[ \t]*$"))
  3971. (if tags
  3972. (concat org-outline-regexp-bol
  3973. ".*:\\("
  3974. (mapconcat 'identity tags "\\|")
  3975. (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
  3976. (gen-re (nth 3 org-stuck-projects))
  3977. (re-list
  3978. (delq nil
  3979. (list
  3980. (if todo todo-re)
  3981. (if tags tags-re)
  3982. (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
  3983. gen-re)))))
  3984. (setq org-agenda-skip-regexp
  3985. (if re-list
  3986. (mapconcat 'identity re-list "\\|")
  3987. (error "No information how to identify unstuck projects")))
  3988. (org-tags-view nil matcher)
  3989. (with-current-buffer org-agenda-buffer-name
  3990. (setq org-agenda-redo-command
  3991. '(org-agenda-list-stuck-projects
  3992. (or current-prefix-arg org-last-arg))))))
  3993. ;;; Diary integration
  3994. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  3995. (defvar list-diary-entries-hook)
  3996. (defvar diary-time-regexp)
  3997. (defun org-get-entries-from-diary (date)
  3998. "Get the (Emacs Calendar) diary entries for DATE."
  3999. (require 'diary-lib)
  4000. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4001. (diary-display-hook '(fancy-diary-display))
  4002. (diary-display-function 'fancy-diary-display)
  4003. (pop-up-frames nil)
  4004. (list-diary-entries-hook
  4005. (cons 'org-diary-default-entry list-diary-entries-hook))
  4006. (diary-file-name-prefix-function nil) ; turn this feature off
  4007. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4008. entries
  4009. (org-disable-agenda-to-diary t))
  4010. (save-excursion
  4011. (save-window-excursion
  4012. (funcall (if (fboundp 'diary-list-entries)
  4013. 'diary-list-entries 'list-diary-entries)
  4014. date 1)))
  4015. (if (not (get-buffer diary-fancy-buffer))
  4016. (setq entries nil)
  4017. (with-current-buffer diary-fancy-buffer
  4018. (setq buffer-read-only nil)
  4019. (if (zerop (buffer-size))
  4020. ;; No entries
  4021. (setq entries nil)
  4022. ;; Omit the date and other unnecessary stuff
  4023. (org-agenda-cleanup-fancy-diary)
  4024. ;; Add prefix to each line and extend the text properties
  4025. (if (zerop (buffer-size))
  4026. (setq entries nil)
  4027. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4028. (setq entries
  4029. (with-temp-buffer
  4030. (insert entries) (goto-char (point-min))
  4031. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4032. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4033. (replace-match (concat "; " (match-string 1)))))
  4034. (buffer-string)))))
  4035. (set-buffer-modified-p nil)
  4036. (kill-buffer diary-fancy-buffer)))
  4037. (when entries
  4038. (setq entries (org-split-string entries "\n"))
  4039. (setq entries
  4040. (mapcar
  4041. (lambda (x)
  4042. (setq x (org-format-agenda-item "" x "Diary" nil 'time))
  4043. ;; Extend the text properties to the beginning of the line
  4044. (org-add-props x (text-properties-at (1- (length x)) x)
  4045. 'type "diary" 'date date 'face 'org-agenda-diary))
  4046. entries)))))
  4047. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4048. "Hook run when the fancy diary buffer is cleaned up.")
  4049. (defun org-agenda-cleanup-fancy-diary ()
  4050. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4051. This gets rid of the date, the underline under the date, and
  4052. the dummy entry installed by `org-mode' to ensure non-empty diary for each
  4053. date. It also removes lines that contain only whitespace."
  4054. (goto-char (point-min))
  4055. (if (looking-at ".*?:[ \t]*")
  4056. (progn
  4057. (replace-match "")
  4058. (re-search-forward "\n=+$" nil t)
  4059. (replace-match "")
  4060. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4061. (re-search-forward "\n=+$" nil t)
  4062. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4063. (goto-char (point-min))
  4064. (while (re-search-forward "^ +\n" nil t)
  4065. (replace-match ""))
  4066. (goto-char (point-min))
  4067. (if (re-search-forward "^Org-mode dummy\n?" nil t)
  4068. (replace-match ""))
  4069. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4070. ;; Make sure entries from the diary have the right text properties.
  4071. (eval-after-load "diary-lib"
  4072. '(if (boundp 'diary-modify-entry-list-string-function)
  4073. ;; We can rely on the hook, nothing to do
  4074. nil
  4075. ;; Hook not available, must use advice to make this work
  4076. (defadvice add-to-diary-list (before org-mark-diary-entry activate)
  4077. "Make the position visible."
  4078. (if (and org-disable-agenda-to-diary ;; called from org-agenda
  4079. (stringp string)
  4080. buffer-file-name)
  4081. (setq string (org-modify-diary-entry-string string))))))
  4082. (defun org-modify-diary-entry-string (string)
  4083. "Add text properties to string, allowing org-mode to act on it."
  4084. (org-add-props string nil
  4085. 'mouse-face 'highlight
  4086. 'help-echo (if buffer-file-name
  4087. (format "mouse-2 or RET jump to diary file %s"
  4088. (abbreviate-file-name buffer-file-name))
  4089. "")
  4090. 'org-agenda-diary-link t
  4091. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4092. (defun org-diary-default-entry ()
  4093. "Add a dummy entry to the diary.
  4094. Needed to avoid empty dates which mess up holiday display."
  4095. ;; Catch the error if dealing with the new add-to-diary-alist
  4096. (when org-disable-agenda-to-diary
  4097. (condition-case nil
  4098. (org-add-to-diary-list original-date "Org-mode dummy" "")
  4099. (error
  4100. (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
  4101. (defun org-add-to-diary-list (&rest args)
  4102. (if (fboundp 'diary-add-to-list)
  4103. (apply 'diary-add-to-list args)
  4104. (apply 'add-to-diary-list args)))
  4105. (defvar org-diary-last-run-time nil)
  4106. ;;;###autoload
  4107. (defun org-diary (&rest args)
  4108. "Return diary information from org-files.
  4109. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4110. It accesses org files and extracts information from those files to be
  4111. listed in the diary. The function accepts arguments specifying what
  4112. items should be listed. For a list of arguments allowed here, see the
  4113. variable `org-agenda-entry-types'.
  4114. The call in the diary file should look like this:
  4115. &%%(org-diary) ~/path/to/some/orgfile.org
  4116. Use a separate line for each org file to check. Or, if you omit the file name,
  4117. all files listed in `org-agenda-files' will be checked automatically:
  4118. &%%(org-diary)
  4119. If you don't give any arguments (as in the example above), the default
  4120. arguments (:deadline :scheduled :timestamp :sexp) are used.
  4121. So the example above may also be written as
  4122. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4123. The function expects the lisp variables `entry' and `date' to be provided
  4124. by the caller, because this is how the calendar works. Don't use this
  4125. function from a program - use `org-agenda-get-day-entries' instead."
  4126. (when (> (- (org-float-time)
  4127. org-agenda-last-marker-time)
  4128. 5)
  4129. (org-agenda-reset-markers))
  4130. (org-compile-prefix-format 'agenda)
  4131. (org-set-sorting-strategy 'agenda)
  4132. (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
  4133. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4134. (list entry)
  4135. (org-agenda-files t)))
  4136. (time (org-float-time))
  4137. file rtn results)
  4138. (when (or (not org-diary-last-run-time)
  4139. (> (- time
  4140. org-diary-last-run-time)
  4141. 3))
  4142. (org-prepare-agenda-buffers files))
  4143. (setq org-diary-last-run-time time)
  4144. ;; If this is called during org-agenda, don't return any entries to
  4145. ;; the calendar. Org Agenda will list these entries itself.
  4146. (if org-disable-agenda-to-diary (setq files nil))
  4147. (while (setq file (pop files))
  4148. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4149. (setq results (append results rtn)))
  4150. (if results
  4151. (concat (org-finalize-agenda-entries results) "\n"))))
  4152. ;;; Agenda entry finders
  4153. (defun org-agenda-get-day-entries (file date &rest args)
  4154. "Does the work for `org-diary' and `org-agenda'.
  4155. FILE is the path to a file to be checked for entries. DATE is date like
  4156. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4157. which kind of entries should be extracted. For details about these, see
  4158. the documentation of `org-diary'."
  4159. (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
  4160. (let* ((org-startup-folded nil)
  4161. (org-startup-align-all-tables nil)
  4162. (buffer (if (file-exists-p file)
  4163. (org-get-agenda-file-buffer file)
  4164. (error "No such file %s" file)))
  4165. arg results rtn deadline-results)
  4166. (if (not buffer)
  4167. ;; If file does not exist, make sure an error message ends up in diary
  4168. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4169. (with-current-buffer buffer
  4170. (unless (org-mode-p)
  4171. (error "Agenda file %s is not in `org-mode'" file))
  4172. (let ((case-fold-search nil))
  4173. (save-excursion
  4174. (save-restriction
  4175. (if org-agenda-restrict
  4176. (narrow-to-region org-agenda-restrict-begin
  4177. org-agenda-restrict-end)
  4178. (widen))
  4179. ;; The way we repeatedly append to `results' makes it O(n^2) :-(
  4180. (while (setq arg (pop args))
  4181. (cond
  4182. ((and (eq arg :todo)
  4183. (equal date (calendar-gregorian-from-absolute
  4184. (org-today))))
  4185. (setq rtn (org-agenda-get-todos))
  4186. (setq results (append results rtn)))
  4187. ((eq arg :timestamp)
  4188. (setq rtn (org-agenda-get-blocks))
  4189. (setq results (append results rtn))
  4190. (setq rtn (org-agenda-get-timestamps))
  4191. (setq results (append results rtn)))
  4192. ((eq arg :sexp)
  4193. (setq rtn (org-agenda-get-sexps))
  4194. (setq results (append results rtn)))
  4195. ((eq arg :scheduled)
  4196. (setq rtn (org-agenda-get-scheduled deadline-results))
  4197. (setq results (append results rtn)))
  4198. ((eq arg :closed)
  4199. (setq rtn (org-agenda-get-progress))
  4200. (setq results (append results rtn)))
  4201. ((eq arg :deadline)
  4202. (setq rtn (org-agenda-get-deadlines))
  4203. (setq deadline-results (copy-sequence rtn))
  4204. (setq results (append results rtn))))))))
  4205. results))))
  4206. (defun org-agenda-get-todos ()
  4207. "Return the TODO information for agenda display."
  4208. (let* ((props (list 'face nil
  4209. 'done-face 'org-agenda-done
  4210. 'org-not-done-regexp org-not-done-regexp
  4211. 'org-todo-regexp org-todo-regexp
  4212. 'org-complex-heading-regexp org-complex-heading-regexp
  4213. 'mouse-face 'highlight
  4214. 'help-echo
  4215. (format "mouse-2 or RET jump to org file %s"
  4216. (abbreviate-file-name buffer-file-name))))
  4217. (regexp (concat "^\\*+[ \t]+\\("
  4218. (if org-select-this-todo-keyword
  4219. (if (equal org-select-this-todo-keyword "*")
  4220. org-todo-regexp
  4221. (concat "\\<\\("
  4222. (mapconcat 'identity (org-split-string org-select-this-todo-keyword "|") "\\|")
  4223. "\\)\\>"))
  4224. org-not-done-regexp)
  4225. "[^\n\r]*\\)"))
  4226. marker priority category tags todo-state
  4227. ee txt beg end)
  4228. (goto-char (point-min))
  4229. (while (re-search-forward regexp nil t)
  4230. (catch :skip
  4231. (save-match-data
  4232. (beginning-of-line)
  4233. (org-agenda-skip)
  4234. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  4235. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  4236. (goto-char (1+ beg))
  4237. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  4238. (throw :skip nil)))
  4239. (goto-char (match-beginning 1))
  4240. (setq marker (org-agenda-new-marker (match-beginning 0))
  4241. category (org-get-category)
  4242. txt (match-string 1)
  4243. tags (org-get-tags-at (point))
  4244. txt (org-format-agenda-item "" txt category tags)
  4245. priority (1+ (org-get-priority txt))
  4246. todo-state (org-get-todo-state))
  4247. (org-add-props txt props
  4248. 'org-marker marker 'org-hd-marker marker
  4249. 'priority priority 'org-category category
  4250. 'type "todo" 'todo-state todo-state)
  4251. (push txt ee)
  4252. (if org-agenda-todo-list-sublevels
  4253. (goto-char (match-end 1))
  4254. (org-end-of-subtree 'invisible))))
  4255. (nreverse ee)))
  4256. (defun org-agenda-todo-custom-ignore-p (time n)
  4257. "Check whether timestamp is farther away then n number of days.
  4258. This function is invoked if `org-agenda-todo-ignore-deadlines',
  4259. `org-agenda-todo-ignore-scheduled' or
  4260. `org-agenda-todo-ignore-timestamp' is set to an integer."
  4261. (let ((days (org-days-to-time time)))
  4262. (if (>= n 0)
  4263. (>= days n)
  4264. (<= days n))))
  4265. ;;;###autoload
  4266. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  4267. (&optional end)
  4268. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  4269. (when (or org-agenda-todo-ignore-with-date
  4270. org-agenda-todo-ignore-scheduled
  4271. org-agenda-todo-ignore-deadlines
  4272. org-agenda-todo-ignore-timestamp)
  4273. (setq end (or end (save-excursion (outline-next-heading) (point))))
  4274. (save-excursion
  4275. (or (and org-agenda-todo-ignore-with-date
  4276. (re-search-forward org-ts-regexp end t))
  4277. (and org-agenda-todo-ignore-scheduled
  4278. (re-search-forward org-scheduled-time-regexp end t)
  4279. (cond
  4280. ((eq org-agenda-todo-ignore-scheduled 'future)
  4281. (> (org-days-to-time (match-string 1)) 0))
  4282. ((eq org-agenda-todo-ignore-scheduled 'past)
  4283. (<= (org-days-to-time (match-string 1)) 0))
  4284. ((numberp org-agenda-todo-ignore-scheduled)
  4285. (org-agenda-todo-custom-ignore-p
  4286. (match-string 1) org-agenda-todo-ignore-scheduled))
  4287. (t)))
  4288. (and org-agenda-todo-ignore-deadlines
  4289. (re-search-forward org-deadline-time-regexp end t)
  4290. (cond
  4291. ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
  4292. ((eq org-agenda-todo-ignore-deadlines 'far)
  4293. (not (org-deadline-close (match-string 1))))
  4294. ((eq org-agenda-todo-ignore-deadlines 'future)
  4295. (> (org-days-to-time (match-string 1)) 0))
  4296. ((eq org-agenda-todo-ignore-deadlines 'past)
  4297. (<= (org-days-to-time (match-string 1)) 0))
  4298. ((numberp org-agenda-todo-ignore-deadlines)
  4299. (org-agenda-todo-custom-ignore-p
  4300. (match-string 1) org-agenda-todo-ignore-deadlines))
  4301. (t (org-deadline-close (match-string 1)))))
  4302. (and org-agenda-todo-ignore-timestamp
  4303. (let ((buffer (current-buffer))
  4304. (regexp
  4305. (concat
  4306. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  4307. (start (point)))
  4308. ;; Copy current buffer into a temporary one
  4309. (with-temp-buffer
  4310. (insert-buffer-substring buffer start end)
  4311. (goto-char (point-min))
  4312. ;; Delete SCHEDULED and DEADLINE items
  4313. (while (re-search-forward regexp end t)
  4314. (delete-region (match-beginning 0) (match-end 0)))
  4315. (goto-char (point-min))
  4316. ;; No search for timestamp left
  4317. (when (re-search-forward org-ts-regexp nil t)
  4318. (cond
  4319. ((eq org-agenda-todo-ignore-timestamp 'future)
  4320. (> (org-days-to-time (match-string 1)) 0))
  4321. ((eq org-agenda-todo-ignore-timestamp 'past)
  4322. (<= (org-days-to-time (match-string 1)) 0))
  4323. ((numberp org-agenda-todo-ignore-timestamp)
  4324. (org-agenda-todo-custom-ignore-p
  4325. (match-string 1) org-agenda-todo-ignore-timestamp))
  4326. (t))))))))))
  4327. (defconst org-agenda-no-heading-message
  4328. "No heading for this item in buffer or region.")
  4329. (defun org-agenda-get-timestamps ()
  4330. "Return the date stamp information for agenda display."
  4331. (let* ((props (list 'face nil
  4332. 'org-not-done-regexp org-not-done-regexp
  4333. 'org-todo-regexp org-todo-regexp
  4334. 'org-complex-heading-regexp org-complex-heading-regexp
  4335. 'mouse-face 'highlight
  4336. 'help-echo
  4337. (format "mouse-2 or RET jump to org file %s"
  4338. (abbreviate-file-name buffer-file-name))))
  4339. (d1 (calendar-absolute-from-gregorian date))
  4340. (remove-re
  4341. (concat
  4342. (regexp-quote
  4343. (format-time-string
  4344. "<%Y-%m-%d"
  4345. (encode-time 0 0 0 (nth 1 date) (nth 0 date) (nth 2 date))))
  4346. ".*?>"))
  4347. (regexp
  4348. (concat
  4349. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  4350. (regexp-quote
  4351. (substring
  4352. (format-time-string
  4353. (car org-time-stamp-formats)
  4354. (apply 'encode-time ; DATE bound by calendar
  4355. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  4356. 1 11))
  4357. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[dwmy]>\\)"
  4358. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  4359. marker hdmarker deadlinep scheduledp clockp closedp inactivep
  4360. donep tmp priority category ee txt timestr tags b0 b3 e3 head
  4361. todo-state end-of-match show-all)
  4362. (goto-char (point-min))
  4363. (while (setq end-of-match (re-search-forward regexp nil t))
  4364. (setq b0 (match-beginning 0)
  4365. b3 (match-beginning 3) e3 (match-end 3)
  4366. todo-state (save-match-data (ignore-errors (org-get-todo-state)))
  4367. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  4368. (member todo-state
  4369. org-agenda-repeating-timestamp-show-all)))
  4370. (catch :skip
  4371. (and (org-at-date-range-p) (throw :skip nil))
  4372. (org-agenda-skip)
  4373. (if (and (match-end 1)
  4374. (not (= d1 (org-time-string-to-absolute
  4375. (match-string 1) d1 nil show-all))))
  4376. (throw :skip nil))
  4377. (if (and e3
  4378. (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
  4379. (throw :skip nil))
  4380. (setq tmp (buffer-substring (max (point-min)
  4381. (- b0 org-ds-keyword-length))
  4382. b0)
  4383. timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
  4384. inactivep (= (char-after b0) ?\[)
  4385. deadlinep (string-match org-deadline-regexp tmp)
  4386. scheduledp (string-match org-scheduled-regexp tmp)
  4387. closedp (and org-agenda-include-inactive-timestamps
  4388. (string-match org-closed-string tmp))
  4389. clockp (and org-agenda-include-inactive-timestamps
  4390. (or (string-match org-clock-string tmp)
  4391. (string-match "]-+\\'" tmp)))
  4392. donep (member todo-state org-done-keywords))
  4393. (if (or scheduledp deadlinep closedp clockp
  4394. (and donep org-agenda-skip-timestamp-if-done))
  4395. (throw :skip t))
  4396. (if (string-match ">" timestr)
  4397. ;; substring should only run to end of time stamp
  4398. (setq timestr (substring timestr 0 (match-end 0))))
  4399. (setq marker (org-agenda-new-marker b0)
  4400. category (org-get-category b0))
  4401. (save-excursion
  4402. (if (not (re-search-backward org-outline-regexp-bol nil t))
  4403. (setq txt org-agenda-no-heading-message)
  4404. (goto-char (match-beginning 0))
  4405. (setq hdmarker (org-agenda-new-marker)
  4406. tags (org-get-tags-at))
  4407. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  4408. (setq head (or (match-string 1) ""))
  4409. (setq txt (org-format-agenda-item
  4410. (if inactivep org-agenda-inactive-leader nil)
  4411. head category tags timestr
  4412. remove-re)))
  4413. (setq priority (org-get-priority txt))
  4414. (org-add-props txt props
  4415. 'org-marker marker 'org-hd-marker hdmarker)
  4416. (org-add-props txt nil 'priority priority
  4417. 'org-category category 'date date
  4418. 'todo-state todo-state
  4419. 'type "timestamp")
  4420. (push txt ee))
  4421. (if org-agenda-skip-additional-timestamps-same-entry
  4422. (outline-next-heading)
  4423. (goto-char end-of-match))))
  4424. (nreverse ee)))
  4425. (defun org-agenda-get-sexps ()
  4426. "Return the sexp information for agenda display."
  4427. (require 'diary-lib)
  4428. (let* ((props (list 'mouse-face 'highlight
  4429. 'help-echo
  4430. (format "mouse-2 or RET jump to org file %s"
  4431. (abbreviate-file-name buffer-file-name))))
  4432. (regexp "^&?%%(")
  4433. marker category ee txt tags entry result beg b sexp sexp-entry
  4434. todo-state)
  4435. (goto-char (point-min))
  4436. (while (re-search-forward regexp nil t)
  4437. (catch :skip
  4438. (org-agenda-skip)
  4439. (setq beg (match-beginning 0))
  4440. (goto-char (1- (match-end 0)))
  4441. (setq b (point))
  4442. (forward-sexp 1)
  4443. (setq sexp (buffer-substring b (point)))
  4444. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  4445. (org-trim (match-string 1))
  4446. ""))
  4447. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  4448. (when result
  4449. (setq marker (org-agenda-new-marker beg)
  4450. category (org-get-category beg)
  4451. todo-state (org-get-todo-state))
  4452. (dolist (r (if (stringp result)
  4453. (list result)
  4454. result)) ;; we expect a list here
  4455. (if (string-match "\\S-" r)
  4456. (setq txt r)
  4457. (setq txt "SEXP entry returned empty string"))
  4458. (setq txt (org-format-agenda-item
  4459. "" txt category tags 'time))
  4460. (org-add-props txt props 'org-marker marker)
  4461. (org-add-props txt nil
  4462. 'org-category category 'date date 'todo-state todo-state
  4463. 'type "sexp")
  4464. (push txt ee)))))
  4465. (nreverse ee)))
  4466. ;; Calendar sanity: define some functions that are independent of
  4467. ;; `calendar-date-style'.
  4468. ;; Normally I would like to use ISO format when calling the diary functions,
  4469. ;; but to make sure we still have Emacs 22 compatibility we bind
  4470. ;; also `european-calendar-style' and use european format
  4471. (defun org-anniversary (year month day &optional mark)
  4472. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  4473. (org-no-warnings
  4474. (let ((calendar-date-style 'european) (european-calendar-style t))
  4475. (diary-anniversary day month year mark))))
  4476. (defun org-cyclic (N year month day &optional mark)
  4477. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  4478. (org-no-warnings
  4479. (let ((calendar-date-style 'european) (european-calendar-style t))
  4480. (diary-cyclic N day month year mark))))
  4481. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  4482. "Like `diary-block', but with fixed (ISO) order of arguments."
  4483. (org-no-warnings
  4484. (let ((calendar-date-style 'european) (european-calendar-style t))
  4485. (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
  4486. (defun org-date (year month day &optional mark)
  4487. "Like `diary-date', but with fixed (ISO) order of arguments."
  4488. (org-no-warnings
  4489. (let ((calendar-date-style 'european) (european-calendar-style t))
  4490. (diary-date day month year mark))))
  4491. (defalias 'org-float 'diary-float)
  4492. ;; Define the` org-class' function
  4493. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  4494. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  4495. DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
  4496. is any number of ISO weeks in the block period for which the item should
  4497. be skipped."
  4498. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  4499. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  4500. (d (calendar-absolute-from-gregorian date)))
  4501. (and
  4502. (<= date1 d)
  4503. (<= d date2)
  4504. (= (calendar-day-of-week date) dayname)
  4505. (or (not skip-weeks)
  4506. (progn
  4507. (require 'cal-iso)
  4508. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  4509. entry)))
  4510. (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
  4511. "Like `org-class', but honor `calendar-date-style'.
  4512. The order of the first 2 times 3 arguments depends on the variable
  4513. `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
  4514. So for American calendars, give this as MONTH DAY YEAR, for European as
  4515. DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
  4516. DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
  4517. is any number of ISO weeks in the block period for which the item should
  4518. be skipped.
  4519. This function is here only for backward compatibility and it is deprecated,
  4520. please use `org-class' instead."
  4521. (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
  4522. (date2 (org-order-calendar-date-args m2 d2 y2)))
  4523. (org-class
  4524. (nth 2 date1) (car date1) (nth 1 date1)
  4525. (nth 2 date2) (car date2) (nth 1 date2)
  4526. dayname skip-weeks)))
  4527. (defalias 'org-get-closed 'org-agenda-get-progress)
  4528. (defun org-agenda-get-progress ()
  4529. "Return the logged TODO entries for agenda display."
  4530. (let* ((props (list 'mouse-face 'highlight
  4531. 'org-not-done-regexp org-not-done-regexp
  4532. 'org-todo-regexp org-todo-regexp
  4533. 'org-complex-heading-regexp org-complex-heading-regexp
  4534. 'help-echo
  4535. (format "mouse-2 or RET jump to org file %s"
  4536. (abbreviate-file-name buffer-file-name))))
  4537. (items (if (consp org-agenda-show-log)
  4538. org-agenda-show-log
  4539. (if (eq org-agenda-show-log 'clockcheck)
  4540. '(clock)
  4541. org-agenda-log-mode-items)))
  4542. (parts
  4543. (delq nil
  4544. (list
  4545. (if (memq 'closed items) (concat "\\<" org-closed-string))
  4546. (if (memq 'clock items) (concat "\\<" org-clock-string))
  4547. (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
  4548. (parts-re (if parts (mapconcat 'identity parts "\\|")
  4549. (error "`org-agenda-log-mode-items' is empty")))
  4550. (regexp (concat
  4551. "\\(" parts-re "\\)"
  4552. " *\\["
  4553. (regexp-quote
  4554. (substring
  4555. (format-time-string
  4556. (car org-time-stamp-formats)
  4557. (apply 'encode-time ; DATE bound by calendar
  4558. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  4559. 1 11))))
  4560. (org-agenda-search-headline-for-time nil)
  4561. marker hdmarker priority category tags closedp statep clockp state
  4562. ee txt extra timestr rest clocked)
  4563. (goto-char (point-min))
  4564. (while (re-search-forward regexp nil t)
  4565. (catch :skip
  4566. (org-agenda-skip)
  4567. (setq marker (org-agenda-new-marker (match-beginning 0))
  4568. closedp (equal (match-string 1) org-closed-string)
  4569. statep (equal (string-to-char (match-string 1)) ?-)
  4570. clockp (not (or closedp statep))
  4571. state (and statep (match-string 2))
  4572. category (org-get-category (match-beginning 0))
  4573. timestr (buffer-substring (match-beginning 0) (point-at-eol))
  4574. )
  4575. (when (string-match "\\]" timestr)
  4576. ;; substring should only run to end of time stamp
  4577. (setq rest (substring timestr (match-end 0))
  4578. timestr (substring timestr 0 (match-end 0)))
  4579. (if (and (not closedp) (not statep)
  4580. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)" rest))
  4581. (progn (setq timestr (concat (substring timestr 0 -1)
  4582. "-" (match-string 1 rest) "]"))
  4583. (setq clocked (match-string 2 rest)))
  4584. (setq clocked "-")))
  4585. (save-excursion
  4586. (setq extra
  4587. (cond
  4588. ((not org-agenda-log-mode-add-notes) nil)
  4589. (statep
  4590. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  4591. (match-string 1)))
  4592. (clockp
  4593. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  4594. (match-string 1)))))
  4595. (if (not (re-search-backward org-outline-regexp-bol nil t))
  4596. (setq txt org-agenda-no-heading-message)
  4597. (goto-char (match-beginning 0))
  4598. (setq hdmarker (org-agenda-new-marker)
  4599. tags (org-get-tags-at))
  4600. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  4601. (setq txt (match-string 1))
  4602. (when extra
  4603. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  4604. (setq txt (concat (substring txt 0 (match-beginning 1))
  4605. " - " extra " " (match-string 2 txt)))
  4606. (setq txt (concat txt " - " extra))))
  4607. (setq txt (org-format-agenda-item
  4608. (cond
  4609. (closedp "Closed: ")
  4610. (statep (concat "State: (" state ")"))
  4611. (t (concat "Clocked: (" clocked ")")))
  4612. txt category tags timestr)))
  4613. (setq priority 100000)
  4614. (org-add-props txt props
  4615. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  4616. 'priority priority 'org-category category
  4617. 'type "closed" 'date date
  4618. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  4619. (push txt ee))
  4620. (goto-char (point-at-eol))))
  4621. (nreverse ee)))
  4622. (defun org-agenda-show-clocking-issues ()
  4623. "Add overlays, showing issues with clocking.
  4624. See also the user option `org-agenda-clock-consistency-checks'."
  4625. (interactive)
  4626. (let* ((pl org-agenda-clock-consistency-checks)
  4627. (re (concat "^[ \t]*"
  4628. org-clock-string
  4629. "[ \t]+"
  4630. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  4631. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  4632. (tlstart 0.)
  4633. (tlend 0.)
  4634. (maxtime (org-hh:mm-string-to-minutes
  4635. (or (plist-get pl :max-duration) "24:00")))
  4636. (mintime (org-hh:mm-string-to-minutes
  4637. (or (plist-get pl :min-duration) 0)))
  4638. (maxgap (org-hh:mm-string-to-minutes
  4639. ;; default 30:00 means never complain
  4640. (or (plist-get pl :max-gap) "30:00")))
  4641. (gapok (mapcar 'org-hh:mm-string-to-minutes
  4642. (plist-get pl :gap-ok-around)))
  4643. (def-face (or (plist-get pl :default-face)
  4644. '((:background "DarkRed") (:foreground "white"))))
  4645. issue face m te ts dt ov)
  4646. (goto-char (point-min))
  4647. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  4648. (setq issue nil face def-face)
  4649. (catch 'next
  4650. (setq m (org-get-at-bol 'org-marker)
  4651. te nil ts nil)
  4652. (unless (and m (markerp m))
  4653. (setq issue "No valid clock line") (throw 'next t))
  4654. (org-with-point-at m
  4655. (save-excursion
  4656. (goto-char (point-at-bol))
  4657. (unless (looking-at re)
  4658. (error "No valid Clock line")
  4659. (throw 'next t))
  4660. (unless (match-end 3)
  4661. (setq issue "No end time"
  4662. face (or (plist-get pl :no-end-time-face) face))
  4663. (throw 'next t))
  4664. (setq ts (match-string 1)
  4665. te (match-string 3)
  4666. ts (org-float-time
  4667. (apply 'encode-time (org-parse-time-string ts)))
  4668. te (org-float-time
  4669. (apply 'encode-time (org-parse-time-string te)))
  4670. dt (- te ts))))
  4671. (cond
  4672. ((> dt (* 60 maxtime))
  4673. ;; a very long clocking chunk
  4674. (setq issue (format "Clocking interval is very long: %s"
  4675. (org-minutes-to-hh:mm-string
  4676. (floor (/ (float dt) 60.))))
  4677. face (or (plist-get pl :long-face) face)))
  4678. ((< dt (* 60 mintime))
  4679. ;; a very short clocking chunk
  4680. (setq issue (format "Clocking interval is very short: %s"
  4681. (org-minutes-to-hh:mm-string
  4682. (floor (/ (float dt) 60.))))
  4683. face (or (plist-get pl :short-face) face)))
  4684. ((and (> tlend 0) (< ts tlend))
  4685. ;; Two clock entries are overlapping
  4686. (setq issue (format "Clocking overlap: %d minutes"
  4687. (/ (- tlend ts) 60))
  4688. face (or (plist-get pl :overlap-face) face)))
  4689. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  4690. ;; There is a gap, lets see if we need to report it
  4691. (unless (org-agenda-check-clock-gap tlend ts gapok)
  4692. (setq issue (format "Clocking gap: %d minutes"
  4693. (/ (- ts tlend) 60))
  4694. face (or (plist-get pl :gap-face) face))))
  4695. (t nil)))
  4696. (setq tlend (or te tlend) tlstart (or ts tlstart))
  4697. (when issue
  4698. ;; OK, there was some issue, add an overlay to show the issue
  4699. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  4700. (overlay-put ov 'before-string
  4701. (concat
  4702. (org-add-props
  4703. (format "%-43s" (concat " " issue))
  4704. nil
  4705. 'face face)
  4706. "\n"))
  4707. (overlay-put ov 'evaporate t)))))
  4708. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  4709. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  4710. (catch 'exit
  4711. (unless ok-list
  4712. ;; there are no OK times for gaps...
  4713. (throw 'exit nil))
  4714. (if (> (- (/ t2 36000) (/ t1 36000)) 24)
  4715. ;; This is more than 24 hours, so it is OK.
  4716. ;; because we have at least one OK time, that must be in the
  4717. ;; 24 hour interval.
  4718. (throw 'exit t))
  4719. ;; We have a shorter gap.
  4720. ;; Now we have to get the minute of the day when these times are
  4721. (let* ((t1dec (decode-time (seconds-to-time t1)))
  4722. (t2dec (decode-time (seconds-to-time t2)))
  4723. ;; compute the minute on the day
  4724. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  4725. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  4726. (when (< min2 min1)
  4727. ;; if min2 is smaller than min1, this means it is on the next day.
  4728. ;; Wrap it to after midnight.
  4729. (setq min2 (+ min2 1440)))
  4730. ;; Now check if any of the OK times is in the gap
  4731. (mapc (lambda (x)
  4732. ;; Wrap the time to after midnight if necessary
  4733. (if (< x min1) (setq x (+ x 1440)))
  4734. ;; Check if in interval
  4735. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  4736. ok-list)
  4737. ;; Nope, this gap is not OK
  4738. nil)))
  4739. (defun org-agenda-get-deadlines ()
  4740. "Return the deadline information for agenda display."
  4741. (let* ((props (list 'mouse-face 'highlight
  4742. 'org-not-done-regexp org-not-done-regexp
  4743. 'org-todo-regexp org-todo-regexp
  4744. 'org-complex-heading-regexp org-complex-heading-regexp
  4745. 'help-echo
  4746. (format "mouse-2 or RET jump to org file %s"
  4747. (abbreviate-file-name buffer-file-name))))
  4748. (regexp org-deadline-time-regexp)
  4749. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  4750. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  4751. d2 diff dfrac wdays pos pos1 category tags
  4752. suppress-prewarning
  4753. ee txt head face s todo-state show-all upcomingp donep timestr)
  4754. (goto-char (point-min))
  4755. (while (re-search-forward regexp nil t)
  4756. (setq suppress-prewarning nil)
  4757. (catch :skip
  4758. (org-agenda-skip)
  4759. (when (and org-agenda-skip-deadline-prewarning-if-scheduled
  4760. (save-match-data
  4761. (string-match org-scheduled-time-regexp
  4762. (buffer-substring (point-at-bol)
  4763. (point-at-eol)))))
  4764. (setq suppress-prewarning
  4765. (if (integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  4766. org-agenda-skip-deadline-prewarning-if-scheduled
  4767. 0)))
  4768. (setq s (match-string 1)
  4769. txt nil
  4770. pos (1- (match-beginning 1))
  4771. todo-state (save-match-data (org-get-todo-state))
  4772. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  4773. (member todo-state
  4774. org-agenda-repeating-timestamp-show-all))
  4775. d2 (org-time-string-to-absolute
  4776. (match-string 1) d1 'past show-all)
  4777. diff (- d2 d1)
  4778. wdays (if suppress-prewarning
  4779. (let ((org-deadline-warning-days suppress-prewarning))
  4780. (org-get-wdays s))
  4781. (org-get-wdays s))
  4782. dfrac (- 1 (/ (* 1.0 diff) (max wdays 1)))
  4783. upcomingp (and todayp (> diff 0)))
  4784. ;; When to show a deadline in the calendar:
  4785. ;; If the expiration is within wdays warning time.
  4786. ;; Past-due deadlines are only shown on the current date
  4787. (if (and (or (and (<= diff wdays)
  4788. (and todayp (not org-agenda-only-exact-dates)))
  4789. (= diff 0)))
  4790. (save-excursion
  4791. ;; (setq todo-state (org-get-todo-state))
  4792. (setq donep (member todo-state org-done-keywords))
  4793. (if (and donep
  4794. (or org-agenda-skip-deadline-if-done
  4795. (not (= diff 0))))
  4796. (setq txt nil)
  4797. (setq category (org-get-category))
  4798. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  4799. (setq txt org-agenda-no-heading-message)
  4800. (goto-char (match-end 0))
  4801. (setq pos1 (match-beginning 0))
  4802. (setq tags (org-get-tags-at pos1))
  4803. (setq head (buffer-substring-no-properties
  4804. (point)
  4805. (progn (skip-chars-forward "^\r\n")
  4806. (point))))
  4807. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  4808. (setq timestr
  4809. (concat (substring s (match-beginning 1)) " "))
  4810. (setq timestr 'time))
  4811. (setq txt (org-format-agenda-item
  4812. (if (= diff 0)
  4813. (car org-agenda-deadline-leaders)
  4814. (if (functionp
  4815. (nth 1 org-agenda-deadline-leaders))
  4816. (funcall
  4817. (nth 1 org-agenda-deadline-leaders)
  4818. diff date)
  4819. (format (nth 1 org-agenda-deadline-leaders)
  4820. diff)))
  4821. head category tags
  4822. (if (not (= diff 0)) nil timestr)))))
  4823. (when txt
  4824. (setq face (org-agenda-deadline-face dfrac))
  4825. (org-add-props txt props
  4826. 'org-marker (org-agenda-new-marker pos)
  4827. 'org-hd-marker (org-agenda-new-marker pos1)
  4828. 'priority (+ (- diff)
  4829. (org-get-priority txt))
  4830. 'org-category category
  4831. 'todo-state todo-state
  4832. 'type (if upcomingp "upcoming-deadline" "deadline")
  4833. 'date (if upcomingp date d2)
  4834. 'face (if donep 'org-agenda-done face)
  4835. 'undone-face face 'done-face 'org-agenda-done)
  4836. (push txt ee))))))
  4837. (nreverse ee)))
  4838. (defun org-agenda-deadline-face (fraction)
  4839. "Return the face to displaying a deadline item.
  4840. FRACTION is what fraction of the head-warning time has passed."
  4841. (let ((faces org-agenda-deadline-faces) f)
  4842. (catch 'exit
  4843. (while (setq f (pop faces))
  4844. (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
  4845. (defun org-agenda-get-scheduled (&optional deadline-results)
  4846. "Return the scheduled information for agenda display."
  4847. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  4848. 'org-todo-regexp org-todo-regexp
  4849. 'org-complex-heading-regexp org-complex-heading-regexp
  4850. 'done-face 'org-agenda-done
  4851. 'mouse-face 'highlight
  4852. 'help-echo
  4853. (format "mouse-2 or RET jump to org file %s"
  4854. (abbreviate-file-name buffer-file-name))))
  4855. (regexp org-scheduled-time-regexp)
  4856. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  4857. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  4858. mm
  4859. (deadline-position-alist
  4860. (mapcar (lambda (a) (and (setq mm (get-text-property
  4861. 0 'org-hd-marker a))
  4862. (cons (marker-position mm) a)))
  4863. deadline-results))
  4864. d2 diff pos pos1 category tags donep
  4865. ee txt head pastschedp todo-state face timestr s habitp show-all)
  4866. (goto-char (point-min))
  4867. (while (re-search-forward regexp nil t)
  4868. (catch :skip
  4869. (org-agenda-skip)
  4870. (setq s (match-string 1)
  4871. txt nil
  4872. pos (1- (match-beginning 1))
  4873. todo-state (save-match-data (org-get-todo-state))
  4874. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  4875. (member todo-state
  4876. org-agenda-repeating-timestamp-show-all))
  4877. d2 (org-time-string-to-absolute
  4878. (match-string 1) d1 'past show-all)
  4879. diff (- d2 d1))
  4880. (setq pastschedp (and todayp (< diff 0)))
  4881. ;; When to show a scheduled item in the calendar:
  4882. ;; If it is on or past the date.
  4883. (when (or (and (< diff 0)
  4884. (< (abs diff) org-scheduled-past-days)
  4885. (and todayp (not org-agenda-only-exact-dates)))
  4886. (= diff 0))
  4887. (save-excursion
  4888. (setq donep (member todo-state org-done-keywords))
  4889. (if (and donep
  4890. (or org-agenda-skip-scheduled-if-done
  4891. (not (= diff 0))
  4892. (and (functionp 'org-is-habit-p)
  4893. (org-is-habit-p))))
  4894. (setq txt nil)
  4895. (setq habitp (and (functionp 'org-is-habit-p)
  4896. (org-is-habit-p)))
  4897. (setq category (org-get-category))
  4898. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  4899. (setq txt org-agenda-no-heading-message)
  4900. (goto-char (match-end 0))
  4901. (setq pos1 (match-beginning 0))
  4902. (if habitp
  4903. (if (or (not org-habit-show-habits)
  4904. (and (not todayp)
  4905. org-habit-show-habits-only-for-today))
  4906. (throw :skip nil))
  4907. (if (and
  4908. (or (eq t org-agenda-skip-scheduled-if-deadline-is-shown)
  4909. (and org-agenda-skip-scheduled-if-deadline-is-shown
  4910. pastschedp))
  4911. (setq mm (assoc pos1 deadline-position-alist)))
  4912. (throw :skip nil)))
  4913. (setq tags (org-get-tags-at))
  4914. (setq head (buffer-substring-no-properties
  4915. (point)
  4916. (progn (skip-chars-forward "^\r\n") (point))))
  4917. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  4918. (setq timestr
  4919. (concat (substring s (match-beginning 1)) " "))
  4920. (setq timestr 'time))
  4921. (setq txt (org-format-agenda-item
  4922. (if (= diff 0)
  4923. (car org-agenda-scheduled-leaders)
  4924. (format (nth 1 org-agenda-scheduled-leaders)
  4925. (- 1 diff)))
  4926. head category tags
  4927. (if (not (= diff 0)) nil timestr)
  4928. nil habitp))))
  4929. (when txt
  4930. (setq face
  4931. (cond
  4932. ((and (not habitp) pastschedp)
  4933. 'org-scheduled-previously)
  4934. (todayp 'org-scheduled-today)
  4935. (t 'org-scheduled))
  4936. habitp (and habitp (org-habit-parse-todo)))
  4937. (org-add-props txt props
  4938. 'undone-face face
  4939. 'face (if donep 'org-agenda-done face)
  4940. 'org-marker (org-agenda-new-marker pos)
  4941. 'org-hd-marker (org-agenda-new-marker pos1)
  4942. 'type (if pastschedp "past-scheduled" "scheduled")
  4943. 'date (if pastschedp d2 date)
  4944. 'priority (if habitp
  4945. (org-habit-get-priority habitp)
  4946. (+ 94 (- 5 diff) (org-get-priority txt)))
  4947. 'org-category category
  4948. 'org-habit-p habitp
  4949. 'todo-state todo-state)
  4950. (push txt ee))))))
  4951. (nreverse ee)))
  4952. (defun org-agenda-get-blocks ()
  4953. "Return the date-range information for agenda display."
  4954. (let* ((props (list 'face nil
  4955. 'org-not-done-regexp org-not-done-regexp
  4956. 'org-todo-regexp org-todo-regexp
  4957. 'org-complex-heading-regexp org-complex-heading-regexp
  4958. 'mouse-face 'highlight
  4959. 'help-echo
  4960. (format "mouse-2 or RET jump to org file %s"
  4961. (abbreviate-file-name buffer-file-name))))
  4962. (regexp org-tr-regexp)
  4963. (d0 (calendar-absolute-from-gregorian date))
  4964. marker hdmarker ee txt d1 d2 s1 s2 category todo-state tags pos
  4965. head donep)
  4966. (goto-char (point-min))
  4967. (while (re-search-forward regexp nil t)
  4968. (catch :skip
  4969. (org-agenda-skip)
  4970. (setq pos (point))
  4971. (let ((start-time (match-string 1))
  4972. (end-time (match-string 2)))
  4973. (setq s1 (match-string 1)
  4974. s2 (match-string 2)
  4975. d1 (time-to-days (org-time-string-to-time s1))
  4976. d2 (time-to-days (org-time-string-to-time s2)))
  4977. (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  4978. ;; Only allow days between the limits, because the normal
  4979. ;; date stamps will catch the limits.
  4980. (save-excursion
  4981. (setq todo-state (org-get-todo-state))
  4982. (setq donep (member todo-state org-done-keywords))
  4983. (if (and donep org-agenda-skip-timestamp-if-done)
  4984. (throw :skip t))
  4985. (setq marker (org-agenda-new-marker (point)))
  4986. (setq category (org-get-category))
  4987. (if (not (re-search-backward org-outline-regexp-bol nil t))
  4988. (setq txt org-agenda-no-heading-message)
  4989. (goto-char (match-beginning 0))
  4990. (setq hdmarker (org-agenda-new-marker (point)))
  4991. (setq tags (org-get-tags-at))
  4992. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  4993. (setq head (match-string 1))
  4994. (let ((remove-re
  4995. (if org-agenda-remove-timeranges-from-blocks
  4996. (concat
  4997. "<" (regexp-quote s1) ".*?>"
  4998. "--"
  4999. "<" (regexp-quote s2) ".*?>")
  5000. nil)))
  5001. (setq txt (org-format-agenda-item
  5002. (format
  5003. (nth (if (= d1 d2) 0 1)
  5004. org-agenda-timerange-leaders)
  5005. (1+ (- d0 d1)) (1+ (- d2 d1)))
  5006. head category tags
  5007. (cond ((= d1 d0)
  5008. (concat "<" start-time ">"))
  5009. ((= d2 d0)
  5010. (concat "<" end-time ">"))
  5011. (t nil))
  5012. remove-re))))
  5013. (org-add-props txt props
  5014. 'org-marker marker 'org-hd-marker hdmarker
  5015. 'type "block" 'date date
  5016. 'todo-state todo-state
  5017. 'priority (org-get-priority txt) 'org-category category)
  5018. (push txt ee))))
  5019. (goto-char pos)))
  5020. ;; Sort the entries by expiration date.
  5021. (nreverse ee)))
  5022. ;;; Agenda presentation and sorting
  5023. (defvar org-prefix-has-time nil
  5024. "A flag, set by `org-compile-prefix-format'.
  5025. The flag is set if the currently compiled format contains a `%t'.")
  5026. (defvar org-prefix-has-tag nil
  5027. "A flag, set by `org-compile-prefix-format'.
  5028. The flag is set if the currently compiled format contains a `%T'.")
  5029. (defvar org-prefix-has-effort nil
  5030. "A flag, set by `org-compile-prefix-format'.
  5031. The flag is set if the currently compiled format contains a `%e'.")
  5032. (defvar org-prefix-category-length nil
  5033. "Used by `org-compile-prefix-format' to remember the category field width.")
  5034. (defvar org-prefix-category-max-length nil
  5035. "Used by `org-compile-prefix-format' to remember the category field width.")
  5036. (defun org-agenda-get-category-icon (category)
  5037. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  5038. (dolist (entry org-agenda-category-icon-alist)
  5039. (when (org-string-match-p (car entry) category)
  5040. (if (listp (cadr entry))
  5041. (return (cadr entry))
  5042. (return (apply 'create-image (cdr entry)))))))
  5043. (defun org-format-agenda-item (extra txt &optional category tags dotime
  5044. remove-re habitp)
  5045. "Format TXT to be inserted into the agenda buffer.
  5046. In particular, it adds the prefix and corresponding text properties. EXTRA
  5047. must be a string and replaces the `%s' specifier in the prefix format.
  5048. CATEGORY (string, symbol or nil) may be used to overrule the default
  5049. category taken from local variable or file name. It will replace the `%c'
  5050. specifier in the format. DOTIME, when non-nil, indicates that a
  5051. time-of-day should be extracted from TXT for sorting of this entry, and for
  5052. the `%t' specifier in the format. When DOTIME is a string, this string is
  5053. searched for a time before TXT is. TAGS can be the tags of the headline.
  5054. Any match of REMOVE-RE will be removed from TXT."
  5055. (save-match-data
  5056. ;; Diary entries sometimes have extra whitespace at the beginning
  5057. (if (string-match "^ +" txt) (setq txt (replace-match "" nil nil txt)))
  5058. ;; Fix the tags part in txt
  5059. (setq txt (org-agenda-fix-displayed-tags
  5060. txt tags
  5061. org-agenda-show-inherited-tags
  5062. org-agenda-hide-tags-regexp))
  5063. (let* ((category (or category
  5064. (if (stringp org-category)
  5065. org-category
  5066. (and org-category (symbol-name org-category)))
  5067. (if buffer-file-name
  5068. (file-name-sans-extension
  5069. (file-name-nondirectory buffer-file-name))
  5070. "")))
  5071. (category-icon (org-agenda-get-category-icon category))
  5072. (category-icon (if category-icon
  5073. (propertize " " 'display category-icon)
  5074. ""))
  5075. ;; time, tag, effort are needed for the eval of the prefix format
  5076. (tag (if tags (nth (1- (length tags)) tags) ""))
  5077. time effort neffort
  5078. (ts (if dotime (concat
  5079. (if (stringp dotime) dotime "")
  5080. (and org-agenda-search-headline-for-time txt))))
  5081. (time-of-day (and dotime (org-get-time-of-day ts)))
  5082. stamp plain s0 s1 s2 rtn srp l
  5083. duration thecategory)
  5084. (and (org-mode-p) buffer-file-name
  5085. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  5086. (when (and dotime time-of-day)
  5087. ;; Extract starting and ending time and move them to prefix
  5088. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  5089. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  5090. (setq s0 (match-string 0 ts)
  5091. srp (and stamp (match-end 3))
  5092. s1 (match-string (if plain 1 2) ts)
  5093. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  5094. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  5095. ;; them, we might want to remove them there to avoid duplication.
  5096. ;; The user can turn this off with a variable.
  5097. (if (and org-prefix-has-time
  5098. org-agenda-remove-times-when-in-prefix (or stamp plain)
  5099. (string-match (concat (regexp-quote s0) " *") txt)
  5100. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  5101. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  5102. (= (match-beginning 0) 0)
  5103. t))
  5104. (setq txt (replace-match "" nil nil txt))))
  5105. ;; Normalize the time(s) to 24 hour
  5106. (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
  5107. (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
  5108. ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
  5109. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  5110. (setq s2
  5111. (org-minutes-to-hh:mm-string
  5112. (+ (org-hh:mm-string-to-minutes s1) org-agenda-default-appointment-duration))))
  5113. ;; Compute the duration
  5114. (when s2
  5115. (setq duration (- (org-hh:mm-string-to-minutes s2)
  5116. (org-hh:mm-string-to-minutes s1)))))
  5117. (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  5118. txt)
  5119. ;; Tags are in the string
  5120. (if (or (eq org-agenda-remove-tags t)
  5121. (and org-agenda-remove-tags
  5122. org-prefix-has-tag))
  5123. (setq txt (replace-match "" t t txt))
  5124. (setq txt (replace-match
  5125. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  5126. (match-string 2 txt))
  5127. t t txt))))
  5128. (when (org-mode-p)
  5129. (setq effort
  5130. (condition-case nil
  5131. (org-get-effort
  5132. (or (get-text-property 0 'org-hd-marker txt)
  5133. (get-text-property 0 'org-marker txt)))
  5134. (error nil)))
  5135. (when effort
  5136. (setq neffort (org-duration-string-to-minutes effort)
  5137. effort (setq effort (concat "[" effort "]")))))
  5138. ;; prevent erroring out with %e format when there is no effort
  5139. (or effort (setq effort ""))
  5140. (when remove-re
  5141. (while (string-match remove-re txt)
  5142. (setq txt (replace-match "" t t txt))))
  5143. ;; Set org-heading property on `txt' to mark the start of the
  5144. ;; heading.
  5145. (add-text-properties 0 (length txt) '(org-heading t) txt)
  5146. ;; Prepare the variables needed in the eval of the compiled format
  5147. (setq time (cond (s2 (concat
  5148. (org-agenda-time-of-day-to-ampm-maybe s1)
  5149. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  5150. (if org-agenda-timegrid-use-ampm " ")))
  5151. (s1 (concat
  5152. (org-agenda-time-of-day-to-ampm-maybe s1)
  5153. (if org-agenda-timegrid-use-ampm
  5154. "........ "
  5155. "......")))
  5156. (t ""))
  5157. extra (or (and (not habitp) extra) "")
  5158. category (if (symbolp category) (symbol-name category) category)
  5159. thecategory (copy-sequence category))
  5160. (if (string-match org-bracket-link-regexp category)
  5161. (progn
  5162. (setq l (if (match-end 3)
  5163. (- (match-end 3) (match-beginning 3))
  5164. (- (match-end 1) (match-beginning 1))))
  5165. (when (< l (or org-prefix-category-length 0))
  5166. (setq category (copy-sequence category))
  5167. (org-add-props category nil
  5168. 'extra-space (make-string
  5169. (- org-prefix-category-length l 1) ?\ ))))
  5170. (if (and org-prefix-category-max-length
  5171. (>= (length category) org-prefix-category-max-length))
  5172. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  5173. ;; Evaluate the compiled format
  5174. (setq rtn (concat (eval org-prefix-format-compiled) txt))
  5175. ;; And finally add the text properties
  5176. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  5177. (org-add-props rtn nil
  5178. 'org-category (if thecategory (downcase thecategory) category)
  5179. 'tags (mapcar 'org-downcase-keep-props tags)
  5180. 'org-highest-priority org-highest-priority
  5181. 'org-lowest-priority org-lowest-priority
  5182. 'time-of-day time-of-day
  5183. 'duration duration
  5184. 'effort effort
  5185. 'effort-minutes neffort
  5186. 'txt txt
  5187. 'time time
  5188. 'extra extra
  5189. 'format org-prefix-format-compiled
  5190. 'dotime dotime))))
  5191. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  5192. "Remove tags string from TXT, and add a modified list of tags.
  5193. The modified list may contain inherited tags, and tags matched by
  5194. `org-agenda-hide-tags-regexp' will be removed."
  5195. (when (or add-inherited hide-re)
  5196. (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
  5197. (setq txt (substring txt 0 (match-beginning 0))))
  5198. (setq tags
  5199. (delq nil
  5200. (mapcar (lambda (tg)
  5201. (if (or (and hide-re (string-match hide-re tg))
  5202. (and (not add-inherited)
  5203. (get-text-property 0 'inherited tg)))
  5204. nil
  5205. tg))
  5206. tags)))
  5207. (when tags
  5208. (let ((have-i (get-text-property 0 'inherited (car tags)))
  5209. i)
  5210. (setq txt (concat txt " :"
  5211. (mapconcat
  5212. (lambda (x)
  5213. (setq i (get-text-property 0 'inherited x))
  5214. (if (and have-i (not i))
  5215. (progn
  5216. (setq have-i nil)
  5217. (concat ":" x))
  5218. x))
  5219. tags ":")
  5220. (if have-i "::" ":"))))))
  5221. txt)
  5222. (defun org-downcase-keep-props (s)
  5223. (let ((props (text-properties-at 0 s)))
  5224. (setq s (downcase s))
  5225. (add-text-properties 0 (length s) props s)
  5226. s))
  5227. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  5228. (defvar org-agenda-sorting-strategy-selected nil)
  5229. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  5230. (catch 'exit
  5231. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  5232. ((and todayp (member 'today (car org-agenda-time-grid))))
  5233. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  5234. ((member 'weekly (car org-agenda-time-grid)))
  5235. (t (throw 'exit list)))
  5236. (let* ((have (delq nil (mapcar
  5237. (lambda (x) (get-text-property 1 'time-of-day x))
  5238. list)))
  5239. (string (nth 1 org-agenda-time-grid))
  5240. (gridtimes (nth 2 org-agenda-time-grid))
  5241. (req (car org-agenda-time-grid))
  5242. (remove (member 'remove-match req))
  5243. new time)
  5244. (if (and (member 'require-timed req) (not have))
  5245. ;; don't show empty grid
  5246. (throw 'exit list))
  5247. (while (setq time (pop gridtimes))
  5248. (unless (and remove (member time have))
  5249. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  5250. (push (org-format-agenda-item
  5251. nil string "" nil
  5252. (concat (substring time 0 -2) ":" (substring time -2)))
  5253. new)
  5254. (put-text-property
  5255. 2 (length (car new)) 'face 'org-time-grid (car new))))
  5256. (when (and todayp org-agenda-show-current-time-in-grid)
  5257. (push (org-format-agenda-item
  5258. nil
  5259. org-agenda-current-time-string
  5260. "" nil
  5261. (format-time-string "%H:%M "))
  5262. new)
  5263. (put-text-property
  5264. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  5265. (if (member 'time-up org-agenda-sorting-strategy-selected)
  5266. (append new list)
  5267. (append list new)))))
  5268. (defun org-compile-prefix-format (key)
  5269. "Compile the prefix format into a Lisp form that can be evaluated.
  5270. The resulting form is returned and stored in the variable
  5271. `org-prefix-format-compiled'."
  5272. (setq org-prefix-has-time nil org-prefix-has-tag nil
  5273. org-prefix-category-length nil org-prefix-has-effort nil)
  5274. (let ((s (cond
  5275. ((stringp org-agenda-prefix-format)
  5276. org-agenda-prefix-format)
  5277. ((assq key org-agenda-prefix-format)
  5278. (cdr (assq key org-agenda-prefix-format)))
  5279. (t " %-12:c%?-12t% s")))
  5280. (start 0)
  5281. varform vars var e c f opt)
  5282. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([ctsei]\\|(.+)\\)"
  5283. s start)
  5284. (setq var (or (cdr (assoc (match-string 4 s)
  5285. '(("c" . category) ("t" . time) ("s" . extra)
  5286. ("i" . category-icon) ("T" . tag) ("e" . effort))))
  5287. 'eval)
  5288. c (or (match-string 3 s) "")
  5289. opt (match-beginning 1)
  5290. start (1+ (match-beginning 0)))
  5291. (if (equal var 'time) (setq org-prefix-has-time t))
  5292. (if (equal var 'tag) (setq org-prefix-has-tag t))
  5293. (if (equal var 'effort) (setq org-prefix-has-effort t))
  5294. (setq f (concat "%" (match-string 2 s) "s"))
  5295. (when (equal var 'category)
  5296. (setq org-prefix-category-length
  5297. (floor (abs (string-to-number (match-string 2 s)))))
  5298. (setq org-prefix-category-max-length
  5299. (let ((x (match-string 2 s)))
  5300. (save-match-data
  5301. (if (string-match "\\.[0-9]+" x)
  5302. (string-to-number (substring (match-string 0 x) 1)))))))
  5303. (if (eq var 'eval)
  5304. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  5305. (if opt
  5306. (setq varform
  5307. `(if (equal "" ,var)
  5308. ""
  5309. (format ,f (if (equal "" ,var) "" (concat ,var ,c)))))
  5310. (setq varform `(format ,f (if (equal ,var "") "" (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  5311. (setq s (replace-match "%s" t nil s))
  5312. (push varform vars))
  5313. (setq vars (nreverse vars))
  5314. (setq org-prefix-format-compiled `(format ,s ,@vars))))
  5315. (defun org-set-sorting-strategy (key)
  5316. (if (symbolp (car org-agenda-sorting-strategy))
  5317. ;; the old format
  5318. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  5319. (setq org-agenda-sorting-strategy-selected
  5320. (or (cdr (assq key org-agenda-sorting-strategy))
  5321. (cdr (assq 'agenda org-agenda-sorting-strategy))
  5322. '(time-up category-keep priority-down)))))
  5323. (defun org-get-time-of-day (s &optional string mod24)
  5324. "Check string S for a time of day.
  5325. If found, return it as a military time number between 0 and 2400.
  5326. If not found, return nil.
  5327. The optional STRING argument forces conversion into a 5 character wide string
  5328. HH:MM."
  5329. (save-match-data
  5330. (when
  5331. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  5332. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  5333. (let* ((h (string-to-number (match-string 1 s)))
  5334. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  5335. (ampm (if (match-end 4) (downcase (match-string 4 s))))
  5336. (am-p (equal ampm "am"))
  5337. (h1 (cond ((not ampm) h)
  5338. ((= h 12) (if am-p 0 12))
  5339. (t (+ h (if am-p 0 12)))))
  5340. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  5341. (mod h1 24) h1))
  5342. (t0 (+ (* 100 h2) m))
  5343. (t1 (concat (if (>= h1 24) "+" " ")
  5344. (if (and org-agenda-time-leading-zero
  5345. (< t0 1000)) "0" "")
  5346. (if (< t0 100) "0" "")
  5347. (if (< t0 10) "0" "")
  5348. (int-to-string t0))))
  5349. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  5350. (defvar org-agenda-before-sorting-filter-function nil
  5351. "Function to be applied to agenda items prior to sorting.
  5352. Prior to sorting also means just before they are inserted into the agenda.
  5353. To aid sorting, you may revisit the original entries and add more text
  5354. properties which will later be used by the sorting functions.
  5355. The function should take a string argument, an agenda line.
  5356. It has access to the text properties in that line, which contain among
  5357. other things, the property `org-hd-marker' that points to the entry
  5358. where the line comes from. Note that not all lines going into the agenda
  5359. have this property, only most.
  5360. The function should return the modified string. It is probably best
  5361. to ONLY change text properties.
  5362. You can also use this function as a filter, by returning nil for lines
  5363. you don't want to have in the agenda at all. For this application, you
  5364. could bind the variable in the options section of a custom command.")
  5365. (defun org-finalize-agenda-entries (list &optional nosort)
  5366. "Sort and concatenate the agenda items."
  5367. (setq list (mapcar 'org-agenda-highlight-todo list))
  5368. (if nosort
  5369. list
  5370. (when org-agenda-before-sorting-filter-function
  5371. (setq list (delq nil (mapcar org-agenda-before-sorting-filter-function list))))
  5372. (mapconcat 'identity (sort list 'org-entries-lessp) "\n")))
  5373. (defun org-agenda-highlight-todo (x)
  5374. (let ((org-done-keywords org-done-keywords-for-agenda)
  5375. (case-fold-search nil)
  5376. re)
  5377. (if (eq x 'line)
  5378. (save-excursion
  5379. (beginning-of-line 1)
  5380. (setq re (org-get-at-bol 'org-todo-regexp))
  5381. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  5382. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  5383. (add-text-properties (match-beginning 0) (match-end 1)
  5384. (list 'face (org-get-todo-face 1)))
  5385. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  5386. (delete-region (match-beginning 1) (1- (match-end 0)))
  5387. (goto-char (match-beginning 1))
  5388. (insert (format org-agenda-todo-keyword-format s)))))
  5389. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  5390. (setq re (get-text-property 0 'org-todo-regexp x))
  5391. (when (and re
  5392. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  5393. x (or pl 0)) pl))
  5394. (add-text-properties
  5395. (or (match-end 1) (match-end 0)) (match-end 0)
  5396. (list 'face (org-get-todo-face (match-string 2 x)))
  5397. x)
  5398. (when (match-end 1)
  5399. (setq x (concat (substring x 0 (match-end 1))
  5400. (format org-agenda-todo-keyword-format
  5401. (match-string 2 x))
  5402. (org-add-props " " (text-properties-at 0 x))
  5403. (substring x (match-end 3)))))))
  5404. x)))
  5405. (defsubst org-cmp-priority (a b)
  5406. "Compare the priorities of string A and B."
  5407. (let ((pa (or (get-text-property 1 'priority a) 0))
  5408. (pb (or (get-text-property 1 'priority b) 0)))
  5409. (cond ((> pa pb) +1)
  5410. ((< pa pb) -1)
  5411. (t nil))))
  5412. (defsubst org-cmp-effort (a b)
  5413. "Compare the effort values of string A and B."
  5414. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  5415. (ea (or (get-text-property 1 'effort-minutes a) def))
  5416. (eb (or (get-text-property 1 'effort-minutes b) def)))
  5417. (cond ((> ea eb) +1)
  5418. ((< ea eb) -1)
  5419. (t nil))))
  5420. (defsubst org-cmp-category (a b)
  5421. "Compare the string values of categories of strings A and B."
  5422. (let ((ca (or (get-text-property 1 'org-category a) ""))
  5423. (cb (or (get-text-property 1 'org-category b) "")))
  5424. (cond ((string-lessp ca cb) -1)
  5425. ((string-lessp cb ca) +1)
  5426. (t nil))))
  5427. (defsubst org-cmp-todo-state (a b)
  5428. "Compare the todo states of strings A and B."
  5429. (let* ((ma (or (get-text-property 1 'org-marker a)
  5430. (get-text-property 1 'org-hd-marker a)))
  5431. (mb (or (get-text-property 1 'org-marker b)
  5432. (get-text-property 1 'org-hd-marker b)))
  5433. (fa (and ma (marker-buffer ma)))
  5434. (fb (and mb (marker-buffer mb)))
  5435. (todo-kwds
  5436. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  5437. (and fb (with-current-buffer fb org-todo-keywords-1))))
  5438. (ta (or (get-text-property 1 'todo-state a) ""))
  5439. (tb (or (get-text-property 1 'todo-state b) ""))
  5440. (la (- (length (member ta todo-kwds))))
  5441. (lb (- (length (member tb todo-kwds))))
  5442. (donepa (member ta org-done-keywords-for-agenda))
  5443. (donepb (member tb org-done-keywords-for-agenda)))
  5444. (cond ((and donepa (not donepb)) -1)
  5445. ((and (not donepa) donepb) +1)
  5446. ((< la lb) -1)
  5447. ((< lb la) +1)
  5448. (t nil))))
  5449. (defsubst org-cmp-alpha (a b)
  5450. "Compare the headlines, alphabetically."
  5451. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  5452. (plb (text-property-any 0 (length b) 'org-heading t b))
  5453. (ta (and pla (substring a pla)))
  5454. (tb (and plb (substring b plb))))
  5455. (when pla
  5456. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  5457. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  5458. (setq ta (substring ta (match-end 0))))
  5459. (setq ta (downcase ta)))
  5460. (when plb
  5461. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  5462. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  5463. (setq tb (substring tb (match-end 0))))
  5464. (setq tb (downcase tb)))
  5465. (cond ((not ta) +1)
  5466. ((not tb) -1)
  5467. ((string-lessp ta tb) -1)
  5468. ((string-lessp tb ta) +1)
  5469. (t nil))))
  5470. (defsubst org-cmp-tag (a b)
  5471. "Compare the string values of the first tags of A and B."
  5472. (let ((ta (car (last (get-text-property 1 'tags a))))
  5473. (tb (car (last (get-text-property 1 'tags b)))))
  5474. (cond ((not ta) +1)
  5475. ((not tb) -1)
  5476. ((string-lessp ta tb) -1)
  5477. ((string-lessp tb ta) +1)
  5478. (t nil))))
  5479. (defsubst org-cmp-time (a b)
  5480. "Compare the time-of-day values of strings A and B."
  5481. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  5482. (ta (or (get-text-property 1 'time-of-day a) def))
  5483. (tb (or (get-text-property 1 'time-of-day b) def)))
  5484. (cond ((< ta tb) -1)
  5485. ((< tb ta) +1)
  5486. (t nil))))
  5487. (defsubst org-cmp-habit-p (a b)
  5488. "Compare the todo states of strings A and B."
  5489. (let ((ha (get-text-property 1 'org-habit-p a))
  5490. (hb (get-text-property 1 'org-habit-p b)))
  5491. (cond ((and ha (not hb)) -1)
  5492. ((and (not ha) hb) +1)
  5493. (t nil))))
  5494. (defsubst org-em (x y list) (or (memq x list) (memq y list)))
  5495. (defun org-entries-lessp (a b)
  5496. "Predicate for sorting agenda entries."
  5497. ;; The following variables will be used when the form is evaluated.
  5498. ;; So even though the compiler complains, keep them.
  5499. (let* ((ss org-agenda-sorting-strategy-selected)
  5500. (time-up (and (org-em 'time-up 'time-down ss)
  5501. (org-cmp-time a b)))
  5502. (time-down (if time-up (- time-up) nil))
  5503. (priority-up (and (org-em 'priority-up 'priority-down ss)
  5504. (org-cmp-priority a b)))
  5505. (priority-down (if priority-up (- priority-up) nil))
  5506. (effort-up (and (org-em 'effort-up 'effort-down ss)
  5507. (org-cmp-effort a b)))
  5508. (effort-down (if effort-up (- effort-up) nil))
  5509. (category-up (and (or (org-em 'category-up 'category-down ss)
  5510. (memq 'category-keep ss))
  5511. (org-cmp-category a b)))
  5512. (category-down (if category-up (- category-up) nil))
  5513. (category-keep (if category-up +1 nil))
  5514. (tag-up (and (org-em 'tag-up 'tag-down ss)
  5515. (org-cmp-tag a b)))
  5516. (tag-down (if tag-up (- tag-up) nil))
  5517. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  5518. (org-cmp-todo-state a b)))
  5519. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  5520. (habit-up (and (org-em 'habit-up 'habit-down ss)
  5521. (org-cmp-habit-p a b)))
  5522. (habit-down (if habit-up (- habit-up) nil))
  5523. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  5524. (org-cmp-alpha a b)))
  5525. (alpha-down (if alpha-up (- alpha-up) nil))
  5526. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  5527. user-defined-up user-defined-down)
  5528. (if (and need-user-cmp org-agenda-cmp-user-defined
  5529. (functionp org-agenda-cmp-user-defined))
  5530. (setq user-defined-up
  5531. (funcall org-agenda-cmp-user-defined a b)
  5532. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  5533. (cdr (assoc
  5534. (eval (cons 'or org-agenda-sorting-strategy-selected))
  5535. '((-1 . t) (1 . nil) (nil . nil))))))
  5536. ;;; Agenda restriction lock
  5537. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  5538. "Overlay to mark the headline to which agenda commands are restricted.")
  5539. (overlay-put org-agenda-restriction-lock-overlay
  5540. 'face 'org-agenda-restriction-lock)
  5541. (overlay-put org-agenda-restriction-lock-overlay
  5542. 'help-echo "Agendas are currently limited to this subtree.")
  5543. (org-detach-overlay org-agenda-restriction-lock-overlay)
  5544. (defun org-agenda-set-restriction-lock (&optional type)
  5545. "Set restriction lock for agenda, to current subtree or file.
  5546. Restriction will be the file if TYPE is `file', or if type is the
  5547. universal prefix '(4), or if the cursor is before the first headline
  5548. in the file. Otherwise, restriction will be to the current subtree."
  5549. (interactive "P")
  5550. (and (equal type '(4)) (setq type 'file))
  5551. (setq type (cond
  5552. (type type)
  5553. ((org-at-heading-p) 'subtree)
  5554. ((condition-case nil (org-back-to-heading t) (error nil))
  5555. 'subtree)
  5556. (t 'file)))
  5557. (if (eq type 'subtree)
  5558. (progn
  5559. (setq org-agenda-restrict t)
  5560. (setq org-agenda-overriding-restriction 'subtree)
  5561. (put 'org-agenda-files 'org-restrict
  5562. (list (buffer-file-name (buffer-base-buffer))))
  5563. (org-back-to-heading t)
  5564. (move-overlay org-agenda-restriction-lock-overlay (point) (point-at-eol))
  5565. (move-marker org-agenda-restrict-begin (point))
  5566. (move-marker org-agenda-restrict-end
  5567. (save-excursion (org-end-of-subtree t)))
  5568. (message "Locking agenda restriction to subtree"))
  5569. (put 'org-agenda-files 'org-restrict
  5570. (list (buffer-file-name (buffer-base-buffer))))
  5571. (setq org-agenda-restrict nil)
  5572. (setq org-agenda-overriding-restriction 'file)
  5573. (move-marker org-agenda-restrict-begin nil)
  5574. (move-marker org-agenda-restrict-end nil)
  5575. (message "Locking agenda restriction to file"))
  5576. (setq current-prefix-arg nil)
  5577. (org-agenda-maybe-redo))
  5578. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  5579. "Remove the agenda restriction lock."
  5580. (interactive "P")
  5581. (org-detach-overlay org-agenda-restriction-lock-overlay)
  5582. (org-detach-overlay org-speedbar-restriction-lock-overlay)
  5583. (setq org-agenda-overriding-restriction nil)
  5584. (setq org-agenda-restrict nil)
  5585. (put 'org-agenda-files 'org-restrict nil)
  5586. (move-marker org-agenda-restrict-begin nil)
  5587. (move-marker org-agenda-restrict-end nil)
  5588. (setq current-prefix-arg nil)
  5589. (message "Agenda restriction lock removed")
  5590. (or noupdate (org-agenda-maybe-redo)))
  5591. (defun org-agenda-maybe-redo ()
  5592. "If there is any window showing the agenda view, update it."
  5593. (let ((w (get-buffer-window org-agenda-buffer-name t))
  5594. (w0 (selected-window)))
  5595. (when w
  5596. (select-window w)
  5597. (org-agenda-redo)
  5598. (select-window w0)
  5599. (if org-agenda-overriding-restriction
  5600. (message "Agenda view shifted to new %s restriction"
  5601. org-agenda-overriding-restriction)
  5602. (message "Agenda restriction lock removed")))))
  5603. ;;; Agenda commands
  5604. (defun org-agenda-check-type (error &rest types)
  5605. "Check if agenda buffer is of allowed type.
  5606. If ERROR is non-nil, throw an error, otherwise just return nil."
  5607. (if (memq org-agenda-type types)
  5608. t
  5609. (if error
  5610. (error "Not allowed in %s-type agenda buffers" org-agenda-type)
  5611. nil)))
  5612. (defun org-agenda-quit ()
  5613. "Exit agenda by removing the window or the buffer."
  5614. (interactive)
  5615. (if org-agenda-columns-active
  5616. (org-columns-quit)
  5617. (let ((buf (current-buffer)))
  5618. (if (eq org-agenda-window-setup 'other-frame)
  5619. (progn
  5620. (kill-buffer buf)
  5621. (org-agenda-reset-markers)
  5622. (org-columns-remove-overlays)
  5623. (setq org-agenda-archives-mode nil)
  5624. (delete-frame))
  5625. (and (not (eq org-agenda-window-setup 'current-window))
  5626. (not (one-window-p))
  5627. (delete-window))
  5628. (kill-buffer buf)
  5629. (org-agenda-reset-markers)
  5630. (org-columns-remove-overlays)
  5631. (setq org-agenda-archives-mode nil)))
  5632. ;; Maybe restore the pre-agenda window configuration.
  5633. (and org-agenda-restore-windows-after-quit
  5634. (not (eq org-agenda-window-setup 'other-frame))
  5635. org-pre-agenda-window-conf
  5636. (set-window-configuration org-pre-agenda-window-conf))))
  5637. (defun org-agenda-exit ()
  5638. "Exit agenda by removing the window or the buffer.
  5639. Also kill all Org-mode buffers which have been loaded by `org-agenda'.
  5640. Org-mode buffers visited directly by the user will not be touched."
  5641. (interactive)
  5642. (org-release-buffers org-agenda-new-buffers)
  5643. (setq org-agenda-new-buffers nil)
  5644. (org-agenda-quit))
  5645. (defun org-agenda-execute (arg)
  5646. "Execute another agenda command, keeping same window.
  5647. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  5648. in the agenda."
  5649. (interactive "P")
  5650. (let ((org-agenda-window-setup 'current-window))
  5651. (org-agenda arg)))
  5652. (defun org-agenda-redo ()
  5653. "Rebuild Agenda.
  5654. When this is the global TODO list, a prefix argument will be interpreted."
  5655. (interactive)
  5656. (let* ((org-agenda-keep-modes t)
  5657. (filter org-agenda-filter)
  5658. (preset (get 'org-agenda-filter :preset-filter))
  5659. (org-agenda-filter-while-redo (or filter preset))
  5660. (cols org-agenda-columns-active)
  5661. (line (org-current-line))
  5662. (window-line (- line (org-current-line (window-start))))
  5663. (lprops (get 'org-agenda-redo-command 'org-lprops)))
  5664. (put 'org-agenda-filter :preset-filter nil)
  5665. (and cols (org-columns-quit))
  5666. (message "Rebuilding agenda buffer...")
  5667. (org-let lprops '(eval org-agenda-redo-command))
  5668. (setq org-agenda-undo-list nil
  5669. org-agenda-pending-undo-list nil)
  5670. (message "Rebuilding agenda buffer...done")
  5671. (put 'org-agenda-filter :preset-filter preset)
  5672. (and (or filter preset) (org-agenda-filter-apply filter))
  5673. (and cols (org-called-interactively-p 'any) (org-agenda-columns))
  5674. (org-goto-line line)
  5675. (recenter window-line)))
  5676. (defvar org-global-tags-completion-table nil)
  5677. (defvar org-agenda-filter-form nil)
  5678. (defun org-agenda-filter-by-tag (strip &optional char narrow)
  5679. "Keep only those lines in the agenda buffer that have a specific tag.
  5680. The tag is selected with its fast selection letter, as configured.
  5681. With prefix argument STRIP, remove all lines that do have the tag.
  5682. A lisp caller can specify CHAR. NARROW means that the new tag should be
  5683. used to narrow the search - the interactive user can also press `-' or `+'
  5684. to switch to narrowing."
  5685. (interactive "P")
  5686. (let* ((alist org-tag-alist-for-agenda)
  5687. (tag-chars (mapconcat
  5688. (lambda (x) (if (and (not (symbolp (car x)))
  5689. (cdr x))
  5690. (char-to-string (cdr x))
  5691. ""))
  5692. alist ""))
  5693. (efforts (org-split-string
  5694. (or (cdr (assoc (concat org-effort-property "_ALL")
  5695. org-global-properties))
  5696. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
  5697. "")))
  5698. (effort-op org-agenda-filter-effort-default-operator)
  5699. (effort-prompt "")
  5700. (inhibit-read-only t)
  5701. (current org-agenda-filter)
  5702. maybe-refresh a n tag)
  5703. (unless char
  5704. (message
  5705. "%s by tag [%s ], [TAB], %s[/]:off, [+-]:narrow, [>=<?]:effort: "
  5706. (if narrow "Narrow" "Filter") tag-chars
  5707. (if org-agenda-auto-exclude-function "[RET], " ""))
  5708. (setq char (read-char)))
  5709. (when (member char '(?+ ?-))
  5710. ;; Narrowing down
  5711. (cond ((equal char ?-) (setq strip t narrow t))
  5712. ((equal char ?+) (setq strip nil narrow t)))
  5713. (message
  5714. "Narrow by tag [%s ], [TAB], [/]:off, [>=<]:effort: " tag-chars)
  5715. (setq char (read-char)))
  5716. (when (member char '(?< ?> ?= ??))
  5717. ;; An effort operator
  5718. (setq effort-op (char-to-string char))
  5719. (setq alist nil) ; to make sure it will be interpreted as effort.
  5720. (unless (equal char ??)
  5721. (loop for i from 0 to 9 do
  5722. (setq effort-prompt
  5723. (concat
  5724. effort-prompt " ["
  5725. (if (= i 9) "0" (int-to-string (1+ i)))
  5726. "]" (nth i efforts))))
  5727. (message "Effort%s: %s " effort-op effort-prompt)
  5728. (setq char (read-char))
  5729. (when (or (< char ?0) (> char ?9))
  5730. (error "Need 1-9,0 to select effort" ))))
  5731. (when (equal char ?\t)
  5732. (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
  5733. (org-set-local 'org-global-tags-completion-table
  5734. (org-global-tags-completion-table)))
  5735. (let ((completion-ignore-case t))
  5736. (setq tag (org-icompleting-read
  5737. "Tag: " org-global-tags-completion-table))))
  5738. (cond
  5739. ((equal char ?\r)
  5740. (org-agenda-filter-by-tag-show-all)
  5741. (when org-agenda-auto-exclude-function
  5742. (setq org-agenda-filter '())
  5743. (dolist (tag (org-agenda-get-represented-tags))
  5744. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  5745. (if modifier
  5746. (push modifier org-agenda-filter))))
  5747. (if (not (null org-agenda-filter))
  5748. (org-agenda-filter-apply org-agenda-filter)))
  5749. (setq maybe-refresh t))
  5750. ((equal char ?/)
  5751. (org-agenda-filter-by-tag-show-all)
  5752. (when (get 'org-agenda-filter :preset-filter)
  5753. (org-agenda-filter-apply org-agenda-filter))
  5754. (setq maybe-refresh t))
  5755. ((or (equal char ?\ )
  5756. (setq a (rassoc char alist))
  5757. (and (>= char ?0) (<= char ?9)
  5758. (setq n (if (= char ?0) 9 (- char ?0 1))
  5759. tag (concat effort-op (nth n efforts))
  5760. a (cons tag nil)))
  5761. (and (= char ??)
  5762. (setq tag "?eff")
  5763. a (cons tag nil))
  5764. (and tag (setq a (cons tag nil))))
  5765. (org-agenda-filter-by-tag-show-all)
  5766. (setq tag (car a))
  5767. (setq org-agenda-filter
  5768. (cons (concat (if strip "-" "+") tag)
  5769. (if narrow current nil)))
  5770. (org-agenda-filter-apply org-agenda-filter)
  5771. (setq maybe-refresh t))
  5772. (t (error "Invalid tag selection character %c" char)))
  5773. (when (and maybe-refresh
  5774. (eq org-agenda-clockreport-mode 'with-filter))
  5775. (org-agenda-redo))))
  5776. (defun org-agenda-get-represented-tags ()
  5777. "Get a list of all tags currently represented in the agenda."
  5778. (let (p tags)
  5779. (save-excursion
  5780. (goto-char (point-min))
  5781. (while (setq p (next-single-property-change (point) 'tags))
  5782. (goto-char p)
  5783. (mapc (lambda (x) (add-to-list 'tags x))
  5784. (get-text-property (point) 'tags))))
  5785. tags))
  5786. (defun org-agenda-filter-by-tag-refine (strip &optional char)
  5787. "Refine the current filter. See `org-agenda-filter-by-tag."
  5788. (interactive "P")
  5789. (org-agenda-filter-by-tag strip char 'refine))
  5790. (defun org-agenda-filter-make-matcher ()
  5791. "Create the form that tests a line for the agenda filter."
  5792. (let (f f1)
  5793. (dolist (x (append (get 'org-agenda-filter :preset-filter)
  5794. org-agenda-filter))
  5795. (if (member x '("-" "+"))
  5796. (setq f1 (if (equal x "-") 'tags '(not tags)))
  5797. (if (string-match "[<=>?]" x)
  5798. (setq f1 (org-agenda-filter-effort-form x))
  5799. (setq f1 (list 'member (downcase (substring x 1)) 'tags)))
  5800. (if (equal (string-to-char x) ?-)
  5801. (setq f1 (list 'not f1))))
  5802. (push f1 f))
  5803. (cons 'and (nreverse f))))
  5804. (defun org-agenda-filter-effort-form (e)
  5805. "Return the form to compare the effort of the current line with what E says.
  5806. E looks like \"+<2:25\"."
  5807. (let (op)
  5808. (setq e (substring e 1))
  5809. (setq op (string-to-char e) e (substring e 1))
  5810. (setq op (cond ((equal op ?<) '<=)
  5811. ((equal op ?>) '>=)
  5812. ((equal op ??) op)
  5813. (t '=)))
  5814. (list 'org-agenda-compare-effort (list 'quote op)
  5815. (org-duration-string-to-minutes e))))
  5816. (defun org-agenda-compare-effort (op value)
  5817. "Compare the effort of the current line with VALUE, using OP.
  5818. If the line does not have an effort defined, return nil."
  5819. (let ((eff (org-get-at-bol 'effort-minutes)))
  5820. (if (equal op ??)
  5821. (not eff)
  5822. (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 0))
  5823. value))))
  5824. (defun org-agenda-filter-apply (filter)
  5825. "Set FILTER as the new agenda filter and apply it."
  5826. (let (tags)
  5827. (setq org-agenda-filter filter
  5828. org-agenda-filter-form (org-agenda-filter-make-matcher))
  5829. (org-agenda-set-mode-name)
  5830. (save-excursion
  5831. (goto-char (point-min))
  5832. (while (not (eobp))
  5833. (if (org-get-at-bol 'org-marker)
  5834. (progn
  5835. (setq tags (org-get-at-bol 'tags)) ; used in eval
  5836. (if (not (eval org-agenda-filter-form))
  5837. (org-agenda-filter-by-tag-hide-line))
  5838. (beginning-of-line 2))
  5839. (beginning-of-line 2))))
  5840. (if (get-char-property (point) 'invisible)
  5841. (org-agenda-previous-line))))
  5842. (defun org-agenda-filter-by-tag-hide-line ()
  5843. (let (ov)
  5844. (setq ov (make-overlay (max (point-min) (1- (point-at-bol)))
  5845. (point-at-eol)))
  5846. (overlay-put ov 'invisible t)
  5847. (overlay-put ov 'type 'tags-filter)
  5848. (push ov org-agenda-filter-overlays)))
  5849. (defun org-agenda-fix-tags-filter-overlays-at (&optional pos)
  5850. (setq pos (or pos (point)))
  5851. (save-excursion
  5852. (dolist (ov (overlays-at pos))
  5853. (when (and (overlay-get ov 'invisible)
  5854. (eq (overlay-get ov 'type) 'tags-filter))
  5855. (goto-char pos)
  5856. (if (< (overlay-start ov) (point-at-eol))
  5857. (move-overlay ov (point-at-eol)
  5858. (overlay-end ov)))))))
  5859. (defun org-agenda-filter-by-tag-show-all ()
  5860. (mapc 'delete-overlay org-agenda-filter-overlays)
  5861. (setq org-agenda-filter-overlays nil)
  5862. (setq org-agenda-filter nil)
  5863. (setq org-agenda-filter-form nil)
  5864. (org-agenda-set-mode-name))
  5865. (defun org-agenda-manipulate-query-add ()
  5866. "Manipulate the query by adding a search term with positive selection.
  5867. Positive selection means the term must be matched for selection of an entry."
  5868. (interactive)
  5869. (org-agenda-manipulate-query ?\[))
  5870. (defun org-agenda-manipulate-query-subtract ()
  5871. "Manipulate the query by adding a search term with negative selection.
  5872. Negative selection means term must not be matched for selection of an entry."
  5873. (interactive)
  5874. (org-agenda-manipulate-query ?\]))
  5875. (defun org-agenda-manipulate-query-add-re ()
  5876. "Manipulate the query by adding a search regexp with positive selection.
  5877. Positive selection means the regexp must match for selection of an entry."
  5878. (interactive)
  5879. (org-agenda-manipulate-query ?\{))
  5880. (defun org-agenda-manipulate-query-subtract-re ()
  5881. "Manipulate the query by adding a search regexp with negative selection.
  5882. Negative selection means regexp must not match for selection of an entry."
  5883. (interactive)
  5884. (org-agenda-manipulate-query ?\}))
  5885. (defun org-agenda-manipulate-query (char)
  5886. (cond
  5887. ((memq org-agenda-type '(timeline agenda))
  5888. (let ((org-agenda-include-inactive-timestamps t))
  5889. (org-agenda-redo))
  5890. (message "Display now includes inactive timestamps as well"))
  5891. ((eq org-agenda-type 'search)
  5892. (org-add-to-string
  5893. 'org-agenda-query-string
  5894. (if org-agenda-last-search-view-search-was-boolean
  5895. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  5896. (?\{ . " +{}") (?\} . " -{}"))))
  5897. " "))
  5898. (setq org-agenda-redo-command
  5899. (list 'org-search-view
  5900. org-todo-only
  5901. org-agenda-query-string
  5902. (+ (length org-agenda-query-string)
  5903. (if (member char '(?\{ ?\})) 0 1))))
  5904. (set-register org-agenda-query-register org-agenda-query-string)
  5905. (org-agenda-redo))
  5906. (t (error "Cannot manipulate query for %s-type agenda buffers"
  5907. org-agenda-type))))
  5908. (defun org-add-to-string (var string)
  5909. (set var (concat (symbol-value var) string)))
  5910. (defun org-agenda-goto-date (date)
  5911. "Jump to DATE in agenda."
  5912. (interactive (list (let ((org-read-date-prefer-future
  5913. (eval org-agenda-jump-prefer-future)))
  5914. (org-read-date))))
  5915. (org-agenda-list nil date))
  5916. (defun org-agenda-goto-today ()
  5917. "Go to today."
  5918. (interactive)
  5919. (org-agenda-check-type t 'timeline 'agenda)
  5920. (let ((tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  5921. (cond
  5922. (tdpos (goto-char tdpos))
  5923. ((eq org-agenda-type 'agenda)
  5924. (let* ((sd (org-agenda-compute-starting-span
  5925. (org-today) (or org-agenda-current-span org-agenda-ndays org-agenda-span)))
  5926. (org-agenda-overriding-arguments org-agenda-last-arguments))
  5927. (setf (nth 1 org-agenda-overriding-arguments) sd)
  5928. (org-agenda-redo)
  5929. (org-agenda-find-same-or-today-or-agenda)))
  5930. (t (error "Cannot find today")))))
  5931. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  5932. (goto-char
  5933. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  5934. (text-property-any (point-min) (point-max) 'org-today t)
  5935. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  5936. (point-min))))
  5937. (defun org-agenda-later (arg)
  5938. "Go forward in time by thee current span.
  5939. With prefix ARG, go forward that many times the current span."
  5940. (interactive "p")
  5941. (org-agenda-check-type t 'agenda)
  5942. (let* ((span org-agenda-current-span)
  5943. (sd org-starting-day)
  5944. (greg (calendar-gregorian-from-absolute sd))
  5945. (cnt (org-get-at-bol 'org-day-cnt))
  5946. greg2)
  5947. (cond
  5948. ((eq span 'day)
  5949. (setq sd (+ arg sd)))
  5950. ((eq span 'week)
  5951. (setq sd (+ (* 7 arg) sd)))
  5952. ((eq span 'month)
  5953. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  5954. sd (calendar-absolute-from-gregorian greg2))
  5955. (setcar greg2 (1+ (car greg2))))
  5956. ((eq span 'year)
  5957. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  5958. sd (calendar-absolute-from-gregorian greg2))
  5959. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  5960. (t
  5961. (setq sd (+ (* span arg) sd))))
  5962. (let ((org-agenda-overriding-arguments
  5963. (list (car org-agenda-last-arguments) sd span t)))
  5964. (org-agenda-redo)
  5965. (org-agenda-find-same-or-today-or-agenda cnt))))
  5966. (defun org-agenda-earlier (arg)
  5967. "Go backward in time by the current span.
  5968. With prefix ARG, go backward that many times the current span."
  5969. (interactive "p")
  5970. (org-agenda-later (- arg)))
  5971. (defun org-agenda-view-mode-dispatch ()
  5972. "Call one of the view mode commands."
  5973. (interactive)
  5974. (message "View: [d]ay [w]eek [m]onth [y]ear [SPC]reset [q]uit/abort
  5975. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  5976. [a]rch-trees [A]rch-files clock[R]eport include[D]iary
  5977. [E]ntryText")
  5978. (let ((a (read-char-exclusive)))
  5979. (case a
  5980. (?\ (call-interactively 'org-agenda-reset-view))
  5981. (?d (call-interactively 'org-agenda-day-view))
  5982. (?w (call-interactively 'org-agenda-week-view))
  5983. (?m (call-interactively 'org-agenda-month-view))
  5984. (?y (call-interactively 'org-agenda-year-view))
  5985. (?l (call-interactively 'org-agenda-log-mode))
  5986. (?L (org-agenda-log-mode '(4)))
  5987. (?c (org-agenda-log-mode 'clockcheck))
  5988. ((?F ?f) (call-interactively 'org-agenda-follow-mode))
  5989. (?a (call-interactively 'org-agenda-archives-mode))
  5990. (?A (org-agenda-archives-mode 'files))
  5991. ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  5992. ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  5993. (?G (call-interactively 'org-agenda-toggle-time-grid))
  5994. (?D (call-interactively 'org-agenda-toggle-diary))
  5995. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  5996. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  5997. (org-agenda-check-type t 'timeline 'agenda)
  5998. (org-agenda-redo))
  5999. (message "Display now includes inactive timestamps as well"))
  6000. (?q (message "Abort"))
  6001. (otherwise (error "Invalid key" )))))
  6002. (defun org-agenda-reset-view ()
  6003. "Switch to default view for agenda."
  6004. (interactive)
  6005. (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
  6006. (defun org-agenda-day-view (&optional day-of-year)
  6007. "Switch to daily view for agenda.
  6008. With argument DAY-OF-YEAR, switch to that day of the year."
  6009. (interactive "P")
  6010. (org-agenda-change-time-span 'day day-of-year))
  6011. (defun org-agenda-week-view (&optional iso-week)
  6012. "Switch to daily view for agenda.
  6013. With argument ISO-WEEK, switch to the corresponding ISO week.
  6014. If ISO-WEEK has more then 2 digits, only the last two encode the
  6015. week. Any digits before this encode a year. So 200712 means
  6016. week 12 of year 2007. Years in the range 1938-2037 can also be
  6017. written as 2-digit years."
  6018. (interactive "P")
  6019. (org-agenda-change-time-span 'week iso-week))
  6020. (defun org-agenda-month-view (&optional month)
  6021. "Switch to monthly view for agenda.
  6022. With argument MONTH, switch to that month."
  6023. (interactive "P")
  6024. (org-agenda-change-time-span 'month month))
  6025. (defun org-agenda-year-view (&optional year)
  6026. "Switch to yearly view for agenda.
  6027. With argument YEAR, switch to that year.
  6028. If MONTH has more then 2 digits, only the last two encode the
  6029. month. Any digits before this encode a year. So 200712 means
  6030. December year 2007. Years in the range 1938-2037 can also be
  6031. written as 2-digit years."
  6032. (interactive "P")
  6033. (when year
  6034. (setq year (org-small-year-to-year year)))
  6035. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  6036. (org-agenda-change-time-span 'year year)
  6037. (error "Abort")))
  6038. (defun org-agenda-change-time-span (span &optional n)
  6039. "Change the agenda view to SPAN.
  6040. SPAN may be `day', `week', `month', `year'."
  6041. (org-agenda-check-type t 'agenda)
  6042. (if (and (not n) (equal org-agenda-current-span span))
  6043. (error "Viewing span is already \"%s\"" span))
  6044. (let* ((sd (or (org-get-at-bol 'day)
  6045. org-starting-day))
  6046. (sd (org-agenda-compute-starting-span sd span n))
  6047. (org-agenda-overriding-arguments
  6048. (or org-agenda-overriding-arguments
  6049. (list (car org-agenda-last-arguments) sd span t))))
  6050. (org-agenda-redo)
  6051. (org-agenda-find-same-or-today-or-agenda))
  6052. (org-agenda-set-mode-name)
  6053. (message "Switched to %s view" span))
  6054. (defun org-agenda-compute-starting-span (sd span &optional n)
  6055. "Compute starting date for agenda.
  6056. SPAN may be `day', `week', `month', `year'. The return value
  6057. is a cons cell with the starting date and the number of days,
  6058. so that the date SD will be in that range."
  6059. (let* ((greg (calendar-gregorian-from-absolute sd))
  6060. (dg (nth 1 greg))
  6061. (mg (car greg))
  6062. (yg (nth 2 greg)))
  6063. (cond
  6064. ((eq span 'day)
  6065. (when n
  6066. (setq sd (+ (calendar-absolute-from-gregorian
  6067. (list mg 1 yg))
  6068. n -1))))
  6069. ((eq span 'week)
  6070. (let* ((nt (calendar-day-of-week
  6071. (calendar-gregorian-from-absolute sd)))
  6072. (d (if org-agenda-start-on-weekday
  6073. (- nt org-agenda-start-on-weekday)
  6074. 0))
  6075. y1)
  6076. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  6077. (when n
  6078. (require 'cal-iso)
  6079. (when (> n 99)
  6080. (setq y1 (org-small-year-to-year (/ n 100))
  6081. n (mod n 100)))
  6082. (setq sd
  6083. (calendar-absolute-from-iso
  6084. (list n 1
  6085. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  6086. ((eq span 'month)
  6087. (let (y1)
  6088. (when (and n (> n 99))
  6089. (setq y1 (org-small-year-to-year (/ n 100))
  6090. n (mod n 100)))
  6091. (setq sd (calendar-absolute-from-gregorian
  6092. (list (or n mg) 1 (or y1 yg))))))
  6093. ((eq span 'year)
  6094. (setq sd (calendar-absolute-from-gregorian
  6095. (list 1 1 (or n yg))))))
  6096. sd))
  6097. (defun org-agenda-next-date-line (&optional arg)
  6098. "Jump to the next line indicating a date in agenda buffer."
  6099. (interactive "p")
  6100. (org-agenda-check-type t 'agenda 'timeline)
  6101. (beginning-of-line 1)
  6102. ;; This does not work if user makes date format that starts with a blank
  6103. (if (looking-at "^\\S-") (forward-char 1))
  6104. (if (not (re-search-forward "^\\S-" nil t arg))
  6105. (progn
  6106. (backward-char 1)
  6107. (error "No next date after this line in this buffer")))
  6108. (goto-char (match-beginning 0)))
  6109. (defun org-agenda-previous-date-line (&optional arg)
  6110. "Jump to the previous line indicating a date in agenda buffer."
  6111. (interactive "p")
  6112. (org-agenda-check-type t 'agenda 'timeline)
  6113. (beginning-of-line 1)
  6114. (if (not (re-search-backward "^\\S-" nil t arg))
  6115. (error "No previous date before this line in this buffer")))
  6116. ;; Initialize the highlight
  6117. (defvar org-hl (make-overlay 1 1))
  6118. (overlay-put org-hl 'face 'highlight)
  6119. (defun org-highlight (begin end &optional buffer)
  6120. "Highlight a region with overlay."
  6121. (move-overlay org-hl begin end (or buffer (current-buffer))))
  6122. (defun org-unhighlight ()
  6123. "Detach overlay INDEX."
  6124. (org-detach-overlay org-hl))
  6125. ;; FIXME this is currently not used.
  6126. (defun org-highlight-until-next-command (beg end &optional buffer)
  6127. "Move the highlight overlay to BEG/END, remove it before the next command."
  6128. (org-highlight beg end buffer)
  6129. (add-hook 'pre-command-hook 'org-unhighlight-once))
  6130. (defun org-unhighlight-once ()
  6131. "Remove the highlight from its position, and this function from the hook."
  6132. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  6133. (org-unhighlight))
  6134. (defun org-agenda-follow-mode ()
  6135. "Toggle follow mode in an agenda buffer."
  6136. (interactive)
  6137. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  6138. (org-agenda-set-mode-name)
  6139. (if (and org-agenda-follow-mode (org-get-at-bol 'org-marker))
  6140. (org-agenda-show))
  6141. (message "Follow mode is %s"
  6142. (if org-agenda-follow-mode "on" "off")))
  6143. (defun org-agenda-entry-text-mode (&optional arg)
  6144. "Toggle entry text mode in an agenda buffer."
  6145. (interactive "P")
  6146. (setq org-agenda-entry-text-mode (or (integerp arg)
  6147. (not org-agenda-entry-text-mode)))
  6148. (org-agenda-entry-text-hide)
  6149. (and org-agenda-entry-text-mode
  6150. (let ((org-agenda-entry-text-maxlines
  6151. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  6152. (org-agenda-entry-text-show)))
  6153. (org-agenda-set-mode-name)
  6154. (message "Entry text mode is %s. Maximum number of lines is %d"
  6155. (if org-agenda-entry-text-mode "on" "off")
  6156. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  6157. (defun org-agenda-clockreport-mode (&optional with-filter)
  6158. "Toggle clocktable mode in an agenda buffer.
  6159. With prefix arg WITH-FILTER, make the clocktable respect the current
  6160. agenda filter."
  6161. (interactive "P")
  6162. (org-agenda-check-type t 'agenda)
  6163. (if with-filter
  6164. (setq org-agenda-clockreport-mode 'with-filter)
  6165. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode)))
  6166. (org-agenda-set-mode-name)
  6167. (org-agenda-redo)
  6168. (message "Clocktable mode is %s"
  6169. (if org-agenda-clockreport-mode "on" "off")))
  6170. (defun org-agenda-log-mode (&optional special)
  6171. "Toggle log mode in an agenda buffer.
  6172. With argument SPECIAL, show all possible log items, not only the ones
  6173. configured in `org-agenda-log-mode-items'.
  6174. With a double `C-u' prefix arg, show *only* log items, nothing else."
  6175. (interactive "P")
  6176. (org-agenda-check-type t 'agenda 'timeline)
  6177. (setq org-agenda-show-log
  6178. (cond
  6179. ((equal special '(16)) 'only)
  6180. ((eq special 'clockcheck)
  6181. (if (eq org-agenda-show-log 'clockcheck)
  6182. nil 'clockcheck))
  6183. (special '(closed clock state))
  6184. (t (not org-agenda-show-log))))
  6185. (org-agenda-set-mode-name)
  6186. (org-agenda-redo)
  6187. (message "Log mode is %s"
  6188. (if org-agenda-show-log "on" "off")))
  6189. (defun org-agenda-archives-mode (&optional with-files)
  6190. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  6191. When called with a prefix argument, include all archive files as well."
  6192. (interactive "P")
  6193. (setq org-agenda-archives-mode
  6194. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  6195. (org-agenda-set-mode-name)
  6196. (org-agenda-redo)
  6197. (message
  6198. "%s"
  6199. (cond
  6200. ((eq org-agenda-archives-mode nil)
  6201. "No archives are included")
  6202. ((eq org-agenda-archives-mode 'trees)
  6203. (format "Trees with :%s: tag are included" org-archive-tag))
  6204. ((eq org-agenda-archives-mode t)
  6205. (format "Trees with :%s: tag and all active archive files are included"
  6206. org-archive-tag)))))
  6207. (defun org-agenda-toggle-diary ()
  6208. "Toggle diary inclusion in an agenda buffer."
  6209. (interactive)
  6210. (org-agenda-check-type t 'agenda)
  6211. (setq org-agenda-include-diary (not org-agenda-include-diary))
  6212. (org-agenda-redo)
  6213. (org-agenda-set-mode-name)
  6214. (message "Diary inclusion turned %s"
  6215. (if org-agenda-include-diary "on" "off")))
  6216. (defun org-agenda-toggle-deadlines ()
  6217. "Toggle inclusion of entries with a deadline in an agenda buffer."
  6218. (interactive)
  6219. (org-agenda-check-type t 'agenda)
  6220. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  6221. (org-agenda-redo)
  6222. (org-agenda-set-mode-name)
  6223. (message "Deadlines inclusion turned %s"
  6224. (if org-agenda-include-deadlines "on" "off")))
  6225. (defun org-agenda-toggle-time-grid ()
  6226. "Toggle time grid in an agenda buffer."
  6227. (interactive)
  6228. (org-agenda-check-type t 'agenda)
  6229. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  6230. (org-agenda-redo)
  6231. (org-agenda-set-mode-name)
  6232. (message "Time-grid turned %s"
  6233. (if org-agenda-use-time-grid "on" "off")))
  6234. (defun org-agenda-set-mode-name ()
  6235. "Set the mode name to indicate all the small mode settings."
  6236. (setq mode-name
  6237. (list "Org-Agenda"
  6238. (if (get 'org-agenda-files 'org-restrict) " []" "")
  6239. " "
  6240. '(:eval (org-agenda-span-name org-agenda-current-span))
  6241. (if org-agenda-follow-mode " Follow" "")
  6242. (if org-agenda-entry-text-mode " ETxt" "")
  6243. (if org-agenda-include-diary " Diary" "")
  6244. (if org-agenda-include-deadlines " Ddl" "")
  6245. (if org-agenda-use-time-grid " Grid" "")
  6246. (if (and (boundp 'org-habit-show-habits)
  6247. org-habit-show-habits) " Habit" "")
  6248. (cond
  6249. ((consp org-agenda-show-log) " LogAll")
  6250. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  6251. (org-agenda-show-log " Log")
  6252. (t ""))
  6253. (if (or org-agenda-filter (get 'org-agenda-filter
  6254. :preset-filter))
  6255. (concat " {" (mapconcat
  6256. 'identity
  6257. (append (get 'org-agenda-filter
  6258. :preset-filter)
  6259. org-agenda-filter) "") "}")
  6260. "")
  6261. (if org-agenda-archives-mode
  6262. (if (eq org-agenda-archives-mode t)
  6263. " Archives"
  6264. (format " :%s:" org-archive-tag))
  6265. "")
  6266. (if org-agenda-clockreport-mode
  6267. (if (eq org-agenda-clockreport-mode 'with-filter)
  6268. " Clock{}" " Clock")
  6269. "")))
  6270. (force-mode-line-update))
  6271. (defun org-agenda-post-command-hook ()
  6272. (setq org-agenda-type
  6273. (or (get-text-property (point) 'org-agenda-type)
  6274. (get-text-property (max (point-min) (1- (point)))
  6275. 'org-agenda-type))))
  6276. (defun org-agenda-next-line ()
  6277. "Move cursor to the next line, and show if follow mode is active."
  6278. (interactive)
  6279. (call-interactively 'next-line)
  6280. (org-agenda-do-context-action))
  6281. (defun org-agenda-previous-line ()
  6282. "Move cursor to the previous line, and show if follow-mode is active."
  6283. (interactive)
  6284. (call-interactively 'previous-line)
  6285. (org-agenda-do-context-action))
  6286. (defun org-agenda-do-context-action ()
  6287. "Show outline path and, maybe, follow mode window."
  6288. (let ((m (org-get-at-bol 'org-marker)))
  6289. (if (and org-agenda-follow-mode m)
  6290. (org-agenda-show))
  6291. (if (and m org-agenda-show-outline-path)
  6292. (org-with-point-at m
  6293. (org-display-outline-path t)))))
  6294. (defun org-agenda-show-priority ()
  6295. "Show the priority of the current item.
  6296. This priority is composed of the main priority given with the [#A] cookies,
  6297. and by additional input from the age of a schedules or deadline entry."
  6298. (interactive)
  6299. (let* ((pri (org-get-at-bol 'priority)))
  6300. (message "Priority is %d" (if pri pri -1000))))
  6301. (defun org-agenda-show-tags ()
  6302. "Show the tags applicable to the current item."
  6303. (interactive)
  6304. (let* ((tags (org-get-at-bol 'tags)))
  6305. (if tags
  6306. (message "Tags are :%s:"
  6307. (org-no-properties (mapconcat 'identity tags ":")))
  6308. (message "No tags associated with this line"))))
  6309. (defun org-agenda-goto (&optional highlight)
  6310. "Go to the Org-mode file which contains the item at point."
  6311. (interactive)
  6312. (let* ((marker (or (org-get-at-bol 'org-marker)
  6313. (org-agenda-error)))
  6314. (buffer (marker-buffer marker))
  6315. (pos (marker-position marker)))
  6316. (switch-to-buffer-other-window buffer)
  6317. (widen)
  6318. (push-mark)
  6319. (goto-char pos)
  6320. (when (org-mode-p)
  6321. (org-show-context 'agenda)
  6322. (save-excursion
  6323. (and (outline-next-heading)
  6324. (org-flag-heading nil)))) ; show the next heading
  6325. (when (outline-invisible-p)
  6326. (show-entry)) ; display invisible text
  6327. (recenter (/ (window-height) 2))
  6328. (run-hooks 'org-agenda-after-show-hook)
  6329. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  6330. (defvar org-agenda-after-show-hook nil
  6331. "Normal hook run after an item has been shown from the agenda.
  6332. Point is in the buffer where the item originated.")
  6333. (defun org-agenda-kill ()
  6334. "Kill the entry or subtree belonging to the current agenda entry."
  6335. (interactive)
  6336. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  6337. (let* ((marker (or (org-get-at-bol 'org-marker)
  6338. (org-agenda-error)))
  6339. (buffer (marker-buffer marker))
  6340. (pos (marker-position marker))
  6341. (type (org-get-at-bol 'type))
  6342. dbeg dend (n 0) conf)
  6343. (org-with-remote-undo buffer
  6344. (with-current-buffer buffer
  6345. (save-excursion
  6346. (goto-char pos)
  6347. (if (and (org-mode-p) (not (member type '("sexp"))))
  6348. (setq dbeg (progn (org-back-to-heading t) (point))
  6349. dend (org-end-of-subtree t t))
  6350. (setq dbeg (point-at-bol)
  6351. dend (min (point-max) (1+ (point-at-eol)))))
  6352. (goto-char dbeg)
  6353. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  6354. (setq conf (or (eq t org-agenda-confirm-kill)
  6355. (and (numberp org-agenda-confirm-kill)
  6356. (> n org-agenda-confirm-kill))))
  6357. (and conf
  6358. (not (y-or-n-p
  6359. (format "Delete entry with %d lines in buffer \"%s\"? "
  6360. n (buffer-name buffer))))
  6361. (error "Abort"))
  6362. (org-remove-subtree-entries-from-agenda buffer dbeg dend)
  6363. (with-current-buffer buffer (delete-region dbeg dend))
  6364. (message "Agenda item and source killed"))))
  6365. (defvar org-archive-default-command)
  6366. (defun org-agenda-archive-default ()
  6367. "Archive the entry or subtree belonging to the current agenda entry."
  6368. (interactive)
  6369. (require 'org-archive)
  6370. (org-agenda-archive-with org-archive-default-command))
  6371. (defun org-agenda-archive-default-with-confirmation ()
  6372. "Archive the entry or subtree belonging to the current agenda entry."
  6373. (interactive)
  6374. (require 'org-archive)
  6375. (org-agenda-archive-with org-archive-default-command 'confirm))
  6376. (defun org-agenda-archive ()
  6377. "Archive the entry or subtree belonging to the current agenda entry."
  6378. (interactive)
  6379. (org-agenda-archive-with 'org-archive-subtree))
  6380. (defun org-agenda-archive-to-archive-sibling ()
  6381. "Move the entry to the archive sibling."
  6382. (interactive)
  6383. (org-agenda-archive-with 'org-archive-to-archive-sibling))
  6384. (defun org-agenda-archive-with (cmd &optional confirm)
  6385. "Move the entry to the archive sibling."
  6386. (interactive)
  6387. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  6388. (let* ((marker (or (org-get-at-bol 'org-marker)
  6389. (org-agenda-error)))
  6390. (buffer (marker-buffer marker))
  6391. (pos (marker-position marker)))
  6392. (org-with-remote-undo buffer
  6393. (with-current-buffer buffer
  6394. (if (org-mode-p)
  6395. (if (and confirm
  6396. (not (y-or-n-p "Archive this subtree or entry? ")))
  6397. (error "Abort")
  6398. (save-excursion
  6399. (goto-char pos)
  6400. (org-remove-subtree-entries-from-agenda)
  6401. (org-back-to-heading t)
  6402. (funcall cmd)))
  6403. (error "Archiving works only in Org-mode files"))))))
  6404. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  6405. "Remove all lines in the agenda that correspond to a given subtree.
  6406. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  6407. If this information is not given, the function uses the tree at point."
  6408. (let ((buf (or buf (current-buffer))) m p)
  6409. (save-excursion
  6410. (unless (and beg end)
  6411. (org-back-to-heading t)
  6412. (setq beg (point))
  6413. (org-end-of-subtree t)
  6414. (setq end (point)))
  6415. (set-buffer (get-buffer org-agenda-buffer-name))
  6416. (save-excursion
  6417. (goto-char (point-max))
  6418. (beginning-of-line 1)
  6419. (while (not (bobp))
  6420. (when (and (setq m (org-get-at-bol 'org-marker))
  6421. (equal buf (marker-buffer m))
  6422. (setq p (marker-position m))
  6423. (>= p beg)
  6424. (< p end))
  6425. (let ((inhibit-read-only t))
  6426. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  6427. (beginning-of-line 0))))))
  6428. (defun org-agenda-refile (&optional goto rfloc no-update)
  6429. "Refile the item at point."
  6430. (interactive "P")
  6431. (if (equal goto '(16))
  6432. (org-refile-goto-last-stored)
  6433. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  6434. (org-agenda-error)))
  6435. (buffer (marker-buffer marker))
  6436. (pos (marker-position marker))
  6437. (rfloc (or rfloc
  6438. (org-refile-get-location
  6439. (if goto "Goto" "Refile to") buffer
  6440. org-refile-allow-creating-parent-nodes))))
  6441. (with-current-buffer buffer
  6442. (save-excursion
  6443. (save-restriction
  6444. (widen)
  6445. (goto-char marker)
  6446. (org-remove-subtree-entries-from-agenda)
  6447. (org-refile goto buffer rfloc)))))
  6448. (unless no-update (org-agenda-redo))))
  6449. (defun org-agenda-open-link (&optional arg)
  6450. "Follow the link in the current line, if any.
  6451. This looks for a link in the displayed line in the agenda. It also looks
  6452. at the text of the entry itself."
  6453. (interactive "P")
  6454. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  6455. (org-get-at-bol 'org-marker)))
  6456. (buffer (and marker (marker-buffer marker)))
  6457. (prefix (buffer-substring
  6458. (point-at-bol) (point-at-eol))))
  6459. (cond
  6460. (buffer
  6461. (with-current-buffer buffer
  6462. (save-excursion
  6463. (save-restriction
  6464. (widen)
  6465. (goto-char marker)
  6466. (org-offer-links-in-entry arg prefix)))))
  6467. ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
  6468. (save-excursion
  6469. (beginning-of-line 1)
  6470. (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
  6471. (org-open-link-from-string (match-string 1)))
  6472. (t (error "No link to open here")))))
  6473. (defun org-agenda-copy-local-variable (var)
  6474. "Get a variable from a referenced buffer and install it here."
  6475. (let ((m (org-get-at-bol 'org-marker)))
  6476. (when (and m (buffer-live-p (marker-buffer m)))
  6477. (org-set-local var (with-current-buffer (marker-buffer m)
  6478. (symbol-value var))))))
  6479. (defun org-agenda-switch-to (&optional delete-other-windows)
  6480. "Go to the Org-mode file which contains the item at point."
  6481. (interactive)
  6482. (if (and org-return-follows-link
  6483. (not (org-get-at-bol 'org-marker))
  6484. (org-in-regexp org-bracket-link-regexp))
  6485. (org-open-link-from-string (match-string 0))
  6486. (let* ((marker (or (org-get-at-bol 'org-marker)
  6487. (org-agenda-error)))
  6488. (buffer (marker-buffer marker))
  6489. (pos (marker-position marker)))
  6490. (org-pop-to-buffer-same-window buffer)
  6491. (and delete-other-windows (delete-other-windows))
  6492. (widen)
  6493. (goto-char pos)
  6494. (when (org-mode-p)
  6495. (org-show-context 'agenda)
  6496. (save-excursion
  6497. (and (outline-next-heading)
  6498. (org-flag-heading nil))) ; show the next heading
  6499. (when (outline-invisible-p)
  6500. (show-entry)))))) ; display invisible text
  6501. (defun org-agenda-goto-mouse (ev)
  6502. "Go to the Org-mode file which contains the item at the mouse click."
  6503. (interactive "e")
  6504. (mouse-set-point ev)
  6505. (org-agenda-goto))
  6506. (defun org-agenda-show (&optional full-entry)
  6507. "Display the Org-mode file which contains the item at point.
  6508. With prefix argument FULL-ENTRY, make the entire entry visible
  6509. if it was hidden in the outline."
  6510. (interactive "P")
  6511. (let ((win (selected-window)))
  6512. (if full-entry
  6513. (let ((org-show-entry-below t))
  6514. (org-agenda-goto t))
  6515. (org-agenda-goto t))
  6516. (select-window win)))
  6517. (defvar org-agenda-show-window nil)
  6518. (defun org-agenda-show-and-scroll-up ()
  6519. "Display the Org-mode file which contains the item at point.
  6520. When called repeatedly, scroll the window that is displaying the buffer."
  6521. (interactive)
  6522. (let ((win (selected-window)))
  6523. (if (and (window-live-p org-agenda-show-window)
  6524. (eq this-command last-command))
  6525. (progn
  6526. (select-window org-agenda-show-window)
  6527. (ignore-errors (scroll-up)))
  6528. (org-agenda-goto t)
  6529. (show-subtree)
  6530. (setq org-agenda-show-window (selected-window)))
  6531. (select-window win)))
  6532. (defun org-agenda-show-scroll-down ()
  6533. "Scroll down the window showing the agenda."
  6534. (interactive)
  6535. (let ((win (selected-window)))
  6536. (when (window-live-p org-agenda-show-window)
  6537. (select-window org-agenda-show-window)
  6538. (ignore-errors (scroll-down))
  6539. (select-window win))))
  6540. (defun org-agenda-show-1 (&optional more)
  6541. "Display the Org-mode file which contains the item at point.
  6542. The prefix arg selects the amount of information to display:
  6543. 0 hide the subtree
  6544. 1 just show the entry according to defaults.
  6545. 2 show the children view
  6546. 3 show the subtree view
  6547. 4 show the entire subtree and any LOGBOOK drawers
  6548. 5 show the entire subtree and any drawers
  6549. With prefix argument FULL-ENTRY, make the entire entry visible
  6550. if it was hidden in the outline."
  6551. (interactive "p")
  6552. (let ((win (selected-window)))
  6553. (org-agenda-goto t)
  6554. (org-recenter-heading 1)
  6555. (cond
  6556. ((= more 0)
  6557. (hide-subtree)
  6558. (save-excursion
  6559. (org-back-to-heading)
  6560. (run-hook-with-args 'org-cycle-hook 'folded))
  6561. (message "Remote: FOLDED"))
  6562. ((and (org-called-interactively-p 'any) (= more 1))
  6563. (message "Remote: show with default settings"))
  6564. ((= more 2)
  6565. (show-entry)
  6566. (show-children)
  6567. (save-excursion
  6568. (org-back-to-heading)
  6569. (run-hook-with-args 'org-cycle-hook 'children))
  6570. (message "Remote: CHILDREN"))
  6571. ((= more 3)
  6572. (show-subtree)
  6573. (save-excursion
  6574. (org-back-to-heading)
  6575. (run-hook-with-args 'org-cycle-hook 'subtree))
  6576. (message "Remote: SUBTREE"))
  6577. ((= more 4)
  6578. (let* ((org-drawers (delete "LOGBOOK" (copy-sequence org-drawers)))
  6579. (org-drawer-regexp
  6580. (concat "^[ \t]*:\\("
  6581. (mapconcat 'regexp-quote org-drawers "\\|")
  6582. "\\):[ \t]*$")))
  6583. (show-subtree)
  6584. (save-excursion
  6585. (org-back-to-heading)
  6586. (org-cycle-hide-drawers 'subtree)))
  6587. (message "Remote: SUBTREE AND LOGBOOK"))
  6588. ((> more 4)
  6589. (show-subtree)
  6590. (message "Remote: SUBTREE AND ALL DRAWERS")))
  6591. (select-window win)))
  6592. (defun org-recenter-heading (n)
  6593. (save-excursion
  6594. (org-back-to-heading)
  6595. (recenter n)))
  6596. (defvar org-agenda-cycle-counter nil)
  6597. (defun org-agenda-cycle-show (&optional n)
  6598. "Show the current entry in another window, with default settings.
  6599. Default settings are taken from `org-show-hierarchy-above' and siblings.
  6600. When use repeatedly in immediate succession, the remote entry will cycle
  6601. through visibility
  6602. children -> subtree -> folded
  6603. When called with a numeric prefix arg, that arg will be passed through to
  6604. `org-agenda-show-1'. For the interpretation of that argument, see the
  6605. docstring of `org-agenda-show-1'."
  6606. (interactive "P")
  6607. (if (integerp n)
  6608. (setq org-agenda-cycle-counter n)
  6609. (if (not (eq last-command this-command))
  6610. (setq org-agenda-cycle-counter 1)
  6611. (if (equal org-agenda-cycle-counter 0)
  6612. (setq org-agenda-cycle-counter 2)
  6613. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  6614. (if (> org-agenda-cycle-counter 3)
  6615. (setq org-agenda-cycle-counter 0)))))
  6616. (org-agenda-show-1 org-agenda-cycle-counter))
  6617. (defun org-agenda-recenter (arg)
  6618. "Display the Org-mode file which contains the item at point and recenter."
  6619. (interactive "P")
  6620. (let ((win (selected-window)))
  6621. (org-agenda-goto t)
  6622. (recenter arg)
  6623. (select-window win)))
  6624. (defun org-agenda-show-mouse (ev)
  6625. "Display the Org-mode file which contains the item at the mouse click."
  6626. (interactive "e")
  6627. (mouse-set-point ev)
  6628. (org-agenda-show))
  6629. (defun org-agenda-check-no-diary ()
  6630. "Check if the entry is a diary link and abort if yes."
  6631. (if (org-get-at-bol 'org-agenda-diary-link)
  6632. (org-agenda-error)))
  6633. (defun org-agenda-error ()
  6634. (error "Command not allowed in this line"))
  6635. (defun org-agenda-tree-to-indirect-buffer ()
  6636. "Show the subtree corresponding to the current entry in an indirect buffer.
  6637. This calls the command `org-tree-to-indirect-buffer' from the original
  6638. Org-mode buffer.
  6639. With numerical prefix arg ARG, go up to this level and then take that tree.
  6640. With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
  6641. use the dedicated frame)."
  6642. (interactive)
  6643. (org-agenda-check-no-diary)
  6644. (let* ((marker (or (org-get-at-bol 'org-marker)
  6645. (org-agenda-error)))
  6646. (buffer (marker-buffer marker))
  6647. (pos (marker-position marker)))
  6648. (with-current-buffer buffer
  6649. (save-excursion
  6650. (goto-char pos)
  6651. (call-interactively 'org-tree-to-indirect-buffer)))))
  6652. (defvar org-last-heading-marker (make-marker)
  6653. "Marker pointing to the headline that last changed its TODO state
  6654. by a remote command from the agenda.")
  6655. (defun org-agenda-todo-nextset ()
  6656. "Switch TODO entry to next sequence."
  6657. (interactive)
  6658. (org-agenda-todo 'nextset))
  6659. (defun org-agenda-todo-previousset ()
  6660. "Switch TODO entry to previous sequence."
  6661. (interactive)
  6662. (org-agenda-todo 'previousset))
  6663. (defun org-agenda-todo (&optional arg)
  6664. "Cycle TODO state of line at point, also in Org-mode file.
  6665. This changes the line at point, all other lines in the agenda referring to
  6666. the same tree node, and the headline of the tree node in the Org-mode file."
  6667. (interactive "P")
  6668. (org-agenda-check-no-diary)
  6669. (let* ((col (current-column))
  6670. (marker (or (org-get-at-bol 'org-marker)
  6671. (org-agenda-error)))
  6672. (buffer (marker-buffer marker))
  6673. (pos (marker-position marker))
  6674. (hdmarker (org-get-at-bol 'org-hd-marker))
  6675. (todayp (org-agenda-todayp (org-get-at-bol 'day)))
  6676. (inhibit-read-only t)
  6677. org-agenda-headline-snapshot-before-repeat newhead just-one)
  6678. (org-with-remote-undo buffer
  6679. (with-current-buffer buffer
  6680. (widen)
  6681. (goto-char pos)
  6682. (org-show-context 'agenda)
  6683. (save-excursion
  6684. (and (outline-next-heading)
  6685. (org-flag-heading nil))) ; show the next heading
  6686. (let ((current-prefix-arg arg))
  6687. (call-interactively 'org-todo))
  6688. (and (bolp) (forward-char 1))
  6689. (setq newhead (org-get-heading))
  6690. (when (and (org-bound-and-true-p
  6691. org-agenda-headline-snapshot-before-repeat)
  6692. (not (equal org-agenda-headline-snapshot-before-repeat
  6693. newhead))
  6694. todayp)
  6695. (setq newhead org-agenda-headline-snapshot-before-repeat
  6696. just-one t))
  6697. (save-excursion
  6698. (org-back-to-heading)
  6699. (move-marker org-last-heading-marker (point))))
  6700. (beginning-of-line 1)
  6701. (save-excursion
  6702. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  6703. (org-move-to-column col))))
  6704. (defun org-agenda-add-note (&optional arg)
  6705. "Add a time-stamped note to the entry at point."
  6706. (interactive "P")
  6707. (org-agenda-check-no-diary)
  6708. (let* ((marker (or (org-get-at-bol 'org-marker)
  6709. (org-agenda-error)))
  6710. (buffer (marker-buffer marker))
  6711. (pos (marker-position marker))
  6712. (hdmarker (org-get-at-bol 'org-hd-marker))
  6713. (inhibit-read-only t))
  6714. (with-current-buffer buffer
  6715. (widen)
  6716. (goto-char pos)
  6717. (org-show-context 'agenda)
  6718. (save-excursion
  6719. (and (outline-next-heading)
  6720. (org-flag-heading nil))) ; show the next heading
  6721. (org-add-note))))
  6722. (defun org-agenda-change-all-lines (newhead hdmarker
  6723. &optional fixface just-this)
  6724. "Change all lines in the agenda buffer which match HDMARKER.
  6725. The new content of the line will be NEWHEAD (as modified by
  6726. `org-format-agenda-item'). HDMARKER is checked with
  6727. `equal' against all `org-hd-marker' text properties in the file.
  6728. If FIXFACE is non-nil, the face of each item is modified according to
  6729. the new TODO state.
  6730. If JUST-THIS is non-nil, change just the current line, not all.
  6731. If FORCE-TAGS is non nil, the car of it returns the new tags."
  6732. (let* ((inhibit-read-only t)
  6733. (line (org-current-line))
  6734. (thetags (with-current-buffer (marker-buffer hdmarker)
  6735. (save-excursion (save-restriction (widen)
  6736. (goto-char hdmarker)
  6737. (org-get-tags-at)))))
  6738. props m pl undone-face done-face finish new dotime cat tags)
  6739. (save-excursion
  6740. (goto-char (point-max))
  6741. (beginning-of-line 1)
  6742. (while (not finish)
  6743. (setq finish (bobp))
  6744. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  6745. (or (not just-this) (= (org-current-line) line))
  6746. (equal m hdmarker))
  6747. (setq props (text-properties-at (point))
  6748. dotime (org-get-at-bol 'dotime)
  6749. cat (org-get-at-bol 'org-category)
  6750. tags thetags
  6751. new
  6752. (let ((org-prefix-format-compiled
  6753. (or (get-text-property (point) 'format)
  6754. org-prefix-format-compiled)))
  6755. (with-current-buffer (marker-buffer hdmarker)
  6756. (save-excursion
  6757. (save-restriction
  6758. (widen)
  6759. (org-format-agenda-item (org-get-at-bol 'extra)
  6760. newhead cat tags dotime)))))
  6761. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  6762. undone-face (org-get-at-bol 'undone-face)
  6763. done-face (org-get-at-bol 'done-face))
  6764. (beginning-of-line 1)
  6765. (cond
  6766. ((equal new "")
  6767. (and (looking-at ".*\n?") (replace-match "")))
  6768. ((looking-at ".*")
  6769. (replace-match new t t)
  6770. (beginning-of-line 1)
  6771. (add-text-properties (point-at-bol) (point-at-eol) props)
  6772. (when fixface
  6773. (add-text-properties
  6774. (point-at-bol) (point-at-eol)
  6775. (list 'face
  6776. (if org-last-todo-state-is-todo
  6777. undone-face done-face))))
  6778. (org-agenda-highlight-todo 'line)
  6779. (beginning-of-line 1))
  6780. (t (error "Line update did not work"))))
  6781. (beginning-of-line 0)))
  6782. (org-finalize-agenda)))
  6783. (defun org-agenda-align-tags (&optional line)
  6784. "Align all tags in agenda items to `org-agenda-tags-column'."
  6785. (let ((inhibit-read-only t) l c)
  6786. (save-excursion
  6787. (goto-char (if line (point-at-bol) (point-min)))
  6788. (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  6789. (if line (point-at-eol) nil) t)
  6790. (add-text-properties
  6791. (match-beginning 2) (match-end 2)
  6792. (list 'face (delq nil (let ((prop (get-text-property
  6793. (match-beginning 2) 'face)))
  6794. (or (listp prop) (setq prop (list prop)))
  6795. (if (memq 'org-tag prop)
  6796. prop
  6797. (cons 'org-tag prop))))))
  6798. (setq l (- (match-end 2) (match-beginning 2))
  6799. c (if (< org-agenda-tags-column 0)
  6800. (- (abs org-agenda-tags-column) l)
  6801. org-agenda-tags-column))
  6802. (delete-region (match-beginning 1) (match-end 1))
  6803. (goto-char (match-beginning 1))
  6804. (insert (org-add-props
  6805. (make-string (max 1 (- c (current-column))) ?\ )
  6806. (plist-put (copy-sequence (text-properties-at (point)))
  6807. 'face nil))))
  6808. (goto-char (point-min))
  6809. (org-font-lock-add-tag-faces (point-max)))))
  6810. (defun org-agenda-priority-up ()
  6811. "Increase the priority of line at point, also in Org-mode file."
  6812. (interactive)
  6813. (org-agenda-priority 'up))
  6814. (defun org-agenda-priority-down ()
  6815. "Decrease the priority of line at point, also in Org-mode file."
  6816. (interactive)
  6817. (org-agenda-priority 'down))
  6818. (defun org-agenda-priority (&optional force-direction)
  6819. "Set the priority of line at point, also in Org-mode file.
  6820. This changes the line at point, all other lines in the agenda referring to
  6821. the same tree node, and the headline of the tree node in the Org-mode file."
  6822. (interactive)
  6823. (unless org-enable-priority-commands
  6824. (error "Priority commands are disabled"))
  6825. (org-agenda-check-no-diary)
  6826. (let* ((marker (or (org-get-at-bol 'org-marker)
  6827. (org-agenda-error)))
  6828. (hdmarker (org-get-at-bol 'org-hd-marker))
  6829. (buffer (marker-buffer hdmarker))
  6830. (pos (marker-position hdmarker))
  6831. (inhibit-read-only t)
  6832. newhead)
  6833. (org-with-remote-undo buffer
  6834. (with-current-buffer buffer
  6835. (widen)
  6836. (goto-char pos)
  6837. (org-show-context 'agenda)
  6838. (save-excursion
  6839. (and (outline-next-heading)
  6840. (org-flag-heading nil))) ; show the next heading
  6841. (funcall 'org-priority force-direction)
  6842. (end-of-line 1)
  6843. (setq newhead (org-get-heading)))
  6844. (org-agenda-change-all-lines newhead hdmarker)
  6845. (beginning-of-line 1))))
  6846. ;; FIXME: should fix the tags property of the agenda line.
  6847. (defun org-agenda-set-tags (&optional tag onoff)
  6848. "Set tags for the current headline."
  6849. (interactive)
  6850. (org-agenda-check-no-diary)
  6851. (if (and (org-region-active-p) (org-called-interactively-p 'any))
  6852. (call-interactively 'org-change-tag-in-region)
  6853. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  6854. (org-agenda-error)))
  6855. (buffer (marker-buffer hdmarker))
  6856. (pos (marker-position hdmarker))
  6857. (inhibit-read-only t)
  6858. newhead)
  6859. (org-with-remote-undo buffer
  6860. (with-current-buffer buffer
  6861. (widen)
  6862. (goto-char pos)
  6863. (save-excursion
  6864. (org-show-context 'agenda))
  6865. (save-excursion
  6866. (and (outline-next-heading)
  6867. (org-flag-heading nil))) ; show the next heading
  6868. (goto-char pos)
  6869. (if tag
  6870. (org-toggle-tag tag onoff)
  6871. (call-interactively 'org-set-tags))
  6872. (end-of-line 1)
  6873. (setq newhead (org-get-heading)))
  6874. (org-agenda-change-all-lines newhead hdmarker)
  6875. (beginning-of-line 1)))))
  6876. (defun org-agenda-set-property ()
  6877. "Set a property for the current headline."
  6878. (interactive)
  6879. (org-agenda-check-no-diary)
  6880. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  6881. (org-agenda-error)))
  6882. (buffer (marker-buffer hdmarker))
  6883. (pos (marker-position hdmarker))
  6884. (inhibit-read-only t)
  6885. newhead)
  6886. (org-with-remote-undo buffer
  6887. (with-current-buffer buffer
  6888. (widen)
  6889. (goto-char pos)
  6890. (save-excursion
  6891. (org-show-context 'agenda))
  6892. (save-excursion
  6893. (and (outline-next-heading)
  6894. (org-flag-heading nil))) ; show the next heading
  6895. (goto-char pos)
  6896. (call-interactively 'org-set-property)))))
  6897. (defun org-agenda-set-effort ()
  6898. "Set the effort property for the current headline."
  6899. (interactive)
  6900. (org-agenda-check-no-diary)
  6901. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  6902. (org-agenda-error)))
  6903. (buffer (marker-buffer hdmarker))
  6904. (pos (marker-position hdmarker))
  6905. (inhibit-read-only t)
  6906. newhead)
  6907. (org-with-remote-undo buffer
  6908. (with-current-buffer buffer
  6909. (widen)
  6910. (goto-char pos)
  6911. (save-excursion
  6912. (org-show-context 'agenda))
  6913. (save-excursion
  6914. (and (outline-next-heading)
  6915. (org-flag-heading nil))) ; show the next heading
  6916. (goto-char pos)
  6917. (call-interactively 'org-set-effort)
  6918. (end-of-line 1)
  6919. (setq newhead (org-get-heading)))
  6920. (org-agenda-change-all-lines newhead hdmarker))))
  6921. (defun org-agenda-toggle-archive-tag ()
  6922. "Toggle the archive tag for the current entry."
  6923. (interactive)
  6924. (org-agenda-check-no-diary)
  6925. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  6926. (org-agenda-error)))
  6927. (buffer (marker-buffer hdmarker))
  6928. (pos (marker-position hdmarker))
  6929. (inhibit-read-only t)
  6930. newhead)
  6931. (org-with-remote-undo buffer
  6932. (with-current-buffer buffer
  6933. (widen)
  6934. (goto-char pos)
  6935. (org-show-context 'agenda)
  6936. (save-excursion
  6937. (and (outline-next-heading)
  6938. (org-flag-heading nil))) ; show the next heading
  6939. (call-interactively 'org-toggle-archive-tag)
  6940. (end-of-line 1)
  6941. (setq newhead (org-get-heading)))
  6942. (org-agenda-change-all-lines newhead hdmarker)
  6943. (beginning-of-line 1))))
  6944. (defun org-agenda-do-date-later (arg)
  6945. (interactive "P")
  6946. (cond
  6947. ((or (equal arg '(16))
  6948. (memq last-command
  6949. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  6950. (setq this-command 'org-agenda-date-later-minutes)
  6951. (org-agenda-date-later-minutes 1))
  6952. ((or (equal arg '(4))
  6953. (memq last-command
  6954. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  6955. (setq this-command 'org-agenda-date-later-hours)
  6956. (org-agenda-date-later-hours 1))
  6957. (t
  6958. (org-agenda-date-later (prefix-numeric-value arg)))))
  6959. (defun org-agenda-do-date-earlier (arg)
  6960. (interactive "P")
  6961. (cond
  6962. ((or (equal arg '(16))
  6963. (memq last-command
  6964. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  6965. (setq this-command 'org-agenda-date-earlier-minutes)
  6966. (org-agenda-date-earlier-minutes 1))
  6967. ((or (equal arg '(4))
  6968. (memq last-command
  6969. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  6970. (setq this-command 'org-agenda-date-earlier-hours)
  6971. (org-agenda-date-earlier-hours 1))
  6972. (t
  6973. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  6974. (defun org-agenda-date-later (arg &optional what)
  6975. "Change the date of this item to ARG day(s) later."
  6976. (interactive "p")
  6977. (org-agenda-check-type t 'agenda 'timeline)
  6978. (org-agenda-check-no-diary)
  6979. (let* ((marker (or (org-get-at-bol 'org-marker)
  6980. (org-agenda-error)))
  6981. (buffer (marker-buffer marker))
  6982. (pos (marker-position marker)))
  6983. (org-with-remote-undo buffer
  6984. (with-current-buffer buffer
  6985. (widen)
  6986. (goto-char pos)
  6987. (if (not (org-at-timestamp-p))
  6988. (error "Cannot find time stamp"))
  6989. (org-timestamp-change arg (or what 'day)))
  6990. (org-agenda-show-new-time marker org-last-changed-timestamp))
  6991. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  6992. (defun org-agenda-date-earlier (arg &optional what)
  6993. "Change the date of this item to ARG day(s) earlier."
  6994. (interactive "p")
  6995. (org-agenda-date-later (- arg) what))
  6996. (defun org-agenda-date-later-minutes (arg)
  6997. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  6998. (interactive "p")
  6999. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  7000. (org-agenda-date-later arg 'minute))
  7001. (defun org-agenda-date-earlier-minutes (arg)
  7002. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  7003. (interactive "p")
  7004. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  7005. (org-agenda-date-earlier arg 'minute))
  7006. (defun org-agenda-date-later-hours (arg)
  7007. "Change the time of this item, in hour steps."
  7008. (interactive "p")
  7009. (org-agenda-date-later arg 'hour))
  7010. (defun org-agenda-date-earlier-hours (arg)
  7011. "Change the time of this item, in hour steps."
  7012. (interactive "p")
  7013. (org-agenda-date-earlier arg 'hour))
  7014. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  7015. "Show new date stamp via text properties."
  7016. ;; We use text properties to make this undoable
  7017. (let ((inhibit-read-only t)
  7018. (buffer-invisibility-spec))
  7019. (setq stamp (concat " " prefix " => " stamp))
  7020. (save-excursion
  7021. (goto-char (point-max))
  7022. (while (not (bobp))
  7023. (when (equal marker (org-get-at-bol 'org-marker))
  7024. (org-move-to-column (- (window-width) (length stamp)) t)
  7025. (org-agenda-fix-tags-filter-overlays-at (point))
  7026. (if (featurep 'xemacs)
  7027. ;; Use `duplicable' property to trigger undo recording
  7028. (let ((ex (make-extent nil nil))
  7029. (gl (make-glyph stamp)))
  7030. (set-glyph-face gl 'secondary-selection)
  7031. (set-extent-properties
  7032. ex (list 'invisible t 'end-glyph gl 'duplicable t))
  7033. (insert-extent ex (1- (point)) (point-at-eol)))
  7034. (add-text-properties
  7035. (1- (point)) (point-at-eol)
  7036. (list 'display (org-add-props stamp nil
  7037. 'face 'secondary-selection))))
  7038. (beginning-of-line 1))
  7039. (beginning-of-line 0)))))
  7040. (defun org-agenda-date-prompt (arg)
  7041. "Change the date of this item. Date is prompted for, with default today.
  7042. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  7043. be used to request time specification in the time stamp."
  7044. (interactive "P")
  7045. (org-agenda-check-type t 'agenda 'timeline)
  7046. (org-agenda-check-no-diary)
  7047. (let* ((marker (or (org-get-at-bol 'org-marker)
  7048. (org-agenda-error)))
  7049. (buffer (marker-buffer marker))
  7050. (pos (marker-position marker)))
  7051. (org-with-remote-undo buffer
  7052. (with-current-buffer buffer
  7053. (widen)
  7054. (goto-char pos)
  7055. (if (not (org-at-timestamp-p t))
  7056. (error "Cannot find time stamp"))
  7057. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  7058. (org-agenda-show-new-time marker org-last-changed-timestamp))
  7059. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  7060. (defun org-agenda-schedule (arg &optional time)
  7061. "Schedule the item at point.
  7062. ARG is passed through to `org-schedule'."
  7063. (interactive "P")
  7064. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  7065. (org-agenda-check-no-diary)
  7066. (let* ((marker (or (org-get-at-bol 'org-marker)
  7067. (org-agenda-error)))
  7068. (type (marker-insertion-type marker))
  7069. (buffer (marker-buffer marker))
  7070. (pos (marker-position marker))
  7071. (org-insert-labeled-timestamps-at-point nil)
  7072. ts)
  7073. (set-marker-insertion-type marker t)
  7074. (org-with-remote-undo buffer
  7075. (with-current-buffer buffer
  7076. (widen)
  7077. (goto-char pos)
  7078. (setq ts (org-schedule arg time)))
  7079. (org-agenda-show-new-time marker ts "S"))
  7080. (message "Item scheduled for %s" ts)))
  7081. (defun org-agenda-deadline (arg &optional time)
  7082. "Schedule the item at point.
  7083. ARG is passed through to `org-deadline'."
  7084. (interactive "P")
  7085. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  7086. (org-agenda-check-no-diary)
  7087. (let* ((marker (or (org-get-at-bol 'org-marker)
  7088. (org-agenda-error)))
  7089. (buffer (marker-buffer marker))
  7090. (pos (marker-position marker))
  7091. (org-insert-labeled-timestamps-at-point nil)
  7092. ts)
  7093. (org-with-remote-undo buffer
  7094. (with-current-buffer buffer
  7095. (widen)
  7096. (goto-char pos)
  7097. (setq ts (org-deadline arg time)))
  7098. (org-agenda-show-new-time marker ts "D"))
  7099. (message "Deadline for this item set to %s" ts)))
  7100. (defun org-agenda-action ()
  7101. "Select entry for agenda action, or execute an agenda action.
  7102. This command prompts for another letter. Valid inputs are:
  7103. m Mark the entry at point for an agenda action
  7104. s Schedule the marked entry to the date at the cursor
  7105. d Set the deadline of the marked entry to the date at the cursor
  7106. r Call `org-remember' with cursor date as the default date
  7107. c Call `org-capture' with cursor date as the default date
  7108. SPC Show marked entry in other window
  7109. TAB Visit marked entry in other window
  7110. The cursor may be at a date in the calendar, or in the Org agenda."
  7111. (interactive)
  7112. (let (ans)
  7113. (message "Select action: [m]ark | [s]chedule [d]eadline [r]emember [c]apture [ ]show")
  7114. (setq ans (read-char-exclusive))
  7115. (cond
  7116. ((equal ans ?m)
  7117. ;; Mark this entry
  7118. (if (eq major-mode 'org-agenda-mode)
  7119. (let ((m (or (org-get-at-bol 'org-hd-marker)
  7120. (org-get-at-bol 'org-marker))))
  7121. (if m
  7122. (progn
  7123. (move-marker org-agenda-action-marker
  7124. (marker-position m) (marker-buffer m))
  7125. (message "Entry marked for action; press `k' at desired date in agenda or calendar"))
  7126. (error "Don't know which entry to mark")))
  7127. (error "This command works only in the agenda")))
  7128. ((equal ans ?s)
  7129. (org-agenda-do-action '(org-schedule nil org-overriding-default-time)))
  7130. ((equal ans ?d)
  7131. (org-agenda-do-action '(org-deadline nil org-overriding-default-time)))
  7132. ((equal ans ?r)
  7133. (org-agenda-do-action '(org-remember) t))
  7134. ((equal ans ?c)
  7135. (org-agenda-do-action '(org-capture) t))
  7136. ((equal ans ?\ )
  7137. (let ((cw (selected-window)))
  7138. (org-switch-to-buffer-other-window
  7139. (marker-buffer org-agenda-action-marker))
  7140. (goto-char org-agenda-action-marker)
  7141. (org-show-context 'agenda)
  7142. (select-window cw)))
  7143. ((equal ans ?\C-i)
  7144. (org-switch-to-buffer-other-window
  7145. (marker-buffer org-agenda-action-marker))
  7146. (goto-char org-agenda-action-marker)
  7147. (org-show-context 'agenda))
  7148. (t (error "Invalid agenda action %c" ans)))))
  7149. (defun org-agenda-do-action (form &optional current-buffer)
  7150. "Evaluate FORM at the entry pointed to by `org-agenda-action-marker'."
  7151. (let ((org-overriding-default-time (org-get-cursor-date)))
  7152. (if current-buffer
  7153. (eval form)
  7154. (if (not (marker-buffer org-agenda-action-marker))
  7155. (error "No entry has been selected for agenda action")
  7156. (with-current-buffer (marker-buffer org-agenda-action-marker)
  7157. (save-excursion
  7158. (save-restriction
  7159. (widen)
  7160. (goto-char org-agenda-action-marker)
  7161. (eval form))))))))
  7162. (defun org-agenda-clock-in (&optional arg)
  7163. "Start the clock on the currently selected item."
  7164. (interactive "P")
  7165. (org-agenda-check-no-diary)
  7166. (if (equal arg '(4))
  7167. (org-clock-in arg)
  7168. (let* ((marker (or (org-get-at-bol 'org-marker)
  7169. (org-agenda-error)))
  7170. (hdmarker (or (org-get-at-bol 'org-hd-marker)
  7171. marker))
  7172. (pos (marker-position marker))
  7173. newhead)
  7174. (org-with-remote-undo (marker-buffer marker)
  7175. (with-current-buffer (marker-buffer marker)
  7176. (widen)
  7177. (goto-char pos)
  7178. (org-show-context 'agenda)
  7179. (org-show-entry)
  7180. (org-cycle-hide-drawers 'children)
  7181. (org-clock-in arg)
  7182. (setq newhead (org-get-heading)))
  7183. (org-agenda-change-all-lines newhead hdmarker)))))
  7184. (defun org-agenda-clock-out ()
  7185. "Stop the currently running clock."
  7186. (interactive)
  7187. (unless (marker-buffer org-clock-marker)
  7188. (error "No running clock"))
  7189. (let ((marker (make-marker)) newhead)
  7190. (org-with-remote-undo (marker-buffer org-clock-marker)
  7191. (with-current-buffer (marker-buffer org-clock-marker)
  7192. (save-excursion
  7193. (save-restriction
  7194. (widen)
  7195. (goto-char org-clock-marker)
  7196. (org-back-to-heading t)
  7197. (move-marker marker (point))
  7198. (org-clock-out)
  7199. (setq newhead (org-get-heading))))))
  7200. (org-agenda-change-all-lines newhead marker)
  7201. (move-marker marker nil)))
  7202. (defun org-agenda-clock-cancel (&optional arg)
  7203. "Cancel the currently running clock."
  7204. (interactive "P")
  7205. (unless (marker-buffer org-clock-marker)
  7206. (error "No running clock"))
  7207. (org-with-remote-undo (marker-buffer org-clock-marker)
  7208. (org-clock-cancel)))
  7209. (defun org-agenda-clock-goto ()
  7210. "Jump to the currently clocked in task within the agenda.
  7211. If the currently clocked in task is not listed in the agenda
  7212. buffer, display it in another window."
  7213. (interactive)
  7214. (let (pos)
  7215. (mapc (lambda (o)
  7216. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  7217. (setq pos (overlay-start o))))
  7218. (overlays-in (point-min) (point-max)))
  7219. (cond (pos (goto-char pos))
  7220. ;; If the currently clocked entry is not in the agenda
  7221. ;; buffer, we visit it in another window:
  7222. (org-clock-current-task
  7223. (org-switch-to-buffer-other-window (org-clock-goto)))
  7224. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  7225. (defun org-agenda-diary-entry-in-org-file ()
  7226. "Make a diary entry in the file `org-agenda-diary-file'."
  7227. (let (d1 d2 char (text "") dp1 dp2)
  7228. (if (equal (buffer-name) "*Calendar*")
  7229. (setq d1 (calendar-cursor-to-date t)
  7230. d2 (car calendar-mark-ring))
  7231. (setq dp1 (get-text-property (point-at-bol) 'day))
  7232. (unless dp1 (error "No date defined in current line"))
  7233. (setq d1 (calendar-gregorian-from-absolute dp1)
  7234. d2 (and (ignore-errors (mark))
  7235. (save-excursion
  7236. (goto-char (mark))
  7237. (setq dp2 (get-text-property (point-at-bol) 'day)))
  7238. (calendar-gregorian-from-absolute dp2))))
  7239. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  7240. (setq char (read-char-exclusive))
  7241. (cond
  7242. ((equal char ?d)
  7243. (setq text (read-string "Day entry: "))
  7244. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  7245. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  7246. ((equal char ?a)
  7247. (setq d1 (list (car d1) (nth 1 d1)
  7248. (read-number (format "Reference year [%d]: " (nth 2 d1))
  7249. (nth 2 d1))))
  7250. (setq text (read-string "Anniversary (use %d to show years): "))
  7251. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  7252. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  7253. ((equal char ?b)
  7254. (setq text (read-string "Block entry: "))
  7255. (unless (and d1 d2 (not (equal d1 d2)))
  7256. (error "No block of days selected"))
  7257. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  7258. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  7259. ((equal char ?j)
  7260. (org-switch-to-buffer-other-window
  7261. (find-file-noselect org-agenda-diary-file))
  7262. (require 'org-datetree)
  7263. (org-datetree-find-date-create d1)
  7264. (org-reveal t))
  7265. (t (error "Invalid selection character `%c'" char)))))
  7266. (defcustom org-agenda-insert-diary-strategy 'date-tree
  7267. "Where in `org-agenda-diary-file' should new entries be added?
  7268. Valid values:
  7269. date-tree in the date tree, as child of the date
  7270. top-level as top-level entries at the end of the file."
  7271. :group 'org-agenda
  7272. :type '(choice
  7273. (const :tag "in a date tree" date-tree)
  7274. (const :tag "as top level at end of file" top-level)))
  7275. (defcustom org-agenda-insert-diary-extract-time nil
  7276. "Non-nil means extract any time specification from the diary entry."
  7277. :group 'org-agenda
  7278. :type 'boolean)
  7279. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  7280. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  7281. If TEXT is not empty, it will become the headline of the new entry, and
  7282. the resulting entry will not be shown. When TEXT is empty, switch to
  7283. `org-agenda-diary-file' and let the user finish the entry there."
  7284. (let ((cw (current-window-configuration)))
  7285. (org-switch-to-buffer-other-window
  7286. (find-file-noselect org-agenda-diary-file))
  7287. (widen)
  7288. (goto-char (point-min))
  7289. (cond
  7290. ((eq type 'anniversary)
  7291. (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
  7292. (progn
  7293. (or (org-on-heading-p t)
  7294. (progn
  7295. (outline-next-heading)
  7296. (insert "* Anniversaries\n\n")
  7297. (beginning-of-line -1)))))
  7298. (outline-next-heading)
  7299. (org-back-over-empty-lines)
  7300. (backward-char 1)
  7301. (insert "\n")
  7302. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  7303. (nth 2 d1) (car d1) (nth 1 d1) text)))
  7304. ((eq type 'day)
  7305. (let ((org-prefix-has-time t)
  7306. (org-agenda-time-leading-zero t)
  7307. fmt time time2)
  7308. (if org-agenda-insert-diary-extract-time
  7309. ;; Use org-format-agenda-item to parse text for a time-range and
  7310. ;; remove it. FIXME: This is a hack, we should refactor
  7311. ;; that function to make time extraction available separately
  7312. (setq fmt (org-format-agenda-item nil text nil nil t)
  7313. time (get-text-property 0 'time fmt)
  7314. time2 (if (> (length time) 0)
  7315. ;; split-string removes trailing ...... if
  7316. ;; no end time given. First space
  7317. ;; separates time from date.
  7318. (concat " " (car (split-string time "\\.")))
  7319. nil)
  7320. text (get-text-property 0 'txt fmt)))
  7321. (if (eq org-agenda-insert-diary-strategy 'top-level)
  7322. (org-agenda-insert-diary-as-top-level text)
  7323. (require 'org-datetree)
  7324. (org-datetree-find-date-create d1)
  7325. (org-agenda-insert-diary-make-new-entry text))
  7326. (org-insert-time-stamp (org-time-from-absolute
  7327. (calendar-absolute-from-gregorian d1))
  7328. nil nil nil nil time2))
  7329. (end-of-line 0))
  7330. ((eq type 'block)
  7331. (if (> (calendar-absolute-from-gregorian d1)
  7332. (calendar-absolute-from-gregorian d2))
  7333. (setq d1 (prog1 d2 (setq d2 d1))))
  7334. (if (eq org-agenda-insert-diary-strategy 'top-level)
  7335. (org-agenda-insert-diary-as-top-level text)
  7336. (require 'org-datetree)
  7337. (org-datetree-find-date-create d1)
  7338. (org-agenda-insert-diary-make-new-entry text))
  7339. (org-insert-time-stamp (org-time-from-absolute
  7340. (calendar-absolute-from-gregorian d1)))
  7341. (insert "--")
  7342. (org-insert-time-stamp (org-time-from-absolute
  7343. (calendar-absolute-from-gregorian d2)))
  7344. (end-of-line 0)))
  7345. (if (string-match "\\S-" text)
  7346. (progn
  7347. (set-window-configuration cw)
  7348. (message "%s entry added to %s"
  7349. (capitalize (symbol-name type))
  7350. (abbreviate-file-name org-agenda-diary-file)))
  7351. (org-reveal t)
  7352. (message "Please finish entry here"))))
  7353. (defun org-agenda-insert-diary-as-top-level (text)
  7354. "Make new entry as a top-level entry at the end of the file.
  7355. Add TEXT as headline, and position the cursor in the second line so that
  7356. a timestamp can be added there."
  7357. (widen)
  7358. (goto-char (point-max))
  7359. (or (bolp) (insert "\n"))
  7360. (insert "* " text "\n")
  7361. (if org-adapt-indentation (org-indent-to-column 2)))
  7362. (defun org-agenda-insert-diary-make-new-entry (text)
  7363. "Make new entry as last child of current entry.
  7364. Add TEXT as headline, and position the cursor in the second line so that
  7365. a timestamp can be added there."
  7366. (let ((org-show-following-heading t)
  7367. (org-show-siblings t)
  7368. (org-show-hierarchy-above t)
  7369. (org-show-entry-below t)
  7370. col)
  7371. (outline-next-heading)
  7372. (org-back-over-empty-lines)
  7373. (or (looking-at "[ \t]*$")
  7374. (progn (insert "\n") (backward-char 1)))
  7375. (org-insert-heading nil t)
  7376. (org-do-demote)
  7377. (setq col (current-column))
  7378. (insert text "\n")
  7379. (if org-adapt-indentation (org-indent-to-column col))
  7380. (let ((org-show-following-heading t)
  7381. (org-show-siblings t)
  7382. (org-show-hierarchy-above t)
  7383. (org-show-entry-below t))
  7384. (org-show-context))))
  7385. (defun org-agenda-diary-entry ()
  7386. "Make a diary entry, like the `i' command from the calendar.
  7387. All the standard commands work: block, weekly etc.
  7388. When `org-agenda-diary-file' points to a file,
  7389. `org-agenda-diary-entry-in-org-file' is called instead to create
  7390. entries in that Org-mode file."
  7391. (interactive)
  7392. (org-agenda-check-type t 'agenda 'timeline)
  7393. (if (not (eq org-agenda-diary-file 'diary-file))
  7394. (org-agenda-diary-entry-in-org-file)
  7395. (require 'diary-lib)
  7396. (let* ((char (progn
  7397. (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
  7398. (read-char-exclusive)))
  7399. (cmd (cdr (assoc char
  7400. '((?d . insert-diary-entry)
  7401. (?w . insert-weekly-diary-entry)
  7402. (?m . insert-monthly-diary-entry)
  7403. (?y . insert-yearly-diary-entry)
  7404. (?a . insert-anniversary-diary-entry)
  7405. (?b . insert-block-diary-entry)
  7406. (?c . insert-cyclic-diary-entry)))))
  7407. (oldf (symbol-function 'calendar-cursor-to-date))
  7408. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  7409. (point (point))
  7410. (mark (or (mark t) (point))))
  7411. (unless cmd
  7412. (error "No command associated with <%c>" char))
  7413. (unless (and (get-text-property point 'day)
  7414. (or (not (equal ?b char))
  7415. (get-text-property mark 'day)))
  7416. (error "Don't know which date to use for diary entry"))
  7417. ;; We implement this by hacking the `calendar-cursor-to-date' function
  7418. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  7419. (let ((calendar-mark-ring
  7420. (list (calendar-gregorian-from-absolute
  7421. (or (get-text-property mark 'day)
  7422. (get-text-property point 'day))))))
  7423. (unwind-protect
  7424. (progn
  7425. (fset 'calendar-cursor-to-date
  7426. (lambda (&optional error dummy)
  7427. (calendar-gregorian-from-absolute
  7428. (get-text-property point 'day))))
  7429. (call-interactively cmd))
  7430. (fset 'calendar-cursor-to-date oldf))))))
  7431. (defun org-agenda-execute-calendar-command (cmd)
  7432. "Execute a calendar command from the agenda, with the date associated to
  7433. the cursor position."
  7434. (org-agenda-check-type t 'agenda 'timeline)
  7435. (require 'diary-lib)
  7436. (unless (get-text-property (point) 'day)
  7437. (error "Don't know which date to use for calendar command"))
  7438. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  7439. (point (point))
  7440. (date (calendar-gregorian-from-absolute
  7441. (get-text-property point 'day)))
  7442. ;; the following 2 vars are needed in the calendar
  7443. (displayed-month (car date))
  7444. (displayed-year (nth 2 date)))
  7445. (unwind-protect
  7446. (progn
  7447. (fset 'calendar-cursor-to-date
  7448. (lambda (&optional error dummy)
  7449. (calendar-gregorian-from-absolute
  7450. (get-text-property point 'day))))
  7451. (call-interactively cmd))
  7452. (fset 'calendar-cursor-to-date oldf))))
  7453. (defun org-agenda-phases-of-moon ()
  7454. "Display the phases of the moon for the 3 months around the cursor date."
  7455. (interactive)
  7456. (org-agenda-execute-calendar-command 'calendar-phases-of-moon))
  7457. (defun org-agenda-holidays ()
  7458. "Display the holidays for the 3 months around the cursor date."
  7459. (interactive)
  7460. (org-agenda-execute-calendar-command 'list-calendar-holidays))
  7461. (defvar calendar-longitude)
  7462. (defvar calendar-latitude)
  7463. (defvar calendar-location-name)
  7464. (defun org-agenda-sunrise-sunset (arg)
  7465. "Display sunrise and sunset for the cursor date.
  7466. Latitude and longitude can be specified with the variables
  7467. `calendar-latitude' and `calendar-longitude'. When called with prefix
  7468. argument, latitude and longitude will be prompted for."
  7469. (interactive "P")
  7470. (require 'solar)
  7471. (let ((calendar-longitude (if arg nil calendar-longitude))
  7472. (calendar-latitude (if arg nil calendar-latitude))
  7473. (calendar-location-name
  7474. (if arg "the given coordinates" calendar-location-name)))
  7475. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  7476. (defun org-agenda-goto-calendar ()
  7477. "Open the Emacs calendar with the date at the cursor."
  7478. (interactive)
  7479. (org-agenda-check-type t 'agenda 'timeline)
  7480. (let* ((day (or (get-text-property (point) 'day)
  7481. (error "Don't know which date to open in calendar")))
  7482. (date (calendar-gregorian-from-absolute day))
  7483. (calendar-move-hook nil)
  7484. (calendar-view-holidays-initially-flag nil)
  7485. (calendar-view-diary-initially-flag nil))
  7486. (calendar)
  7487. (calendar-goto-date date)))
  7488. ;;;###autoload
  7489. (defun org-calendar-goto-agenda ()
  7490. "Compute the Org-mode agenda for the calendar date displayed at the cursor.
  7491. This is a command that has to be installed in `calendar-mode-map'."
  7492. (interactive)
  7493. (org-agenda-list nil (calendar-absolute-from-gregorian
  7494. (calendar-cursor-to-date))
  7495. nil))
  7496. (defun org-agenda-convert-date ()
  7497. (interactive)
  7498. (org-agenda-check-type t 'agenda 'timeline)
  7499. (let ((day (get-text-property (point) 'day))
  7500. date s)
  7501. (unless day
  7502. (error "Don't know which date to convert"))
  7503. (setq date (calendar-gregorian-from-absolute day))
  7504. (setq s (concat
  7505. "Gregorian: " (calendar-date-string date) "\n"
  7506. "ISO: " (calendar-iso-date-string date) "\n"
  7507. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  7508. "Julian: " (calendar-julian-date-string date) "\n"
  7509. "Astron. JD: " (calendar-astro-date-string date)
  7510. " (Julian date number at noon UTC)\n"
  7511. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  7512. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  7513. "French: " (calendar-french-date-string date) "\n"
  7514. "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
  7515. "Mayan: " (calendar-mayan-date-string date) "\n"
  7516. "Coptic: " (calendar-coptic-date-string date) "\n"
  7517. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  7518. "Persian: " (calendar-persian-date-string date) "\n"
  7519. "Chinese: " (calendar-chinese-date-string date) "\n"))
  7520. (with-output-to-temp-buffer "*Dates*"
  7521. (princ s))
  7522. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  7523. ;;; Bulk commands
  7524. (defvar org-agenda-bulk-marked-entries nil
  7525. "List of markers that refer to marked entries in the agenda.")
  7526. (defun org-agenda-bulk-marked-p ()
  7527. (eq (get-char-property (point-at-bol) 'type)
  7528. 'org-marked-entry-overlay))
  7529. (defun org-agenda-bulk-mark (&optional arg)
  7530. "Mark the entry at point for future bulk action."
  7531. (interactive "p")
  7532. (dotimes (i (max arg 1))
  7533. (unless (org-get-at-bol 'org-agenda-diary-link)
  7534. (let* ((m (org-get-at-bol 'org-hd-marker))
  7535. ov)
  7536. (unless (org-agenda-bulk-marked-p)
  7537. (unless m (error "Nothing to mark at point"))
  7538. (push m org-agenda-bulk-marked-entries)
  7539. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  7540. (org-overlay-display ov "> "
  7541. (org-get-todo-face "TODO")
  7542. 'evaporate)
  7543. (overlay-put ov 'type 'org-marked-entry-overlay))
  7544. (beginning-of-line 2)
  7545. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  7546. (beginning-of-line 2))
  7547. (message "%d entries marked for bulk action"
  7548. (length org-agenda-bulk-marked-entries))))))
  7549. (defun org-agenda-bulk-mark-regexp (regexp)
  7550. "Mark entries match REGEXP."
  7551. (interactive "sMark entries matching regexp: ")
  7552. (let (entries-marked)
  7553. (save-excursion
  7554. (goto-char (point-min))
  7555. (goto-char (next-single-property-change (point) 'txt))
  7556. (while (re-search-forward regexp nil t)
  7557. (when (string-match regexp (get-text-property (point) 'txt))
  7558. (setq entries-marked (+ entries-marked 1))
  7559. (call-interactively 'org-agenda-bulk-mark))))
  7560. (if (not entries-marked)
  7561. (message "No entry matching this regexp."))))
  7562. (defun org-agenda-bulk-unmark ()
  7563. "Unmark the entry at point for future bulk action."
  7564. (interactive)
  7565. (when (org-agenda-bulk-marked-p)
  7566. (org-agenda-bulk-remove-overlays
  7567. (point-at-bol) (+ 2 (point-at-bol)))
  7568. (setq org-agenda-bulk-marked-entries
  7569. (delete (org-get-at-bol 'org-hd-marker)
  7570. org-agenda-bulk-marked-entries)))
  7571. (beginning-of-line 2)
  7572. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  7573. (beginning-of-line 2))
  7574. (message "%d entries marked for bulk action"
  7575. (length org-agenda-bulk-marked-entries)))
  7576. (defun org-agenda-bulk-toggle ()
  7577. "Toggle marking the entry at point for bulk action."
  7578. (interactive)
  7579. (if (org-agenda-bulk-marked-p)
  7580. (org-agenda-bulk-unmark)
  7581. (org-agenda-bulk-mark)))
  7582. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  7583. "Remove the mark overlays between BEG and END in the agenda buffer.
  7584. BEG and END default to the buffer limits.
  7585. This only removes the overlays, it does not remove the markers
  7586. from the list in `org-agenda-bulk-marked-entries'."
  7587. (interactive)
  7588. (mapc (lambda (ov)
  7589. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  7590. (delete-overlay ov)))
  7591. (overlays-in (or beg (point-min)) (or end (point-max)))))
  7592. (defun org-agenda-bulk-remove-all-marks ()
  7593. "Remove all marks in the agenda buffer.
  7594. This will remove the markers, and the overlays."
  7595. (interactive)
  7596. (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
  7597. (setq org-agenda-bulk-marked-entries nil)
  7598. (org-agenda-bulk-remove-overlays (point-min) (point-max)))
  7599. (defun org-agenda-bulk-action (&optional arg)
  7600. "Execute an remote-editing action on all marked entries.
  7601. The prefix arg is passed through to the command if possible."
  7602. (interactive "P")
  7603. ;; Make sure we have markers, and only valid ones
  7604. (unless org-agenda-bulk-marked-entries (error "No entries are marked"))
  7605. (mapc
  7606. (lambda (m)
  7607. (unless (and (markerp m)
  7608. (marker-buffer m)
  7609. (buffer-live-p (marker-buffer m))
  7610. (marker-position m))
  7611. (error "Marker %s for bulk command is invalid" m)))
  7612. org-agenda-bulk-marked-entries)
  7613. ;; Prompt for the bulk command
  7614. (message (concat "Bulk: [r]efile [$]arch [A]rch->sib [t]odo"
  7615. " [+/-]tag [s]chd [S]catter [d]eadline [f]unction"
  7616. (when org-agenda-bulk-custom-functions
  7617. (concat " Custom: ["
  7618. (mapconcat (lambda(f) (char-to-string (car f)))
  7619. org-agenda-bulk-custom-functions "")
  7620. "]"))))
  7621. (let* ((action (read-char-exclusive))
  7622. (org-log-refile (if org-log-refile 'time nil))
  7623. (entries (reverse org-agenda-bulk-marked-entries))
  7624. redo-at-end
  7625. cmd rfloc state e tag pos (cnt 0) (cntskip 0))
  7626. (cond
  7627. ((equal action ?$)
  7628. (setq cmd '(org-agenda-archive)))
  7629. ((equal action ?A)
  7630. (setq cmd '(org-agenda-archive-to-archive-sibling)))
  7631. ((member action '(?r ?w))
  7632. (setq rfloc (org-refile-get-location
  7633. "Refile to"
  7634. (marker-buffer (car org-agenda-bulk-marked-entries))
  7635. org-refile-allow-creating-parent-nodes))
  7636. (if (nth 3 rfloc)
  7637. (setcar (nthcdr 3 rfloc)
  7638. (move-marker (make-marker) (nth 3 rfloc)
  7639. (or (get-file-buffer (nth 1 rfloc))
  7640. (find-buffer-visiting (nth 1 rfloc))
  7641. (error "This should not happen")))))
  7642. (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
  7643. redo-at-end t))
  7644. ((equal action ?t)
  7645. (setq state (org-icompleting-read
  7646. "Todo state: "
  7647. (with-current-buffer (marker-buffer (car entries))
  7648. (mapcar 'list org-todo-keywords-1))))
  7649. (setq cmd `(let ((org-inhibit-blocking t)
  7650. (org-inhibit-logging 'note))
  7651. (org-agenda-todo ,state))))
  7652. ((memq action '(?- ?+))
  7653. (setq tag (org-icompleting-read
  7654. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  7655. (with-current-buffer (marker-buffer (car entries))
  7656. (delq nil
  7657. (mapcar (lambda (x)
  7658. (if (stringp (car x)) x)) org-tag-alist)))))
  7659. (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
  7660. ((memq action '(?s ?d))
  7661. (let* ((date (unless arg
  7662. (org-read-date
  7663. nil nil nil
  7664. (if (eq action ?s) "(Re)Schedule to" "Set Deadline to"))))
  7665. (ans (if arg nil org-read-date-final-answer))
  7666. (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
  7667. (setq cmd `(let* ((bound (fboundp 'read-string))
  7668. (old (and bound (symbol-function 'read-string))))
  7669. (unwind-protect
  7670. (progn
  7671. (fset 'read-string (lambda (&rest ignore) ,ans))
  7672. (eval '(,c1 arg)))
  7673. (if bound
  7674. (fset 'read-string old)
  7675. (fmakunbound 'read-string)))))))
  7676. ((equal action ?S)
  7677. (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
  7678. (error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
  7679. (let ((days (read-number
  7680. (format "Scatter tasks across how many %sdays: "
  7681. (if arg "week" "")) 7)))
  7682. (setq cmd
  7683. `(let ((distance (1+ (random ,days))))
  7684. (if arg
  7685. (let ((dist distance)
  7686. (day-of-week
  7687. (calendar-day-of-week
  7688. (calendar-gregorian-from-absolute (org-today)))))
  7689. (dotimes (i (1+ dist))
  7690. (while (member day-of-week org-agenda-weekend-days)
  7691. (incf distance)
  7692. (incf day-of-week)
  7693. (if (= day-of-week 7)
  7694. (setq day-of-week 0)))
  7695. (incf day-of-week)
  7696. (if (= day-of-week 7)
  7697. (setq day-of-week 0)))))
  7698. ;; silently fail when try to replan a sexp entry
  7699. (condition-case nil
  7700. (let* ((date (calendar-gregorian-from-absolute
  7701. (+ (org-today) distance)))
  7702. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  7703. (nth 2 date))))
  7704. (org-agenda-schedule nil time))
  7705. (error nil)))))))
  7706. ((assoc action org-agenda-bulk-custom-functions)
  7707. (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
  7708. redo-at-end t))
  7709. ((equal action ?f)
  7710. (setq cmd (list (intern
  7711. (org-icompleting-read "Function: "
  7712. obarray 'fboundp t nil nil)))))
  7713. (t (error "Invalid bulk action")))
  7714. ;; Sort the markers, to make sure that parents are handled before children
  7715. (setq entries (sort entries
  7716. (lambda (a b)
  7717. (cond
  7718. ((equal (marker-buffer a) (marker-buffer b))
  7719. (< (marker-position a) (marker-position b)))
  7720. (t
  7721. (string< (buffer-name (marker-buffer a))
  7722. (buffer-name (marker-buffer b))))))))
  7723. ;; Now loop over all markers and apply cmd
  7724. (while (setq e (pop entries))
  7725. (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
  7726. (if (not pos)
  7727. (progn (message "Skipping removed entry at %s" e)
  7728. (setq cntskip (1+ cntskip)))
  7729. (goto-char pos)
  7730. (eval cmd)
  7731. (setq org-agenda-bulk-marked-entries
  7732. (delete e org-agenda-bulk-marked-entries))
  7733. (setq cnt (1+ cnt))))
  7734. (setq org-agenda-bulk-marked-entries nil)
  7735. (org-agenda-bulk-remove-all-marks)
  7736. (when redo-at-end (org-agenda-redo))
  7737. (message "Acted on %d entries%s"
  7738. cnt
  7739. (if (= cntskip 0)
  7740. ""
  7741. (format ", skipped %d (disappeared before their turn)"
  7742. cntskip)))))
  7743. ;;; Flagging notes
  7744. (defun org-agenda-show-the-flagging-note ()
  7745. "Display the flagging note in the other window.
  7746. When called a second time in direct sequence, offer to remove the FLAGGING
  7747. tag and (if present) the flagging note."
  7748. (interactive)
  7749. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  7750. (win (selected-window))
  7751. note heading newhead)
  7752. (unless hdmarker
  7753. (error "No linked entry at point"))
  7754. (if (and (eq this-command last-command)
  7755. (y-or-n-p "Unflag and remove any flagging note? "))
  7756. (progn
  7757. (org-agenda-remove-flag hdmarker)
  7758. (let ((win (get-buffer-window "*Flagging Note*")))
  7759. (and win (delete-window win)))
  7760. (message "Entry unflaged"))
  7761. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  7762. (unless note
  7763. (error "No flagging note"))
  7764. (org-kill-new note)
  7765. (org-switch-to-buffer-other-window "*Flagging Note*")
  7766. (erase-buffer)
  7767. (insert note)
  7768. (goto-char (point-min))
  7769. (while (re-search-forward "\\\\n" nil t)
  7770. (replace-match "\n" t t))
  7771. (goto-char (point-min))
  7772. (select-window win)
  7773. (message "Flagging note pushed to kill ring. Press [?] again to remove tag and note"))))
  7774. (defun org-agenda-remove-flag (marker)
  7775. "Remove the FLAGGED tag and any flagging note in the entry."
  7776. (let (newhead)
  7777. (org-with-point-at marker
  7778. (org-toggle-tag "FLAGGED" 'off)
  7779. (org-entry-delete nil "THEFLAGGINGNOTE")
  7780. (setq newhead (org-get-heading)))
  7781. (org-agenda-change-all-lines newhead marker)
  7782. (message "Entry unflaged")))
  7783. (defun org-agenda-get-any-marker (&optional pos)
  7784. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  7785. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  7786. ;;; Appointment reminders
  7787. (defvar appt-time-msg-list)
  7788. ;;;###autoload
  7789. (defun org-agenda-to-appt (&optional refresh filter)
  7790. "Activate appointments found in `org-agenda-files'.
  7791. With a \\[universal-argument] prefix, refresh the list of
  7792. appointments.
  7793. If FILTER is t, interactively prompt the user for a regular
  7794. expression, and filter out entries that don't match it.
  7795. If FILTER is a string, use this string as a regular expression
  7796. for filtering entries out.
  7797. FILTER can also be an alist with the car of each cell being
  7798. either 'headline or 'category. For example:
  7799. '((headline \"IMPORTANT\")
  7800. (category \"Work\"))
  7801. will only add headlines containing IMPORTANT or headlines
  7802. belonging to the \"Work\" category."
  7803. (interactive "P")
  7804. (if refresh (setq appt-time-msg-list nil))
  7805. (if (eq filter t)
  7806. (setq filter (read-from-minibuffer "Regexp filter: ")))
  7807. (let* ((cnt 0) ; count added events
  7808. (org-agenda-new-buffers nil)
  7809. (org-deadline-warning-days 0)
  7810. ;; Do not use `org-today' here because appt only takes
  7811. ;; time and without date as argument, so it may pass wrong
  7812. ;; information otherwise
  7813. (today (org-date-to-gregorian
  7814. (time-to-days (current-time))))
  7815. (org-agenda-restrict nil)
  7816. (files (org-agenda-files 'unrestricted)) entries file)
  7817. ;; Get all entries which may contain an appt
  7818. (org-prepare-agenda-buffers files)
  7819. (while (setq file (pop files))
  7820. (setq entries
  7821. (append entries
  7822. (org-agenda-get-day-entries
  7823. file today :timestamp :scheduled :deadline))))
  7824. (setq entries (delq nil entries))
  7825. ;; Map thru entries and find if we should filter them out
  7826. (mapc
  7827. (lambda(x)
  7828. (let* ((evt (org-trim (or (get-text-property 1 'txt x) "")))
  7829. (cat (get-text-property 1 'org-category x))
  7830. (tod (get-text-property 1 'time-of-day x))
  7831. (ok (or (null filter)
  7832. (and (stringp filter) (string-match filter evt))
  7833. (and (listp filter)
  7834. (or (string-match
  7835. (cadr (assoc 'category filter)) cat)
  7836. (string-match
  7837. (cadr (assoc 'headline filter)) evt))))))
  7838. ;; FIXME: Shall we remove text-properties for the appt text?
  7839. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  7840. (when (and ok tod)
  7841. (setq tod (concat "00" (number-to-string tod))
  7842. tod (when (string-match
  7843. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  7844. (concat (match-string 1 tod) ":"
  7845. (match-string 2 tod))))
  7846. (appt-add tod evt)
  7847. (setq cnt (1+ cnt))))) entries)
  7848. (org-release-buffers org-agenda-new-buffers)
  7849. (if (eq cnt 0)
  7850. (message "No event to add")
  7851. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  7852. (defun org-agenda-todayp (date)
  7853. "Does DATE mean today, when considering `org-extend-today-until'?"
  7854. (let ((today (org-today))
  7855. (date (if (and date (listp date)) (calendar-absolute-from-gregorian date)
  7856. date)))
  7857. (eq date today)))
  7858. (defun org-agenda-todo-yesterday (&optional arg)
  7859. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday"
  7860. (interactive "P")
  7861. (let* ((hour (third (decode-time
  7862. (org-current-time))))
  7863. (org-extend-today-until (1+ hour)))
  7864. (org-agenda-todo arg)))
  7865. (provide 'org-agenda)
  7866. ;;; org-agenda.el ends here