org-agenda.el 386 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2013 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. ;;
  7. ;; This file is part of GNU Emacs.
  8. ;;
  9. ;; GNU Emacs is free software: you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation, either version 3 of the License, or
  12. ;; (at your option) any later version.
  13. ;; GNU Emacs is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  19. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  20. ;;
  21. ;;; Commentary:
  22. ;; This file contains the code for creating and using the Agenda for Org-mode.
  23. ;;
  24. ;; The functions `org-batch-agenda', `org-batch-agenda-csv', and
  25. ;; `org-batch-store-agenda-views' are implemented as macros to provide
  26. ;; a convenient way for extracting agenda information from the command
  27. ;; line. The Lisp does not evaluate parameters of a macro call; thus
  28. ;; it is not necessary to quote the parameters passed to one of those
  29. ;; functions. E.g. you can write:
  30. ;;
  31. ;; emacs -batch -l ~/.emacs -eval '(org-batch-agenda "a" org-agenda-span 7)'
  32. ;;
  33. ;; To export an agenda spanning 7 days. If `org-batch-agenda' would
  34. ;; have been implemented as a regular function you'd have to quote the
  35. ;; symbol org-agenda-span. Moreover: To use a symbol as parameter
  36. ;; value you would have to double quote the symbol.
  37. ;;
  38. ;; This is a hack, but it works even when running Org byte-compiled.
  39. ;;
  40. ;;; Code:
  41. (require 'org)
  42. (require 'org-macs)
  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 calendar-check-holidays "holidays" (date))
  63. (declare-function org-datetree-find-date-create "org-datetree"
  64. (date &optional keep-restriction))
  65. (declare-function org-columns-quit "org-colview" ())
  66. (declare-function diary-date-display-form "diary-lib" (&optional type))
  67. (declare-function org-mobile-write-agenda-for-mobile "org-mobile" (file))
  68. (declare-function org-habit-insert-consistency-graphs
  69. "org-habit" (&optional line))
  70. (declare-function org-is-habit-p "org-habit" (&optional pom))
  71. (declare-function org-habit-parse-todo "org-habit" (&optional pom))
  72. (declare-function org-habit-get-priority "org-habit" (habit &optional moment))
  73. (declare-function org-pop-to-buffer-same-window "org-compat"
  74. (&optional buffer-or-name norecord label))
  75. (declare-function org-agenda-columns "org-colview" ())
  76. (declare-function org-add-archive-files "org-archive" (files))
  77. (declare-function org-capture "org-capture" (&optional goto keys))
  78. (defvar calendar-mode-map) ; defined in calendar.el
  79. (defvar org-clock-current-task nil) ; defined in org-clock.el
  80. (defvar org-mobile-force-id-on-agenda-items) ; defined in org-mobile.el
  81. (defvar org-habit-show-habits) ; defined in org-habit.el
  82. (defvar org-habit-show-habits-only-for-today)
  83. (defvar org-habit-show-all-today)
  84. ;; Defined somewhere in this file, but used before definition.
  85. (defvar org-agenda-buffer-name "*Org Agenda*")
  86. (defvar org-agenda-overriding-header nil)
  87. (defvar org-agenda-title-append nil)
  88. (org-no-warnings (defvar entry)) ;; unprefixed, from calendar.el
  89. (org-no-warnings (defvar date)) ;; unprefixed, from calendar.el
  90. (defvar original-date) ; dynamically scoped, calendar.el does scope this
  91. (defvar org-agenda-undo-list nil
  92. "List of undoable operations in the agenda since last refresh.")
  93. (defvar org-agenda-pending-undo-list nil
  94. "In a series of undo commands, this is the list of remaining undo items.")
  95. (defcustom org-agenda-confirm-kill 1
  96. "When set, remote killing from the agenda buffer needs confirmation.
  97. When t, a confirmation is always needed. When a number N, confirmation is
  98. only needed when the text to be killed contains more than N non-white lines."
  99. :group 'org-agenda
  100. :type '(choice
  101. (const :tag "Never" nil)
  102. (const :tag "Always" t)
  103. (integer :tag "When more than N lines")))
  104. (defcustom org-agenda-compact-blocks nil
  105. "Non-nil means make the block agenda more compact.
  106. This is done globally by leaving out lines like the agenda span
  107. name and week number or the separator lines."
  108. :group 'org-agenda
  109. :type 'boolean)
  110. (defcustom org-agenda-block-separator ?=
  111. "The separator between blocks in the agenda.
  112. If this is a string, it will be used as the separator, with a newline added.
  113. If it is a character, it will be repeated to fill the window width.
  114. If nil the separator is disabled. In `org-agenda-custom-commands' this
  115. addresses the separator between the current and the previous block."
  116. :group 'org-agenda
  117. :type '(choice
  118. (const :tag "Disabled" nil)
  119. (character)
  120. (string)))
  121. (defgroup org-agenda-export nil
  122. "Options concerning exporting agenda views in Org-mode."
  123. :tag "Org Agenda Export"
  124. :group 'org-agenda)
  125. (defcustom org-agenda-with-colors t
  126. "Non-nil means use colors in agenda views."
  127. :group 'org-agenda-export
  128. :type 'boolean)
  129. (defcustom org-agenda-exporter-settings nil
  130. "Alist of variable/value pairs that should be active during agenda export.
  131. This is a good place to set options for ps-print and for htmlize.
  132. Note that the way this is implemented, the values will be evaluated
  133. before assigned to the variables. So make sure to quote values you do
  134. *not* want evaluated, for example
  135. (setq org-agenda-exporter-settings
  136. '((ps-print-color-p 'black-white)))"
  137. :group 'org-agenda-export
  138. :type '(repeat
  139. (list
  140. (variable)
  141. (sexp :tag "Value"))))
  142. (defcustom org-agenda-before-write-hook '(org-agenda-add-entry-text)
  143. "Hook run in a temporary buffer before writing the agenda to an export file.
  144. A useful function for this hook is `org-agenda-add-entry-text'."
  145. :group 'org-agenda-export
  146. :type 'hook
  147. :options '(org-agenda-add-entry-text))
  148. (defcustom org-agenda-add-entry-text-maxlines 0
  149. "Maximum number of entry text lines to be added to agenda.
  150. This is only relevant when `org-agenda-add-entry-text' is part of
  151. `org-agenda-before-write-hook', which is the default.
  152. When this is 0, nothing will happen. When it is greater than 0, it
  153. specifies the maximum number of lines that will be added for each entry
  154. that is listed in the agenda view.
  155. Note that this variable is not used during display, only when exporting
  156. the agenda. For agenda display, see the variables `org-agenda-entry-text-mode'
  157. and `org-agenda-entry-text-maxlines'."
  158. :group 'org-agenda
  159. :type 'integer)
  160. (defcustom org-agenda-add-entry-text-descriptive-links t
  161. "Non-nil means export org-links as descriptive links in agenda added text.
  162. This variable applies to the text added to the agenda when
  163. `org-agenda-add-entry-text-maxlines' is larger than 0.
  164. When this variable nil, the URL will (also) be shown."
  165. :group 'org-agenda
  166. :type 'boolean)
  167. (defcustom org-agenda-export-html-style nil
  168. "The style specification for exported HTML Agenda files.
  169. If this variable contains a string, it will replace the default <style>
  170. section as produced by `htmlize'.
  171. Since there are different ways of setting style information, this variable
  172. needs to contain the full HTML structure to provide a style, including the
  173. surrounding HTML tags. The style specifications should include definitions
  174. the fonts used by the agenda, here is an example:
  175. <style type=\"text/css\">
  176. p { font-weight: normal; color: gray; }
  177. .org-agenda-structure {
  178. font-size: 110%;
  179. color: #003399;
  180. font-weight: 600;
  181. }
  182. .org-todo {
  183. color: #cc6666;
  184. font-weight: bold;
  185. }
  186. .org-agenda-done {
  187. color: #339933;
  188. }
  189. .org-done {
  190. color: #339933;
  191. }
  192. .title { text-align: center; }
  193. .todo, .deadline { color: red; }
  194. .done { color: green; }
  195. </style>
  196. or, if you want to keep the style in a file,
  197. <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
  198. As the value of this option simply gets inserted into the HTML <head> header,
  199. you can \"misuse\" it to also add other text to the header."
  200. :group 'org-agenda-export
  201. :group 'org-export-html
  202. :type 'string)
  203. (defcustom org-agenda-persistent-filter nil
  204. "When set, keep filters from one agenda view to the next."
  205. :group 'org-agenda
  206. :type 'boolean)
  207. (defgroup org-agenda-custom-commands nil
  208. "Options concerning agenda views in Org-mode."
  209. :tag "Org Agenda Custom Commands"
  210. :group 'org-agenda)
  211. (defconst org-sorting-choice
  212. '(choice
  213. (const time-up) (const time-down)
  214. (const category-keep) (const category-up) (const category-down)
  215. (const tag-down) (const tag-up)
  216. (const priority-up) (const priority-down)
  217. (const todo-state-up) (const todo-state-down)
  218. (const effort-up) (const effort-down)
  219. (const habit-up) (const habit-down)
  220. (const alpha-up) (const alpha-down)
  221. (const user-defined-up) (const user-defined-down))
  222. "Sorting choices.")
  223. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  224. ;; the new variable `org-agenda-tag-filter-preset'.
  225. (if (fboundp 'defvaralias)
  226. (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  227. (defvaralias 'org-agenda-filter 'org-agenda-tag-filter))
  228. (defconst org-agenda-custom-commands-local-options
  229. `(repeat :tag "Local settings for this command. Remember to quote values"
  230. (choice :tag "Setting"
  231. (list :tag "Heading for this block"
  232. (const org-agenda-overriding-header)
  233. (string :tag "Headline"))
  234. (list :tag "Files to be searched"
  235. (const org-agenda-files)
  236. (list
  237. (const :format "" quote)
  238. (repeat (file))))
  239. (list :tag "Sorting strategy"
  240. (const org-agenda-sorting-strategy)
  241. (list
  242. (const :format "" quote)
  243. (repeat
  244. ,org-sorting-choice)))
  245. (list :tag "Prefix format"
  246. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  247. (string))
  248. (list :tag "Number of days in agenda"
  249. (const org-agenda-span)
  250. (choice (const :tag "Day" 'day)
  251. (const :tag "Week" 'week)
  252. (const :tag "Month" 'month)
  253. (const :tag "Year" 'year)
  254. (integer :tag "Custom")))
  255. (list :tag "Fixed starting date"
  256. (const org-agenda-start-day)
  257. (string :value "2007-11-01"))
  258. (list :tag "Start on day of week"
  259. (const org-agenda-start-on-weekday)
  260. (choice :value 1
  261. (const :tag "Today" nil)
  262. (integer :tag "Weekday No.")))
  263. (list :tag "Include data from diary"
  264. (const org-agenda-include-diary)
  265. (boolean))
  266. (list :tag "Deadline Warning days"
  267. (const org-deadline-warning-days)
  268. (integer :value 1))
  269. (list :tag "Category filter preset"
  270. (const org-agenda-category-filter-preset)
  271. (list
  272. (const :format "" quote)
  273. (repeat
  274. (string :tag "+category or -category"))))
  275. (list :tag "Tags filter preset"
  276. (const org-agenda-tag-filter-preset)
  277. (list
  278. (const :format "" quote)
  279. (repeat
  280. (string :tag "+tag or -tag"))))
  281. (list :tag "Set daily/weekly entry types"
  282. (const org-agenda-entry-types)
  283. (list
  284. (const :format "" quote)
  285. (set :greedy t :value (:deadline :scheduled :timestamp :sexp)
  286. (const :deadline)
  287. (const :scheduled)
  288. (const :timestamp)
  289. (const :sexp))))
  290. (list :tag "Standard skipping condition"
  291. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  292. (const org-agenda-skip-function)
  293. (list
  294. (const :format "" quote)
  295. (list
  296. (choice
  297. :tag "Skipping range"
  298. (const :tag "Skip entry" org-agenda-skip-entry-if)
  299. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  300. (repeat :inline t :tag "Conditions for skipping"
  301. (choice
  302. :tag "Condition type"
  303. (list :tag "Regexp matches" :inline t (const :format "" 'regexp) (regexp))
  304. (list :tag "Regexp does not match" :inline t (const :format "" 'notregexp) (regexp))
  305. (list :tag "TODO state is" :inline t
  306. (const 'todo)
  307. (choice
  308. (const :tag "any not-done state" 'todo)
  309. (const :tag "any done state" 'done)
  310. (const :tag "any state" 'any)
  311. (list :tag "Keyword list"
  312. (const :format "" quote)
  313. (repeat (string :tag "Keyword")))))
  314. (list :tag "TODO state is not" :inline t
  315. (const 'nottodo)
  316. (choice
  317. (const :tag "any not-done state" 'todo)
  318. (const :tag "any done state" 'done)
  319. (const :tag "any state" 'any)
  320. (list :tag "Keyword list"
  321. (const :format "" quote)
  322. (repeat (string :tag "Keyword")))))
  323. (const :tag "scheduled" 'scheduled)
  324. (const :tag "not scheduled" 'notscheduled)
  325. (const :tag "deadline" 'deadline)
  326. (const :tag "no deadline" 'notdeadline)
  327. (const :tag "timestamp" 'timestamp)
  328. (const :tag "no timestamp" 'nottimestamp))))))
  329. (list :tag "Non-standard skipping condition"
  330. :value (org-agenda-skip-function)
  331. (const org-agenda-skip-function)
  332. (sexp :tag "Function or form (quoted!)"))
  333. (list :tag "Any variable"
  334. (variable :tag "Variable")
  335. (sexp :tag "Value (sexp)"))))
  336. "Selection of examples for agenda command settings.
  337. This will be spliced into the custom type of
  338. `org-agenda-custom-commands'.")
  339. (defcustom org-agenda-custom-commands '(("n" "Agenda and all TODO's"
  340. ((agenda "") (alltodo))))
  341. "Custom commands for the agenda.
  342. These commands will be offered on the splash screen displayed by the
  343. agenda dispatcher \\[org-agenda]. Each entry is a list like this:
  344. (key desc type match settings files)
  345. key The key (one or more characters as a string) to be associated
  346. with the command.
  347. desc A description of the command, when omitted or nil, a default
  348. description is built using MATCH.
  349. type The command type, any of the following symbols:
  350. agenda The daily/weekly agenda.
  351. todo Entries with a specific TODO keyword, in all agenda files.
  352. search Entries containing search words entry or headline.
  353. tags Tags/Property/TODO match in all agenda files.
  354. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  355. todo-tree Sparse tree of specific TODO keyword in *current* file.
  356. tags-tree Sparse tree with all tags matches in *current* file.
  357. occur-tree Occur sparse tree for *current* file.
  358. ... A user-defined function.
  359. match What to search for:
  360. - a single keyword for TODO keyword searches
  361. - a tags match expression for tags searches
  362. - a word search expression for text searches.
  363. - a regular expression for occur searches
  364. For all other commands, this should be the empty string.
  365. settings A list of option settings, similar to that in a let form, so like
  366. this: ((opt1 val1) (opt2 val2) ...). The values will be
  367. evaluated at the moment of execution, so quote them when needed.
  368. files A list of files file to write the produced agenda buffer to
  369. with the command `org-store-agenda-views'.
  370. If a file name ends in \".html\", an HTML version of the buffer
  371. is written out. If it ends in \".ps\", a postscript version is
  372. produced. Otherwise, only the plain text is written to the file.
  373. You can also define a set of commands, to create a composite agenda buffer.
  374. In this case, an entry looks like this:
  375. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  376. where
  377. desc A description string to be displayed in the dispatcher menu.
  378. cmd An agenda command, similar to the above. However, tree commands
  379. are not allowed, but instead you can get agenda and global todo list.
  380. So valid commands for a set are:
  381. (agenda \"\" settings)
  382. (alltodo \"\" settings)
  383. (stuck \"\" settings)
  384. (todo \"match\" settings files)
  385. (search \"match\" settings files)
  386. (tags \"match\" settings files)
  387. (tags-todo \"match\" settings files)
  388. Each command can carry a list of options, and another set of options can be
  389. given for the whole set of commands. Individual command options take
  390. precedence over the general options.
  391. When using several characters as key to a command, the first characters
  392. are prefix commands. For the dispatcher to display useful information, you
  393. should provide a description for the prefix, like
  394. (setq org-agenda-custom-commands
  395. '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  396. (\"hl\" tags \"+HOME+Lisa\")
  397. (\"hp\" tags \"+HOME+Peter\")
  398. (\"hk\" tags \"+HOME+Kim\")))"
  399. :group 'org-agenda-custom-commands
  400. :type `(repeat
  401. (choice :value ("x" "Describe command here" tags "" nil)
  402. (list :tag "Single command"
  403. (string :tag "Access Key(s) ")
  404. (option (string :tag "Description"))
  405. (choice
  406. (const :tag "Agenda" agenda)
  407. (const :tag "TODO list" alltodo)
  408. (const :tag "Search words" search)
  409. (const :tag "Stuck projects" stuck)
  410. (const :tag "Tags/Property match (all agenda files)" tags)
  411. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  412. (const :tag "TODO keyword search (all agenda files)" todo)
  413. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  414. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  415. (const :tag "Occur tree (current buffer)" occur-tree)
  416. (sexp :tag "Other, user-defined function"))
  417. (string :tag "Match (only for some commands)")
  418. ,org-agenda-custom-commands-local-options
  419. (option (repeat :tag "Export" (file :tag "Export to"))))
  420. (list :tag "Command series, all agenda files"
  421. (string :tag "Access Key(s)")
  422. (string :tag "Description ")
  423. (repeat :tag "Component"
  424. (choice
  425. (list :tag "Agenda"
  426. (const :format "" agenda)
  427. (const :tag "" :format "" "")
  428. ,org-agenda-custom-commands-local-options)
  429. (list :tag "TODO list (all keywords)"
  430. (const :format "" alltodo)
  431. (const :tag "" :format "" "")
  432. ,org-agenda-custom-commands-local-options)
  433. (list :tag "Search words"
  434. (const :format "" search)
  435. (string :tag "Match")
  436. ,org-agenda-custom-commands-local-options)
  437. (list :tag "Stuck projects"
  438. (const :format "" stuck)
  439. (const :tag "" :format "" "")
  440. ,org-agenda-custom-commands-local-options)
  441. (list :tag "Tags search"
  442. (const :format "" tags)
  443. (string :tag "Match")
  444. ,org-agenda-custom-commands-local-options)
  445. (list :tag "Tags search, TODO entries only"
  446. (const :format "" tags-todo)
  447. (string :tag "Match")
  448. ,org-agenda-custom-commands-local-options)
  449. (list :tag "TODO keyword search"
  450. (const :format "" todo)
  451. (string :tag "Match")
  452. ,org-agenda-custom-commands-local-options)
  453. (list :tag "Other, user-defined function"
  454. (symbol :tag "function")
  455. (string :tag "Match")
  456. ,org-agenda-custom-commands-local-options)))
  457. (repeat :tag "Settings for entire command set"
  458. (list (variable :tag "Any variable")
  459. (sexp :tag "Value")))
  460. (option (repeat :tag "Export" (file :tag "Export to"))))
  461. (cons :tag "Prefix key documentation"
  462. (string :tag "Access Key(s)")
  463. (string :tag "Description ")))))
  464. (defcustom org-agenda-query-register ?o
  465. "The register holding the current query string.
  466. The purpose of this is that if you construct a query string interactively,
  467. you can then use it to define a custom command."
  468. :group 'org-agenda-custom-commands
  469. :type 'character)
  470. (defcustom org-stuck-projects
  471. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  472. "How to identify stuck projects.
  473. This is a list of four items:
  474. 1. A tags/todo/property matcher string that is used to identify a project.
  475. See the manual for a description of tag and property searches.
  476. The entire tree below a headline matched by this is considered one project.
  477. 2. A list of TODO keywords identifying non-stuck projects.
  478. If the project subtree contains any headline with one of these todo
  479. keywords, the project is considered to be not stuck. If you specify
  480. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  481. 3. A list of tags identifying non-stuck projects.
  482. If the project subtree contains any headline with one of these tags,
  483. the project is considered to be not stuck. If you specify \"*\" as
  484. a tag, any tag will mark the project unstuck. Note that this is about
  485. the explicit presence of a tag somewhere in the subtree, inherited
  486. tags do not count here. If inherited tags make a project not stuck,
  487. use \"-TAG\" in the tags part of the matcher under (1.) above.
  488. 4. An arbitrary regular expression matching non-stuck projects.
  489. If the project turns out to be not stuck, search continues also in the
  490. subtree to see if any of the subtasks have project status.
  491. See also the variable `org-tags-match-list-sublevels' which applies
  492. to projects matched by this search as well.
  493. After defining this variable, you may use \\[org-agenda-list-stuck-projects]
  494. or `C-c a #' to produce the list."
  495. :group 'org-agenda-custom-commands
  496. :type '(list
  497. (string :tag "Tags/TODO match to identify a project")
  498. (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
  499. (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
  500. (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
  501. (defcustom org-agenda-filter-effort-default-operator "<"
  502. "The default operator for effort estimate filtering.
  503. If you select an effort estimate limit without first pressing an operator,
  504. this one will be used."
  505. :group 'org-agenda-custom-commands
  506. :type '(choice (const :tag "less or equal" "<")
  507. (const :tag "greater or equal"">")
  508. (const :tag "equal" "=")))
  509. (defgroup org-agenda-skip nil
  510. "Options concerning skipping parts of agenda files."
  511. :tag "Org Agenda Skip"
  512. :group 'org-agenda)
  513. (defcustom org-agenda-skip-function-global nil
  514. "Function to be called at each match during agenda construction.
  515. If this function returns nil, the current match should not be skipped.
  516. If the function decided to skip an agenda match, is must return the
  517. buffer position from which the search should be continued.
  518. This may also be a Lisp form, which will be evaluated.
  519. This variable will be applied to every agenda match, including
  520. tags/property searches and TODO lists. So try to make the test function
  521. do its checking as efficiently as possible. To implement a skipping
  522. condition just for specific agenda commands, use the variable
  523. `org-agenda-skip-function' which can be set in the options section
  524. of custom agenda commands."
  525. :group 'org-agenda-skip
  526. :type 'sexp)
  527. (defgroup org-agenda-daily/weekly nil
  528. "Options concerning the daily/weekly agenda."
  529. :tag "Org Agenda Daily/Weekly"
  530. :group 'org-agenda)
  531. (defgroup org-agenda-todo-list nil
  532. "Options concerning the global todo list agenda view."
  533. :tag "Org Agenda Todo List"
  534. :group 'org-agenda)
  535. (defgroup org-agenda-match-view nil
  536. "Options concerning the general tags/property/todo match agenda view."
  537. :tag "Org Agenda Match View"
  538. :group 'org-agenda)
  539. (defgroup org-agenda-search-view nil
  540. "Options concerning the general tags/property/todo match agenda view."
  541. :tag "Org Agenda Match View"
  542. :group 'org-agenda)
  543. (defvar org-agenda-archives-mode nil
  544. "Non-nil means the agenda will include archived items.
  545. If this is the symbol `trees', trees in the selected agenda scope
  546. that are marked with the ARCHIVE tag will be included anyway. When this is
  547. t, also all archive files associated with the current selection of agenda
  548. files will be included.")
  549. (defcustom org-agenda-skip-comment-trees t
  550. "Non-nil means skip trees that start with the COMMENT keyword.
  551. When nil, these trees are also scanned by agenda commands."
  552. :group 'org-agenda-skip
  553. :type 'boolean)
  554. (defcustom org-agenda-todo-list-sublevels t
  555. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  556. When nil, the sublevels of a TODO entry are not checked, resulting in
  557. potentially much shorter TODO lists."
  558. :group 'org-agenda-skip
  559. :group 'org-agenda-todo-list
  560. :type 'boolean)
  561. (defcustom org-agenda-todo-ignore-with-date nil
  562. "Non-nil means don't show entries with a date in the global todo list.
  563. You can use this if you prefer to mark mere appointments with a TODO keyword,
  564. but don't want them to show up in the TODO list.
  565. When this is set, it also covers deadlines and scheduled items, the settings
  566. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  567. will be ignored.
  568. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  569. :group 'org-agenda-skip
  570. :group 'org-agenda-todo-list
  571. :type 'boolean)
  572. (defcustom org-agenda-todo-ignore-timestamp nil
  573. "Non-nil means don't show entries with a timestamp.
  574. This applies when creating the global todo list.
  575. Valid values are:
  576. past Don't show entries for today or in the past.
  577. future Don't show entries with a timestamp in the future.
  578. The idea behind this is that if it has a future
  579. timestamp, you don't want to think about it until the
  580. date.
  581. all Don't show any entries with a timestamp in the global todo list.
  582. The idea behind this is that by setting a timestamp, you
  583. have already \"taken care\" of this item.
  584. This variable can also have an integer as a value. If positive (N),
  585. todos with a timestamp N or more days in the future will be ignored. If
  586. negative (-N), todos with a timestamp N or more days in the past will be
  587. ignored. If 0, todos with a timestamp either today or in the future will
  588. be ignored. For example, a value of -1 will exclude todos with a
  589. timestamp in the past (yesterday or earlier), while a value of 7 will
  590. exclude todos with a timestamp a week or more in the future.
  591. See also `org-agenda-todo-ignore-with-date'.
  592. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  593. to make his option also apply to the tags-todo list."
  594. :group 'org-agenda-skip
  595. :group 'org-agenda-todo-list
  596. :version "24.1"
  597. :type '(choice
  598. (const :tag "Ignore future timestamp todos" future)
  599. (const :tag "Ignore past or present timestamp todos" past)
  600. (const :tag "Ignore all timestamp todos" all)
  601. (const :tag "Show timestamp todos" nil)
  602. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  603. (defcustom org-agenda-todo-ignore-scheduled nil
  604. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  605. This applies when creating the global todo list.
  606. Valid values are:
  607. past Don't show entries scheduled today or in the past.
  608. future Don't show entries scheduled in the future.
  609. The idea behind this is that by scheduling it, you don't want to
  610. think about it until the scheduled date.
  611. all Don't show any scheduled entries in the global todo list.
  612. The idea behind this is that by scheduling it, you have already
  613. \"taken care\" of this item.
  614. t Same as `all', for backward compatibility.
  615. This variable can also have an integer as a value. See
  616. `org-agenda-todo-ignore-timestamp' for more details.
  617. See also `org-agenda-todo-ignore-with-date'.
  618. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  619. to make his option also apply to the tags-todo list."
  620. :group 'org-agenda-skip
  621. :group 'org-agenda-todo-list
  622. :type '(choice
  623. (const :tag "Ignore future-scheduled todos" future)
  624. (const :tag "Ignore past- or present-scheduled todos" past)
  625. (const :tag "Ignore all scheduled todos" all)
  626. (const :tag "Ignore all scheduled todos (compatibility)" t)
  627. (const :tag "Show scheduled todos" nil)
  628. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  629. (defcustom org-agenda-todo-ignore-deadlines nil
  630. "Non-nil means ignore some deadlined TODO items when making TODO list.
  631. There are different motivations for using different values, please think
  632. carefully when configuring this variable.
  633. This applies when creating the global todo list.
  634. Valid values are:
  635. near Don't show near deadline entries. A deadline is near when it is
  636. closer than `org-deadline-warning-days' days. The idea behind this
  637. is that such items will appear in the agenda anyway.
  638. far Don't show TODO entries where a deadline has been defined, but
  639. the deadline is not near. This is useful if you don't want to
  640. use the todo list to figure out what to do now.
  641. past Don't show entries with a deadline timestamp for today or in the past.
  642. future Don't show entries with a deadline timestamp in the future, not even
  643. when they become `near' ones. Use it with caution.
  644. all Ignore all TODO entries that do have a deadline.
  645. t Same as `near', for backward compatibility.
  646. This variable can also have an integer as a value. See
  647. `org-agenda-todo-ignore-timestamp' for more details.
  648. See also `org-agenda-todo-ignore-with-date'.
  649. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  650. to make his option also apply to the tags-todo list."
  651. :group 'org-agenda-skip
  652. :group 'org-agenda-todo-list
  653. :type '(choice
  654. (const :tag "Ignore near deadlines" near)
  655. (const :tag "Ignore near deadlines (compatibility)" t)
  656. (const :tag "Ignore far deadlines" far)
  657. (const :tag "Ignore all TODOs with a deadlines" all)
  658. (const :tag "Show all TODOs, even if they have a deadline" nil)
  659. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  660. (defcustom org-agenda-todo-ignore-time-comparison-use-seconds nil
  661. "Time unit to use when possibly ignoring an agenda item.
  662. See the docstring of various `org-agenda-todo-ignore-*' options.
  663. The default is to compare time stamps using days. An item is thus
  664. considered to be in the future if it is at least one day after today.
  665. Non-nil means to compare time stamps using seconds. An item is then
  666. considered future if it has a time value later than current time."
  667. :group 'org-agenda-skip
  668. :group 'org-agenda-todo-list
  669. :type '(choice
  670. (const :tag "Compare time with days" nil)
  671. (const :tag "Compare time with seconds" t)))
  672. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  673. "Non-nil means honor todo-list ...ignore options also in tags-todo search.
  674. The variables
  675. `org-agenda-todo-ignore-with-date',
  676. `org-agenda-todo-ignore-timestamp',
  677. `org-agenda-todo-ignore-scheduled',
  678. `org-agenda-todo-ignore-deadlines'
  679. make the global TODO list skip entries that have time stamps of certain
  680. kinds. If this option is set, the same options will also apply for the
  681. tags-todo search, which is the general tags/property matcher
  682. restricted to unfinished TODO entries only."
  683. :group 'org-agenda-skip
  684. :group 'org-agenda-todo-list
  685. :group 'org-agenda-match-view
  686. :type 'boolean)
  687. (defcustom org-agenda-skip-scheduled-if-done nil
  688. "Non-nil means don't show scheduled items in agenda when they are done.
  689. This is relevant for the daily/weekly agenda, not for the TODO list. And
  690. it applies only to the actual date of the scheduling. Warnings about
  691. an item with a past scheduling dates are always turned off when the item
  692. is DONE."
  693. :group 'org-agenda-skip
  694. :group 'org-agenda-daily/weekly
  695. :type 'boolean)
  696. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  697. "Non-nil means skip scheduling line if same entry shows because of deadline.
  698. In the agenda of today, an entry can show up multiple times because
  699. it is both scheduled and has a nearby deadline, and maybe a plain time
  700. stamp as well.
  701. When this variable is t, then only the deadline is shown and the fact that
  702. the entry is scheduled today or was scheduled previously is not shown.
  703. When this variable is nil, the entry will be shown several times. When
  704. the variable is the symbol `not-today', then skip scheduled previously,
  705. but not scheduled today."
  706. :group 'org-agenda-skip
  707. :group 'org-agenda-daily/weekly
  708. :type '(choice
  709. (const :tag "Never" nil)
  710. (const :tag "Always" t)
  711. (const :tag "Not when scheduled today" not-today)))
  712. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  713. "Non-nil means skip timestamp line if same entry shows because of deadline.
  714. In the agenda of today, an entry can show up multiple times
  715. because it has both a plain timestamp and has a nearby deadline.
  716. When this variable is t, then only the deadline is shown and the
  717. fact that the entry has a timestamp for or including today is not
  718. shown. When this variable is nil, the entry will be shown
  719. several times."
  720. :group 'org-agenda-skip
  721. :group 'org-agenda-daily/weekly
  722. :version "24.1"
  723. :type '(choice
  724. (const :tag "Never" nil)
  725. (const :tag "Always" t)))
  726. (defcustom org-agenda-skip-deadline-if-done nil
  727. "Non-nil means don't show deadlines when the corresponding item is done.
  728. When nil, the deadline is still shown and should give you a happy feeling.
  729. This is relevant for the daily/weekly agenda. And it applied only to the
  730. actually date of the deadline. Warnings about approaching and past-due
  731. deadlines are always turned off when the item is DONE."
  732. :group 'org-agenda-skip
  733. :group 'org-agenda-daily/weekly
  734. :type 'boolean)
  735. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  736. "Non-nil means skip deadline prewarning when entry is also scheduled.
  737. This will apply on all days where a prewarning for the deadline would
  738. be shown, but not at the day when the entry is actually due. On that day,
  739. the deadline will be shown anyway.
  740. This variable may be set to nil, t, the symbol `pre-scheduled',
  741. or a number which will then give the number of days before the actual
  742. deadline when the prewarnings should resume. The symbol `pre-scheduled'
  743. eliminates the deadline prewarning only prior to the scheduled date.
  744. This can be used in a workflow where the first showing of the deadline will
  745. trigger you to schedule it, and then you don't want to be reminded of it
  746. because you will take care of it on the day when scheduled."
  747. :group 'org-agenda-skip
  748. :group 'org-agenda-daily/weekly
  749. :version "24.1"
  750. :type '(choice
  751. (const :tag "Always show prewarning" nil)
  752. (const :tag "Remove prewarning prior to scheduled date" pre-scheduled)
  753. (const :tag "Remove prewarning if entry is scheduled" t)
  754. (integer :tag "Restart prewarning N days before deadline")))
  755. (defcustom org-agenda-skip-scheduled-delay-if-deadline nil
  756. "Non-nil means skip scheduled delay when entry also has a deadline.
  757. This variable may be set to nil, t, the symbol `post-deadline',
  758. or a number which will then give the number of days after the actual
  759. scheduled date when the delay should expire. The symbol `post-deadline'
  760. eliminates the schedule delay when the date is posterior to the deadline."
  761. :group 'org-agenda-skip
  762. :group 'org-agenda-daily/weekly
  763. :version "24.3"
  764. :type '(choice
  765. (const :tag "Always honor delay" nil)
  766. (const :tag "Ignore delay if posterior to the deadline" post-deadline)
  767. (const :tag "Ignore delay if entry has a deadline" t)
  768. (integer :tag "Honor delay up until N days after the scheduled date")))
  769. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  770. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  771. When non-nil, after the search for timestamps has matched once in an
  772. entry, the rest of the entry will not be searched."
  773. :group 'org-agenda-skip
  774. :type 'boolean)
  775. (defcustom org-agenda-skip-timestamp-if-done nil
  776. "Non-nil means don't select item by timestamp or -range if it is DONE."
  777. :group 'org-agenda-skip
  778. :group 'org-agenda-daily/weekly
  779. :type 'boolean)
  780. (defcustom org-agenda-dim-blocked-tasks nil
  781. "Non-nil means dim blocked tasks in the agenda display.
  782. This causes some overhead during agenda construction, but if you
  783. have turned on `org-enforce-todo-dependencies',
  784. `org-enforce-todo-checkbox-dependencies', or any other blocking
  785. mechanism, this will create useful feedback in the agenda.
  786. Instead of t, this variable can also have the value `invisible'.
  787. Then blocked tasks will be invisible and only become visible when
  788. they become unblocked. An exemption to this behavior is when a task is
  789. blocked because of unchecked checkboxes below it. Since checkboxes do
  790. not show up in the agenda views, making this task invisible you remove any
  791. trace from agenda views that there is something to do. Therefore, a task
  792. that is blocked because of checkboxes will never be made invisible, it
  793. will only be dimmed."
  794. :group 'org-agenda-daily/weekly
  795. :group 'org-agenda-todo-list
  796. :version "24.3"
  797. :type '(choice
  798. (const :tag "Do not dim" nil)
  799. (const :tag "Dim to a gray face" t)
  800. (const :tag "Make invisible" invisible)))
  801. (defcustom org-timeline-show-empty-dates 3
  802. "Non-nil means `org-timeline' also shows dates without an entry.
  803. When nil, only the days which actually have entries are shown.
  804. When t, all days between the first and the last date are shown.
  805. When an integer, show also empty dates, but if there is a gap of more than
  806. N days, just insert a special line indicating the size of the gap."
  807. :group 'org-agenda-skip
  808. :type '(choice
  809. (const :tag "None" nil)
  810. (const :tag "All" t)
  811. (integer :tag "at most")))
  812. (defgroup org-agenda-startup nil
  813. "Options concerning initial settings in the Agenda in Org Mode."
  814. :tag "Org Agenda Startup"
  815. :group 'org-agenda)
  816. (defcustom org-agenda-menu-show-matcher t
  817. "Non-nil means show the match string in the agenda dispatcher menu.
  818. When nil, the matcher string is not shown, but is put into the help-echo
  819. property so than moving the mouse over the command shows it.
  820. Setting it to nil is good if matcher strings are very long and/or if
  821. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  822. :group 'org-agenda
  823. :version "24.1"
  824. :type 'boolean)
  825. (define-obsolete-variable-alias 'org-agenda-menu-two-column 'org-agenda-menu-two-columns "24.3")
  826. (defcustom org-agenda-menu-two-columns nil
  827. "Non-nil means, use two columns to show custom commands in the dispatcher.
  828. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  829. to nil."
  830. :group 'org-agenda
  831. :version "24.1"
  832. :type 'boolean)
  833. (define-obsolete-variable-alias 'org-finalize-agenda-hook 'org-agenda-finalize-hook "24.3")
  834. (defcustom org-agenda-finalize-hook nil
  835. "Hook run just before displaying an agenda buffer.
  836. The buffer is still writable when the hook is called.
  837. You can modify some of the buffer substrings but you should be
  838. extra careful not to modify the text properties of the agenda
  839. headlines as the agenda display heavily relies on them."
  840. :group 'org-agenda-startup
  841. :type 'hook)
  842. (defcustom org-agenda-mouse-1-follows-link nil
  843. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  844. A longer mouse click will still set point. Does not work on XEmacs.
  845. Needs to be set before org.el is loaded."
  846. :group 'org-agenda-startup
  847. :type 'boolean)
  848. (defcustom org-agenda-start-with-follow-mode nil
  849. "The initial value of follow mode in a newly created agenda window."
  850. :group 'org-agenda-startup
  851. :type 'boolean)
  852. (defcustom org-agenda-follow-indirect nil
  853. "Non-nil means `org-agenda-follow-mode' displays only the
  854. current item's tree, in an indirect buffer."
  855. :group 'org-agenda
  856. :version "24.1"
  857. :type 'boolean)
  858. (defcustom org-agenda-show-outline-path t
  859. "Non-nil means show outline path in echo area after line motion."
  860. :group 'org-agenda-startup
  861. :type 'boolean)
  862. (defcustom org-agenda-start-with-entry-text-mode nil
  863. "The initial value of entry-text-mode in a newly created agenda window."
  864. :group 'org-agenda-startup
  865. :type 'boolean)
  866. (defcustom org-agenda-entry-text-maxlines 5
  867. "Number of text lines to be added when `E' is pressed in the agenda.
  868. Note that this variable only used during agenda display. Add add entry text
  869. when exporting the agenda, configure the variable
  870. `org-agenda-add-entry-ext-maxlines'."
  871. :group 'org-agenda
  872. :type 'integer)
  873. (defcustom org-agenda-entry-text-exclude-regexps nil
  874. "List of regular expressions to clean up entry text.
  875. The complete matches of all regular expressions in this list will be
  876. removed from entry text before it is shown in the agenda."
  877. :group 'org-agenda
  878. :type '(repeat (regexp)))
  879. (defvar org-agenda-entry-text-cleanup-hook nil
  880. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  881. This cleanup is done in a temporary buffer, so the function may inspect and
  882. change the entire buffer.
  883. Some default stuff like drawers and scheduling/deadline dates will already
  884. have been removed when this is called, as will any matches for regular
  885. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  886. (defvar org-agenda-include-inactive-timestamps nil
  887. "Non-nil means include inactive time stamps in agenda and timeline.
  888. Dynamically scoped.")
  889. (defgroup org-agenda-windows nil
  890. "Options concerning the windows used by the Agenda in Org Mode."
  891. :tag "Org Agenda Windows"
  892. :group 'org-agenda)
  893. (defcustom org-agenda-window-setup 'reorganize-frame
  894. "How the agenda buffer should be displayed.
  895. Possible values for this option are:
  896. current-window Show agenda in the current window, keeping all other windows.
  897. other-window Use `switch-to-buffer-other-window' to display agenda.
  898. reorganize-frame Show only two windows on the current frame, the current
  899. window and the agenda.
  900. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  901. Also, when exiting the agenda, kill that frame.
  902. See also the variable `org-agenda-restore-windows-after-quit'."
  903. :group 'org-agenda-windows
  904. :type '(choice
  905. (const current-window)
  906. (const other-frame)
  907. (const other-window)
  908. (const reorganize-frame)))
  909. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  910. "The min and max height of the agenda window as a fraction of frame height.
  911. The value of the variable is a cons cell with two numbers between 0 and 1.
  912. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  913. :group 'org-agenda-windows
  914. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  915. (defcustom org-agenda-restore-windows-after-quit nil
  916. "Non-nil means restore window configuration upon exiting agenda.
  917. Before the window configuration is changed for displaying the agenda,
  918. the current status is recorded. When the agenda is exited with
  919. `q' or `x' and this option is set, the old state is restored. If
  920. `org-agenda-window-setup' is `other-frame', the value of this
  921. option will be ignored."
  922. :group 'org-agenda-windows
  923. :type 'boolean)
  924. (defcustom org-agenda-ndays nil
  925. "Number of days to include in overview display.
  926. Should be 1 or 7.
  927. Obsolete, see `org-agenda-span'."
  928. :group 'org-agenda-daily/weekly
  929. :type 'integer)
  930. (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
  931. (defcustom org-agenda-span 'week
  932. "Number of days to include in overview display.
  933. Can be day, week, month, year, or any number of days.
  934. Custom commands can set this variable in the options section."
  935. :group 'org-agenda-daily/weekly
  936. :type '(choice (const :tag "Day" day)
  937. (const :tag "Week" week)
  938. (const :tag "Month" month)
  939. (const :tag "Year" year)
  940. (integer :tag "Custom")))
  941. (defcustom org-agenda-start-on-weekday 1
  942. "Non-nil means start the overview always on the specified weekday.
  943. 0 denotes Sunday, 1 denotes Monday etc.
  944. When nil, always start on the current day.
  945. Custom commands can set this variable in the options section."
  946. :group 'org-agenda-daily/weekly
  947. :type '(choice (const :tag "Today" nil)
  948. (integer :tag "Weekday No.")))
  949. (defcustom org-agenda-show-all-dates t
  950. "Non-nil means `org-agenda' shows every day in the selected range.
  951. When nil, only the days which actually have entries are shown."
  952. :group 'org-agenda-daily/weekly
  953. :type 'boolean)
  954. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  955. "Format string for displaying dates in the agenda.
  956. Used by the daily/weekly agenda and by the timeline. This should be
  957. a format string understood by `format-time-string', or a function returning
  958. the formatted date as a string. The function must take a single argument,
  959. a calendar-style date list like (month day year)."
  960. :group 'org-agenda-daily/weekly
  961. :type '(choice
  962. (string :tag "Format string")
  963. (function :tag "Function")))
  964. (defun org-agenda-format-date-aligned (date)
  965. "Format a date string for display in the daily/weekly agenda, or timeline.
  966. This function makes sure that dates are aligned for easy reading."
  967. (require 'cal-iso)
  968. (let* ((dayname (calendar-day-name date))
  969. (day (cadr date))
  970. (day-of-week (calendar-day-of-week date))
  971. (month (car date))
  972. (monthname (calendar-month-name month))
  973. (year (nth 2 date))
  974. (iso-week (org-days-to-iso-week
  975. (calendar-absolute-from-gregorian date)))
  976. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  977. (1- year))
  978. ((and (= month 12) (<= iso-week 1))
  979. (1+ year))
  980. (t year)))
  981. (weekstring (if (= day-of-week 1)
  982. (format " W%02d" iso-week)
  983. "")))
  984. (format "%-10s %2d %s %4d%s"
  985. dayname day monthname year weekstring)))
  986. (defcustom org-agenda-time-leading-zero nil
  987. "Non-nil means use leading zero for military times in agenda.
  988. For example, 9:30am would become 09:30 rather than 9:30."
  989. :group 'org-agenda-daily/weekly
  990. :version "24.1"
  991. :type 'boolean)
  992. (defcustom org-agenda-timegrid-use-ampm nil
  993. "When set, show AM/PM style timestamps on the timegrid."
  994. :group 'org-agenda
  995. :version "24.1"
  996. :type 'boolean)
  997. (defun org-agenda-time-of-day-to-ampm (time)
  998. "Convert TIME of a string like '13:45' to an AM/PM style time string."
  999. (let* ((hour-number (string-to-number (substring time 0 -3)))
  1000. (minute (substring time -2))
  1001. (ampm "am"))
  1002. (cond
  1003. ((equal hour-number 12)
  1004. (setq ampm "pm"))
  1005. ((> hour-number 12)
  1006. (setq ampm "pm")
  1007. (setq hour-number (- hour-number 12))))
  1008. (concat
  1009. (if org-agenda-time-leading-zero
  1010. (format "%02d" hour-number)
  1011. (format "%02s" (number-to-string hour-number)))
  1012. ":" minute ampm)))
  1013. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  1014. "Conditionally convert TIME to AM/PM format
  1015. based on `org-agenda-timegrid-use-ampm'"
  1016. (if org-agenda-timegrid-use-ampm
  1017. (org-agenda-time-of-day-to-ampm time)
  1018. time))
  1019. (defcustom org-agenda-weekend-days '(6 0)
  1020. "Which days are weekend?
  1021. These days get the special face `org-agenda-date-weekend' in the agenda
  1022. and timeline buffers."
  1023. :group 'org-agenda-daily/weekly
  1024. :type '(set :greedy t
  1025. (const :tag "Monday" 1)
  1026. (const :tag "Tuesday" 2)
  1027. (const :tag "Wednesday" 3)
  1028. (const :tag "Thursday" 4)
  1029. (const :tag "Friday" 5)
  1030. (const :tag "Saturday" 6)
  1031. (const :tag "Sunday" 0)))
  1032. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1033. "Non-nil means jump to today when moving a past date forward in time.
  1034. When using S-right in the agenda to move a a date forward, and the date
  1035. stamp currently points to the past, the first key press will move it
  1036. to today. WHen nil, just move one day forward even if the date stays
  1037. in the past."
  1038. :group 'org-agenda-daily/weekly
  1039. :version "24.1"
  1040. :type 'boolean)
  1041. (defcustom org-agenda-include-diary nil
  1042. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1043. Custom commands can set this variable in the options section."
  1044. :group 'org-agenda-daily/weekly
  1045. :type 'boolean)
  1046. (defcustom org-agenda-include-deadlines t
  1047. "If non-nil, include entries within their deadline warning period.
  1048. Custom commands can set this variable in the options section."
  1049. :group 'org-agenda-daily/weekly
  1050. :version "24.1"
  1051. :type 'boolean)
  1052. (defcustom org-agenda-repeating-timestamp-show-all t
  1053. "Non-nil means show all occurrences of a repeating stamp in the agenda.
  1054. When set to a list of strings, only show occurrences of repeating
  1055. stamps for these TODO keywords. When nil, only one occurrence is
  1056. shown, either today or the nearest into the future."
  1057. :group 'org-agenda-daily/weekly
  1058. :type '(choice
  1059. (const :tag "Show repeating stamps" t)
  1060. (repeat :tag "Show repeating stamps for these TODO keywords"
  1061. (string :tag "TODO Keyword"))
  1062. (const :tag "Don't show repeating stamps" nil)))
  1063. (defcustom org-scheduled-past-days 10000
  1064. "No. of days to continue listing scheduled items that are not marked DONE.
  1065. When an item is scheduled on a date, it shows up in the agenda on this
  1066. day and will be listed until it is marked done for the number of days
  1067. given here."
  1068. :group 'org-agenda-daily/weekly
  1069. :type 'integer)
  1070. (defcustom org-agenda-log-mode-items '(closed clock)
  1071. "List of items that should be shown in agenda log mode.
  1072. This list may contain the following symbols:
  1073. closed Show entries that have been closed on that day.
  1074. clock Show entries that have received clocked time on that day.
  1075. state Show all logged state changes.
  1076. Note that instead of changing this variable, you can also press `C-u l' in
  1077. the agenda to display all available LOG items temporarily."
  1078. :group 'org-agenda-daily/weekly
  1079. :type '(set :greedy t (const closed) (const clock) (const state)))
  1080. (defcustom org-agenda-clock-consistency-checks
  1081. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1082. :gap-ok-around ("4:00")
  1083. :default-face ((:background "DarkRed") (:foreground "white"))
  1084. :overlap-face nil :gap-face nil :no-end-time-face nil
  1085. :long-face nil :short-face nil)
  1086. "This is a property list, with the following keys:
  1087. :max-duration Mark clocking chunks that are longer than this time.
  1088. This is a time string like \"HH:MM\", or the number
  1089. of minutes as an integer.
  1090. :min-duration Mark clocking chunks that are shorter that this.
  1091. This is a time string like \"HH:MM\", or the number
  1092. of minutes as an integer.
  1093. :max-gap Mark gaps between clocking chunks that are longer than
  1094. this duration. A number of minutes, or a string
  1095. like \"HH:MM\".
  1096. :gap-ok-around List of times during the day which are usually not working
  1097. times. When a gap is detected, but the gap contains any
  1098. of these times, the gap is *not* reported. For example,
  1099. if this is (\"4:00\" \"13:00\") then gaps that contain
  1100. 4:00 in the morning (i.e. the night) and 13:00
  1101. (i.e. a typical lunch time) do not cause a warning.
  1102. You should have at least one time during the night in this
  1103. list, or otherwise the first task each morning will trigger
  1104. a warning because it follows a long gap.
  1105. Furthermore, the following properties can be used to define faces for
  1106. issue display.
  1107. :default-face the default face, if the specific face is undefined
  1108. :overlap-face face for overlapping clocks
  1109. :gap-face face for gaps between clocks
  1110. :no-end-time-face face for incomplete clocks
  1111. :long-face face for clock intervals that are too long
  1112. :short-face face for clock intervals that are too short"
  1113. :group 'org-agenda-daily/weekly
  1114. :group 'org-clock
  1115. :version "24.1"
  1116. :type 'plist)
  1117. (defcustom org-agenda-log-mode-add-notes t
  1118. "Non-nil means add first line of notes to log entries in agenda views.
  1119. If a log item like a state change or a clock entry is associated with
  1120. notes, the first line of these notes will be added to the entry in the
  1121. agenda display."
  1122. :group 'org-agenda-daily/weekly
  1123. :type 'boolean)
  1124. (defcustom org-agenda-start-with-log-mode nil
  1125. "The initial value of log-mode in a newly created agenda window.
  1126. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1127. explanations on the possible values."
  1128. :group 'org-agenda-startup
  1129. :group 'org-agenda-daily/weekly
  1130. :type '(choice (const :tag "Don't show log items" nil)
  1131. (const :tag "Show only log items" 'only)
  1132. (const :tag "Show all possible log items" 'clockcheck)
  1133. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1134. (choice (const :tag "Show closed log items" 'closed)
  1135. (const :tag "Show clocked log items" 'clock)
  1136. (const :tag "Show all logged state changes" 'state)))))
  1137. (defcustom org-agenda-start-with-clockreport-mode nil
  1138. "The initial value of clockreport-mode in a newly created agenda window."
  1139. :group 'org-agenda-startup
  1140. :group 'org-agenda-daily/weekly
  1141. :type 'boolean)
  1142. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1143. "Property list with parameters for the clocktable in clockreport mode.
  1144. This is the display mode that shows a clock table in the daily/weekly
  1145. agenda, the properties for this dynamic block can be set here.
  1146. The usual clocktable parameters are allowed here, but you cannot set
  1147. the properties :name, :tstart, :tend, :block, and :scope - these will
  1148. be overwritten to make sure the content accurately reflects the
  1149. current display in the agenda."
  1150. :group 'org-agenda-daily/weekly
  1151. :type 'plist)
  1152. (defcustom org-agenda-search-view-always-boolean nil
  1153. "Non-nil means the search string is interpreted as individual parts.
  1154. The search string for search view can either be interpreted as a phrase,
  1155. or as a list of snippets that define a boolean search for a number of
  1156. strings.
  1157. When this is non-nil, the string will be split on whitespace, and each
  1158. snippet will be searched individually, and all must match in order to
  1159. select an entry. A snippet is then a single string of non-white
  1160. characters, or a string in double quotes, or a regexp in {} braces.
  1161. If a snippet is preceded by \"-\", the snippet must *not* match.
  1162. \"+\" is syntactic sugar for positive selection. Each snippet may
  1163. be found as a full word or a partial word, but see the variable
  1164. `org-agenda-search-view-force-full-words'.
  1165. When this is nil, search will look for the entire search phrase as one,
  1166. with each space character matching any amount of whitespace, including
  1167. line breaks.
  1168. Even when this is nil, you can still switch to Boolean search dynamically
  1169. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1170. is a regexp marked with braces like \"{abc}\", this will also switch to
  1171. boolean search."
  1172. :group 'org-agenda-search-view
  1173. :version "24.1"
  1174. :type 'boolean)
  1175. (if (fboundp 'defvaralias)
  1176. (defvaralias 'org-agenda-search-view-search-words-only
  1177. 'org-agenda-search-view-always-boolean))
  1178. (defcustom org-agenda-search-view-force-full-words nil
  1179. "Non-nil means, search words must be matches as complete words.
  1180. When nil, they may also match part of a word."
  1181. :group 'org-agenda-search-view
  1182. :version "24.1"
  1183. :type 'boolean)
  1184. (defcustom org-agenda-search-view-max-outline-level nil
  1185. "Maximum outline level to display in search view.
  1186. E.g. when this is set to 1, the search view will only
  1187. show headlines of level 1."
  1188. :group 'org-agenda-search-view
  1189. :version "24.3"
  1190. :type 'integer)
  1191. (defgroup org-agenda-time-grid nil
  1192. "Options concerning the time grid in the Org-mode Agenda."
  1193. :tag "Org Agenda Time Grid"
  1194. :group 'org-agenda)
  1195. (defcustom org-agenda-search-headline-for-time t
  1196. "Non-nil means search headline for a time-of-day.
  1197. If the headline contains a time-of-day in one format or another, it will
  1198. be used to sort the entry into the time sequence of items for a day.
  1199. Some people have time stamps in the headline that refer to the creation
  1200. time or so, and then this produces an unwanted side effect. If this is
  1201. the case for your, use this variable to turn off searching the headline
  1202. for a time."
  1203. :group 'org-agenda-time-grid
  1204. :type 'boolean)
  1205. (defcustom org-agenda-use-time-grid t
  1206. "Non-nil means show a time grid in the agenda schedule.
  1207. A time grid is a set of lines for specific times (like every two hours between
  1208. 8:00 and 20:00). The items scheduled for a day at specific times are
  1209. sorted in between these lines.
  1210. For details about when the grid will be shown, and what it will look like, see
  1211. the variable `org-agenda-time-grid'."
  1212. :group 'org-agenda-time-grid
  1213. :type 'boolean)
  1214. (defcustom org-agenda-time-grid
  1215. '((daily today require-timed)
  1216. "----------------"
  1217. (800 1000 1200 1400 1600 1800 2000))
  1218. "The settings for time grid for agenda display.
  1219. This is a list of three items. The first item is again a list. It contains
  1220. symbols specifying conditions when the grid should be displayed:
  1221. daily if the agenda shows a single day
  1222. weekly if the agenda shows an entire week
  1223. today show grid on current date, independent of daily/weekly display
  1224. require-timed show grid only if at least one item has a time specification
  1225. The second item is a string which will be placed behind the grid time.
  1226. The third item is a list of integers, indicating the times that should have
  1227. a grid line."
  1228. :group 'org-agenda-time-grid
  1229. :type
  1230. '(list
  1231. (set :greedy t :tag "Grid Display Options"
  1232. (const :tag "Show grid in single day agenda display" daily)
  1233. (const :tag "Show grid in weekly agenda display" weekly)
  1234. (const :tag "Always show grid for today" today)
  1235. (const :tag "Show grid only if any timed entries are present"
  1236. require-timed)
  1237. (const :tag "Skip grid times already present in an entry"
  1238. remove-match))
  1239. (string :tag "Grid String")
  1240. (repeat :tag "Grid Times" (integer :tag "Time"))))
  1241. (defcustom org-agenda-show-current-time-in-grid t
  1242. "Non-nil means show the current time in the time grid."
  1243. :group 'org-agenda-time-grid
  1244. :version "24.1"
  1245. :type 'boolean)
  1246. (defcustom org-agenda-current-time-string
  1247. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1248. "The string for the current time marker in the agenda."
  1249. :group 'org-agenda-time-grid
  1250. :version "24.1"
  1251. :type 'string)
  1252. (defgroup org-agenda-sorting nil
  1253. "Options concerning sorting in the Org-mode Agenda."
  1254. :tag "Org Agenda Sorting"
  1255. :group 'org-agenda)
  1256. (defcustom org-agenda-sorting-strategy
  1257. '((agenda habit-down time-up priority-down category-keep)
  1258. (todo priority-down category-keep)
  1259. (tags priority-down category-keep)
  1260. (search category-keep))
  1261. "Sorting structure for the agenda items of a single day.
  1262. This is a list of symbols which will be used in sequence to determine
  1263. if an entry should be listed before another entry. The following
  1264. symbols are recognized:
  1265. time-up Put entries with time-of-day indications first, early first
  1266. time-down Put entries with time-of-day indications first, late first
  1267. timestamp-up Sort by any timestamp, early first
  1268. timestamp-down Sort by any timestamp, late first
  1269. scheduled-up Sort by scheduled timestamp, early first
  1270. scheduled-down Sort by scheduled timestamp, late first
  1271. deadline-up Sort by deadline timestamp, early first
  1272. deadline-down Sort by deadline timestamp, late first
  1273. ts-up Sort by active timestamp, early first
  1274. ts-down Sort by active timestamp, late first
  1275. tsia-up Sort by inactive timestamp, early first
  1276. tsia-down Sort by inactive timestamp, late first
  1277. category-keep Keep the default order of categories, corresponding to the
  1278. sequence in `org-agenda-files'.
  1279. category-up Sort alphabetically by category, A-Z.
  1280. category-down Sort alphabetically by category, Z-A.
  1281. tag-up Sort alphabetically by last tag, A-Z.
  1282. tag-down Sort alphabetically by last tag, Z-A.
  1283. priority-up Sort numerically by priority, high priority last.
  1284. priority-down Sort numerically by priority, high priority first.
  1285. todo-state-up Sort by todo state, tasks that are done last.
  1286. todo-state-down Sort by todo state, tasks that are done first.
  1287. effort-up Sort numerically by estimated effort, high effort last.
  1288. effort-down Sort numerically by estimated effort, high effort first.
  1289. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1290. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1291. habit-up Put entries that are habits first
  1292. habit-down Put entries that are habits last
  1293. alpha-up Sort headlines alphabetically
  1294. alpha-down Sort headlines alphabetically, reversed
  1295. The different possibilities will be tried in sequence, and testing stops
  1296. if one comparison returns a \"not-equal\". For example, the default
  1297. '(time-up category-keep priority-down)
  1298. means: Pull out all entries having a specified time of day and sort them,
  1299. in order to make a time schedule for the current day the first thing in the
  1300. agenda listing for the day. Of the entries without a time indication, keep
  1301. the grouped in categories, don't sort the categories, but keep them in
  1302. the sequence given in `org-agenda-files'. Within each category sort by
  1303. priority.
  1304. Leaving out `category-keep' would mean that items will be sorted across
  1305. categories by priority.
  1306. Instead of a single list, this can also be a set of list for specific
  1307. contents, with a context symbol in the car of the list, any of
  1308. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1309. Custom commands can bind this variable in the options section."
  1310. :group 'org-agenda-sorting
  1311. :type `(choice
  1312. (repeat :tag "General" ,org-sorting-choice)
  1313. (list :tag "Individually"
  1314. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1315. (repeat ,org-sorting-choice))
  1316. (cons (const :tag "Strategy for TODO lists" todo)
  1317. (repeat ,org-sorting-choice))
  1318. (cons (const :tag "Strategy for Tags matches" tags)
  1319. (repeat ,org-sorting-choice))
  1320. (cons (const :tag "Strategy for search matches" search)
  1321. (repeat ,org-sorting-choice)))))
  1322. (defcustom org-agenda-cmp-user-defined nil
  1323. "A function to define the comparison `user-defined'.
  1324. This function must receive two arguments, agenda entry a and b.
  1325. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1326. the user comparison, return nil.
  1327. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1328. part of an agenda sorting strategy."
  1329. :group 'org-agenda-sorting
  1330. :type 'symbol)
  1331. (defcustom org-sort-agenda-notime-is-late t
  1332. "Non-nil means items without time are considered late.
  1333. This is only relevant for sorting. When t, items which have no explicit
  1334. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1335. do have a time. When nil, the default time is before 0:00. You can use this
  1336. option to decide if the schedule for today should come before or after timeless
  1337. agenda entries."
  1338. :group 'org-agenda-sorting
  1339. :type 'boolean)
  1340. (defcustom org-sort-agenda-noeffort-is-high t
  1341. "Non-nil means items without effort estimate are sorted as high effort.
  1342. This also applies when filtering an agenda view with respect to the
  1343. < or > effort operator. Then, tasks with no effort defined will be treated
  1344. as tasks with high effort.
  1345. When nil, such items are sorted as 0 minutes effort."
  1346. :group 'org-agenda-sorting
  1347. :type 'boolean)
  1348. (defgroup org-agenda-line-format nil
  1349. "Options concerning the entry prefix in the Org-mode agenda display."
  1350. :tag "Org Agenda Line Format"
  1351. :group 'org-agenda)
  1352. (defcustom org-agenda-prefix-format
  1353. '((agenda . " %i %-12:c%?-12t% s")
  1354. (timeline . " % s")
  1355. (todo . " %i %-12:c")
  1356. (tags . " %i %-12:c")
  1357. (search . " %i %-12:c"))
  1358. "Format specifications for the prefix of items in the agenda views.
  1359. An alist with five entries, each for the different agenda types. The
  1360. keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
  1361. The values are format strings.
  1362. This format works similar to a printf format, with the following meaning:
  1363. %c the category of the item, \"Diary\" for entries from the diary,
  1364. or as given by the CATEGORY keyword or derived from the file name
  1365. %e the effort required by the item
  1366. %l the level of the item (insert X space(s) if item is of level X)
  1367. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1368. %T the last tag of the item (ignore inherited tags, which come first)
  1369. %t the HH:MM time-of-day specification if one applies to the entry
  1370. %s Scheduling/Deadline information, a short string
  1371. %(expression) Eval EXPRESSION and replace the control string
  1372. by the result
  1373. All specifiers work basically like the standard `%s' of printf, but may
  1374. contain two additional characters: a question mark just after the `%'
  1375. and a whitespace/punctuation character just before the final letter.
  1376. If the first character after `%' is a question mark, the entire field
  1377. will only be included if the corresponding value applies to the current
  1378. entry. This is useful for fields which should have fixed width when
  1379. present, but zero width when absent. For example, \"%?-12t\" will
  1380. result in a 12 character time field if a time of the day is specified,
  1381. but will completely disappear in entries which do not contain a time.
  1382. If there is punctuation or whitespace character just before the final
  1383. format letter, this character will be appended to the field value if
  1384. the value is not empty. For example, the format \"%-12:c\" leads to
  1385. \"Diary: \" if the category is \"Diary\". If the category were be
  1386. empty, no additional colon would be inserted.
  1387. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1388. which means:
  1389. - Indent the line with two space characters
  1390. - Give the category a 12 chars wide field, padded with whitespace on
  1391. the right (because of `-'). Append a colon if there is a category
  1392. (because of `:').
  1393. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1394. time, don't put in an empty field, just skip it (because of '?').
  1395. - Finally, put the scheduling information.
  1396. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1397. `org-agenda-remove-tags'.
  1398. Custom commands can set this variable in the options section."
  1399. :type '(choice
  1400. (string :tag "General format")
  1401. (list :greedy t :tag "View dependent"
  1402. (cons (const agenda) (string :tag "Format"))
  1403. (cons (const timeline) (string :tag "Format"))
  1404. (cons (const todo) (string :tag "Format"))
  1405. (cons (const tags) (string :tag "Format"))
  1406. (cons (const search) (string :tag "Format"))))
  1407. :group 'org-agenda-line-format)
  1408. (defvar org-prefix-format-compiled nil
  1409. "The compiled prefix format and associated variables.
  1410. This is a list where first element is a list of variable bindings, and second
  1411. element is the compiled format expression. See the variable
  1412. `org-agenda-prefix-format'.")
  1413. (defcustom org-agenda-todo-keyword-format "%-1s"
  1414. "Format for the TODO keyword in agenda lines.
  1415. Set this to something like \"%-12s\" if you want all TODO keywords
  1416. to occupy a fixed space in the agenda display."
  1417. :group 'org-agenda-line-format
  1418. :type 'string)
  1419. (defcustom org-agenda-diary-sexp-prefix nil
  1420. "A regexp that matches part of a diary sexp entry
  1421. which should be treated as scheduling/deadline information in
  1422. `org-agenda'.
  1423. For example, you can use this to extract the `diary-remind-message' from
  1424. `diary-remind' entries."
  1425. :group 'org-agenda-line-format
  1426. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1427. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1428. "Text preceding timerange entries in the agenda view.
  1429. This is a list with two strings. The first applies when the range
  1430. is entirely on one day. The second applies if the range spans several days.
  1431. The strings may have two \"%d\" format specifiers which will be filled
  1432. with the sequence number of the days, and the total number of days in the
  1433. range, respectively."
  1434. :group 'org-agenda-line-format
  1435. :type '(list
  1436. (string :tag "Deadline today ")
  1437. (choice :tag "Deadline relative"
  1438. (string :tag "Format string")
  1439. (function))))
  1440. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1441. "Text preceding scheduled items in the agenda view.
  1442. This is a list with two strings. The first applies when the item is
  1443. scheduled on the current day. The second applies when it has been scheduled
  1444. previously, it may contain a %d indicating that this is the nth time that
  1445. this item is scheduled, due to automatic rescheduling of unfinished items
  1446. for the following day. So this number is one larger than the number of days
  1447. that passed since this item was scheduled first."
  1448. :group 'org-agenda-line-format
  1449. :type '(list
  1450. (string :tag "Scheduled today ")
  1451. (string :tag "Scheduled previously")))
  1452. (defcustom org-agenda-inactive-leader "["
  1453. "Text preceding item pulled into the agenda by inactive time stamps.
  1454. These entries are added to the agenda when pressing \"[\"."
  1455. :group 'org-agenda-line-format
  1456. :version "24.1"
  1457. :type '(list
  1458. (string :tag "Scheduled today ")
  1459. (string :tag "Scheduled previously")))
  1460. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: ")
  1461. "Text preceding deadline items in the agenda view.
  1462. This is a list with two strings. The first applies when the item has its
  1463. deadline on the current day. The second applies when it is in the past or
  1464. in the future, it may contain %d to capture how many days away the deadline
  1465. is (was)."
  1466. :group 'org-agenda-line-format
  1467. :type '(list
  1468. (string :tag "Deadline today ")
  1469. (choice :tag "Deadline relative"
  1470. (string :tag "Format string")
  1471. (function))))
  1472. (defcustom org-agenda-remove-times-when-in-prefix t
  1473. "Non-nil means remove duplicate time specifications in agenda items.
  1474. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1475. time-of-day specification in a headline or diary entry is extracted and
  1476. placed into the prefix. If this option is non-nil, the original specification
  1477. \(a timestamp or -range, or just a plain time(range) specification like
  1478. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1479. cluttered.
  1480. The option can be t or nil. It may also be the symbol `beg', indicating
  1481. that the time should only be removed when it is located at the beginning of
  1482. the headline/diary entry."
  1483. :group 'org-agenda-line-format
  1484. :type '(choice
  1485. (const :tag "Always" t)
  1486. (const :tag "Never" nil)
  1487. (const :tag "When at beginning of entry" beg)))
  1488. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1489. "Non-nil means remove time ranges specifications in agenda
  1490. items that span on several days."
  1491. :group 'org-agenda-line-format
  1492. :version "24.1"
  1493. :type 'boolean)
  1494. (defcustom org-agenda-default-appointment-duration nil
  1495. "Default duration for appointments that only have a starting time.
  1496. When nil, no duration is specified in such cases.
  1497. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1498. :group 'org-agenda-line-format
  1499. :type '(choice
  1500. (integer :tag "Minutes")
  1501. (const :tag "No default duration")))
  1502. (defcustom org-agenda-show-inherited-tags t
  1503. "Non-nil means show inherited tags in each agenda line.
  1504. When this option is set to 'always, it take precedences over
  1505. `org-agenda-use-tag-inheritance' and inherited tags are shown
  1506. in every agenda.
  1507. When this option is set to t (the default), inherited tags are
  1508. shown when they are available, i.e. when the value of
  1509. `org-agenda-use-tag-inheritance' has been taken into account.
  1510. This can be set to a list of agenda types in which the agenda
  1511. must display the inherited tags. Available types are 'todo,
  1512. 'agenda, 'search and 'timeline.
  1513. When set to nil, never show inherited tags in agenda lines."
  1514. :group 'org-agenda-line-format
  1515. :group 'org-agenda
  1516. :version "24.3"
  1517. :type '(choice
  1518. (const :tag "Show inherited tags when available" t)
  1519. (const :tag "Always show inherited tags" 'always)
  1520. (repeat :tag "Show inherited tags only in selected agenda types"
  1521. (symbol :tag "Agenda type"))))
  1522. (defcustom org-agenda-use-tag-inheritance '(todo search timeline agenda)
  1523. "List of agenda view types where to use tag inheritance.
  1524. In tags/tags-todo/tags-tree agenda views, tag inheritance is
  1525. controlled by `org-use-tag-inheritance'. In other agenda types,
  1526. `org-use-tag-inheritance' is not used for the selection of the
  1527. agenda entries. Still, you may want the agenda to be aware of
  1528. the inherited tags anyway, e.g. for later tag filtering.
  1529. Allowed value are 'todo, 'search, 'timeline and 'agenda.
  1530. This variable has no effect if `org-agenda-show-inherited-tags'
  1531. is set to 'always. In that case, the agenda is aware of those
  1532. tags.
  1533. The default value sets tags in every agenda type. Setting this
  1534. option to nil will speed up non-tags agenda view a lot."
  1535. :group 'org-agenda
  1536. :version "24.3"
  1537. :type '(choice
  1538. (const :tag "Use tag inheritance in all agenda types" t)
  1539. (repeat :tag "Use tag inheritance in selected agenda types"
  1540. (symbol :tag "Agenda type"))))
  1541. (defcustom org-agenda-hide-tags-regexp nil
  1542. "Regular expression used to filter away specific tags in agenda views.
  1543. This means that these tags will be present, but not be shown in the agenda
  1544. line. Secondary filtering will still work on the hidden tags.
  1545. Nil means don't hide any tags."
  1546. :group 'org-agenda-line-format
  1547. :type '(choice
  1548. (const :tag "Hide none" nil)
  1549. (string :tag "Regexp ")))
  1550. (defcustom org-agenda-remove-tags nil
  1551. "Non-nil means remove the tags from the headline copy in the agenda.
  1552. When this is the symbol `prefix', only remove tags when
  1553. `org-agenda-prefix-format' contains a `%T' specifier."
  1554. :group 'org-agenda-line-format
  1555. :type '(choice
  1556. (const :tag "Always" t)
  1557. (const :tag "Never" nil)
  1558. (const :tag "When prefix format contains %T" prefix)))
  1559. (if (fboundp 'defvaralias)
  1560. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1561. 'org-agenda-remove-tags))
  1562. (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
  1563. "Shift tags in agenda items to this column.
  1564. If this number is positive, it specifies the column. If it is negative,
  1565. it means that the tags should be flushright to that column. For example,
  1566. -80 works well for a normal 80 character screen."
  1567. :group 'org-agenda-line-format
  1568. :type 'integer)
  1569. (if (fboundp 'defvaralias)
  1570. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column))
  1571. (defcustom org-agenda-fontify-priorities 'cookies
  1572. "Non-nil means highlight low and high priorities in agenda.
  1573. When t, the highest priority entries are bold, lowest priority italic.
  1574. However, settings in `org-priority-faces' will overrule these faces.
  1575. When this variable is the symbol `cookies', only fontify the
  1576. cookies, not the entire task.
  1577. This may also be an association list of priority faces, whose
  1578. keys are the character values of `org-highest-priority',
  1579. `org-default-priority', and `org-lowest-priority' (the default values
  1580. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1581. color as a string, or a list like `(:background \"Red\")'.
  1582. If it is a color, the variable `org-faces-easy-properties'
  1583. determines if it is a foreground or a background color."
  1584. :group 'org-agenda-line-format
  1585. :type '(choice
  1586. (const :tag "Never" nil)
  1587. (const :tag "Defaults" t)
  1588. (const :tag "Cookies only" cookies)
  1589. (repeat :tag "Specify"
  1590. (list (character :tag "Priority" :value ?A)
  1591. (choice :tag "Face "
  1592. (string :tag "Color")
  1593. (sexp :tag "Face"))))))
  1594. (defcustom org-agenda-day-face-function nil
  1595. "Function called to determine what face should be used to display a day.
  1596. The only argument passed to that function is the day. It should
  1597. returns a face, or nil if does not want to specify a face and let
  1598. the normal rules apply."
  1599. :group 'org-agenda-line-format
  1600. :version "24.1"
  1601. :type 'function)
  1602. (defcustom org-agenda-category-icon-alist nil
  1603. "Alist of category icon to be displayed in agenda views.
  1604. Each entry should have the following format:
  1605. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1606. Where CATEGORY-REGEXP is a regexp matching the categories where
  1607. the icon should be displayed.
  1608. FILE-OR-DATA either a file path or a string containing image data.
  1609. The other fields can be omitted safely if not needed:
  1610. TYPE indicates the image type.
  1611. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1612. image data.
  1613. PROPS are additional image attributes to assign to the image,
  1614. like, e.g. `:ascent center'.
  1615. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1616. If you want to set the display properties yourself, just put a
  1617. list as second element:
  1618. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1619. For example, to display a 16px horizontal space for Emacs
  1620. category, you can use:
  1621. (\"Emacs\" '(space . (:width (16))))"
  1622. :group 'org-agenda-line-format
  1623. :version "24.1"
  1624. :type '(alist :key-type (string :tag "Regexp matching category")
  1625. :value-type (choice (list :tag "Icon"
  1626. (string :tag "File or data")
  1627. (symbol :tag "Type")
  1628. (boolean :tag "Data?")
  1629. (repeat :tag "Extra image properties" :inline t symbol))
  1630. (list :tag "Display properties" sexp))))
  1631. (defgroup org-agenda-column-view nil
  1632. "Options concerning column view in the agenda."
  1633. :tag "Org Agenda Column View"
  1634. :group 'org-agenda)
  1635. (defcustom org-agenda-columns-show-summaries t
  1636. "Non-nil means show summaries for columns displayed in the agenda view."
  1637. :group 'org-agenda-column-view
  1638. :type 'boolean)
  1639. (defcustom org-agenda-columns-compute-summary-properties t
  1640. "Non-nil means recompute all summary properties before column view.
  1641. When column view in the agenda is listing properties that have a summary
  1642. operator, it can go to all relevant buffers and recompute the summaries
  1643. there. This can mean overhead for the agenda column view, but is necessary
  1644. to have thing up to date.
  1645. As a special case, a CLOCKSUM property also makes sure that the clock
  1646. computations are current."
  1647. :group 'org-agenda-column-view
  1648. :type 'boolean)
  1649. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1650. "Non-nil means the duration of an appointment will add to day effort.
  1651. The property to which appointment durations will be added is the one given
  1652. in the option `org-effort-property'. If an appointment does not have
  1653. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1654. is not set, an appointment without end time will not contribute to the time
  1655. estimate."
  1656. :group 'org-agenda-column-view
  1657. :type 'boolean)
  1658. (defcustom org-agenda-auto-exclude-function nil
  1659. "A function called with a tag to decide if it is filtered on '/ RET'.
  1660. The sole argument to the function, which is called once for each
  1661. possible tag, is a string giving the name of the tag. The
  1662. function should return either nil if the tag should be included
  1663. as normal, or \"-<TAG>\" to exclude the tag.
  1664. Note that for the purpose of tag filtering, only the lower-case version of
  1665. all tags will be considered, so that this function will only ever see
  1666. the lower-case version of all tags."
  1667. :group 'org-agenda
  1668. :type 'function)
  1669. (defcustom org-agenda-bulk-custom-functions nil
  1670. "Alist of characters and custom functions for bulk actions.
  1671. For example, this value makes those two functions available:
  1672. '((?R set-category)
  1673. (?C bulk-cut))
  1674. With selected entries in an agenda buffer, `B R' will call
  1675. the custom function `set-category' on the selected entries.
  1676. Note that functions in this alist don't need to be quoted."
  1677. :type 'alist
  1678. :version "24.1"
  1679. :group 'org-agenda)
  1680. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1681. "Execute BODY with point at location given by `org-hd-marker' property.
  1682. If STRING is non-nil, the text property will be fetched from position 0
  1683. in that string. If STRING is nil, it will be fetched from the beginning
  1684. of the current line."
  1685. (org-with-gensyms (marker)
  1686. `(let ((,marker (get-text-property (if string 0 (point-at-bol))
  1687. 'org-hd-marker ,string)))
  1688. (with-current-buffer (marker-buffer ,marker)
  1689. (save-excursion
  1690. (goto-char ,marker)
  1691. ,@body)))))
  1692. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1693. (defun org-add-agenda-custom-command (entry)
  1694. "Replace or add a command in `org-agenda-custom-commands'.
  1695. This is mostly for hacking and trying a new command - once the command
  1696. works you probably want to add it to `org-agenda-custom-commands' for good."
  1697. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1698. (if ass
  1699. (setcdr ass (cdr entry))
  1700. (push entry org-agenda-custom-commands))))
  1701. ;;; Define the org-agenda-mode
  1702. (defvar org-agenda-mode-map (make-sparse-keymap)
  1703. "Keymap for `org-agenda-mode'.")
  1704. (if (fboundp 'defvaralias)
  1705. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map))
  1706. (defvar org-agenda-menu) ; defined later in this file.
  1707. (defvar org-agenda-restrict nil) ; defined later in this file.
  1708. (defvar org-agenda-follow-mode nil)
  1709. (defvar org-agenda-entry-text-mode nil)
  1710. (defvar org-agenda-clockreport-mode nil)
  1711. (defvar org-agenda-show-log nil)
  1712. (defvar org-agenda-redo-command nil)
  1713. (defvar org-agenda-query-string nil)
  1714. (defvar org-agenda-mode-hook nil
  1715. "Hook run after `org-agenda-mode' is turned on.
  1716. The buffer is still writable when this hook is called.")
  1717. (defvar org-agenda-type nil)
  1718. (defvar org-agenda-force-single-file nil)
  1719. (defvar org-agenda-bulk-marked-entries nil
  1720. "List of markers that refer to marked entries in the agenda.")
  1721. ;;; Multiple agenda buffers support
  1722. (defcustom org-agenda-sticky nil
  1723. "Non-nil means agenda q key will bury agenda buffers.
  1724. Agenda commands will then show existing buffer instead of generating new ones.
  1725. When nil, `q' will kill the single agenda buffer."
  1726. :group 'org-agenda
  1727. :version "24.3"
  1728. :type 'boolean)
  1729. ;;;###autoload
  1730. (defun org-toggle-sticky-agenda (&optional arg)
  1731. "Toggle `org-agenda-sticky'."
  1732. (interactive "P")
  1733. (let ((new-value (if arg
  1734. (> (prefix-numeric-value arg) 0)
  1735. (not org-agenda-sticky))))
  1736. (if (equal new-value org-agenda-sticky)
  1737. (and (org-called-interactively-p 'interactive)
  1738. (message "Sticky agenda was already %s"
  1739. (if org-agenda-sticky "enabled" "disabled")))
  1740. (setq org-agenda-sticky new-value)
  1741. (org-agenda-kill-all-agenda-buffers)
  1742. (and (org-called-interactively-p 'interactive)
  1743. (message "Sticky agenda was %s"
  1744. (if org-agenda-sticky "enabled" "disabled"))))))
  1745. (autoload 'org-toggle-sticky-agenda "org-agenda" "\
  1746. Toggle `org-agenda-sticky'.
  1747. \(fn &optional ARG)" t nil)
  1748. (defvar org-agenda-buffer nil
  1749. "Agenda buffer currently being generated.")
  1750. (defvar org-agenda-last-prefix-arg nil)
  1751. (defvar org-agenda-this-buffer-name nil)
  1752. (defvar org-agenda-doing-sticky-redo nil)
  1753. (defvar org-agenda-this-buffer-is-sticky nil)
  1754. (defconst org-agenda-local-vars
  1755. '(org-agenda-this-buffer-name
  1756. org-agenda-undo-list
  1757. org-agenda-pending-undo-list
  1758. org-agenda-follow-mode
  1759. org-agenda-entry-text-mode
  1760. org-agenda-clockreport-mode
  1761. org-agenda-show-log
  1762. org-agenda-redo-command
  1763. org-agenda-query-string
  1764. org-agenda-type
  1765. org-agenda-bulk-marked-entries
  1766. org-agenda-undo-has-started-in
  1767. org-agenda-info
  1768. org-agenda-tag-filter-overlays
  1769. org-agenda-cat-filter-overlays
  1770. org-agenda-pre-window-conf
  1771. org-agenda-columns-active
  1772. org-agenda-tag-filter
  1773. org-agenda-category-filter
  1774. org-agenda-markers
  1775. org-agenda-last-search-view-search-was-boolean
  1776. org-agenda-filtered-by-category
  1777. org-agenda-filter-form
  1778. org-agenda-show-window
  1779. org-agenda-cycle-counter
  1780. org-agenda-last-prefix-arg)
  1781. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1782. (defun org-agenda-mode ()
  1783. "Mode for time-sorted view on action items in Org-mode files.
  1784. The following commands are available:
  1785. \\{org-agenda-mode-map}"
  1786. (interactive)
  1787. (cond (org-agenda-doing-sticky-redo
  1788. ;; Refreshing sticky agenda-buffer
  1789. ;;
  1790. ;; Preserve the value of `org-agenda-local-vars' variables,
  1791. ;; while letting `kill-all-local-variables' kill the rest
  1792. (let ((save (buffer-local-variables)))
  1793. (kill-all-local-variables)
  1794. (mapc 'make-local-variable org-agenda-local-vars)
  1795. (dolist (elem save)
  1796. (let ((var (car elem))
  1797. (val (cdr elem)))
  1798. (when (and val
  1799. (member var org-agenda-local-vars))
  1800. (set var val)))))
  1801. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
  1802. (org-agenda-sticky
  1803. ;; Creating a sticky Agenda buffer for the first time
  1804. (kill-all-local-variables)
  1805. (mapc 'make-local-variable org-agenda-local-vars)
  1806. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
  1807. (t
  1808. ;; Creating a non-sticky agenda buffer
  1809. (kill-all-local-variables)
  1810. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) nil)))
  1811. (setq org-agenda-undo-list nil
  1812. org-agenda-pending-undo-list nil
  1813. org-agenda-bulk-marked-entries nil)
  1814. (setq major-mode 'org-agenda-mode)
  1815. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1816. (org-set-local 'font-lock-global-modes (list 'not major-mode))
  1817. (setq mode-name "Org-Agenda")
  1818. (use-local-map org-agenda-mode-map)
  1819. (easy-menu-add org-agenda-menu)
  1820. (if org-startup-truncated (setq truncate-lines t))
  1821. (org-set-local 'line-move-visual nil)
  1822. (org-add-hook 'post-command-hook 'org-agenda-update-agenda-type nil 'local)
  1823. (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1824. ;; Make sure properties are removed when copying text
  1825. (make-local-variable 'filter-buffer-substring-functions)
  1826. (add-hook 'filter-buffer-substring-functions
  1827. (lambda (fun start end delete)
  1828. (substring-no-properties (funcall fun start end delete))))
  1829. (unless org-agenda-keep-modes
  1830. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1831. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  1832. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode
  1833. org-agenda-show-log org-agenda-start-with-log-mode))
  1834. (easy-menu-change
  1835. '("Agenda") "Agenda Files"
  1836. (append
  1837. (list
  1838. (vector
  1839. (if (get 'org-agenda-files 'org-restrict)
  1840. "Restricted to single file"
  1841. "Edit File List")
  1842. '(org-edit-agenda-file-list)
  1843. (not (get 'org-agenda-files 'org-restrict)))
  1844. "--")
  1845. (mapcar 'org-file-menu-entry (org-agenda-files))))
  1846. (org-agenda-set-mode-name)
  1847. (apply
  1848. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  1849. (list 'org-agenda-mode-hook)))
  1850. (substitute-key-definition 'undo 'org-agenda-undo
  1851. org-agenda-mode-map global-map)
  1852. (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
  1853. (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
  1854. (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
  1855. (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
  1856. (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
  1857. (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
  1858. (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
  1859. (org-defkey org-agenda-mode-map "#" 'org-agenda-dim-blocked-tasks)
  1860. (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
  1861. (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
  1862. (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
  1863. (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
  1864. (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
  1865. (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
  1866. (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
  1867. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
  1868. (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
  1869. (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
  1870. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
  1871. (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
  1872. (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
  1873. (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
  1874. (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
  1875. (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
  1876. (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
  1877. (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
  1878. (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
  1879. (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
  1880. (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
  1881. (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
  1882. (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
  1883. (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
  1884. (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
  1885. (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
  1886. (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
  1887. (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
  1888. (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
  1889. (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
  1890. (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
  1891. (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
  1892. (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
  1893. (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
  1894. (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
  1895. (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
  1896. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
  1897. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
  1898. (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
  1899. (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
  1900. (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
  1901. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  1902. (while l (org-defkey org-agenda-mode-map
  1903. (int-to-string (pop l)) 'digit-argument)))
  1904. (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
  1905. (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
  1906. (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
  1907. (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
  1908. (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
  1909. (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
  1910. (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
  1911. (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
  1912. (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
  1913. (org-defkey org-agenda-mode-map "g" (lambda () (interactive) (org-agenda-redo t)))
  1914. (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
  1915. (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
  1916. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  1917. 'org-clock-modify-effort-estimate)
  1918. (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
  1919. (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
  1920. (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
  1921. (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
  1922. (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
  1923. (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
  1924. (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
  1925. (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
  1926. (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
  1927. (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
  1928. (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
  1929. (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
  1930. (substitute-key-definition 'next-line 'org-agenda-next-line
  1931. org-agenda-mode-map global-map)
  1932. (substitute-key-definition 'previous-line 'org-agenda-previous-line
  1933. org-agenda-mode-map global-map)
  1934. (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
  1935. (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
  1936. (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
  1937. (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-priority)
  1938. (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
  1939. (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
  1940. (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
  1941. (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
  1942. (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
  1943. (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
  1944. (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
  1945. (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
  1946. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
  1947. (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
  1948. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
  1949. (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
  1950. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
  1951. (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
  1952. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
  1953. (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
  1954. (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
  1955. (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
  1956. (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
  1957. (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
  1958. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
  1959. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
  1960. (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
  1961. (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
  1962. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
  1963. (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
  1964. (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
  1965. (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
  1966. (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
  1967. (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
  1968. (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
  1969. (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
  1970. (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
  1971. (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-category)
  1972. (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
  1973. (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
  1974. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
  1975. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
  1976. (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
  1977. (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
  1978. (when org-agenda-mouse-1-follows-link
  1979. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  1980. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  1981. '("Agenda"
  1982. ("Agenda Files")
  1983. "--"
  1984. ("Agenda Dates"
  1985. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
  1986. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  1987. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  1988. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  1989. "--"
  1990. ("View"
  1991. ["Day View" org-agenda-day-view
  1992. :active (org-agenda-check-type nil 'agenda)
  1993. :style radio :selected (eq org-agenda-current-span 'day)
  1994. :keys "v d (or just d)"]
  1995. ["Week View" org-agenda-week-view
  1996. :active (org-agenda-check-type nil 'agenda)
  1997. :style radio :selected (eq org-agenda-current-span 'week)
  1998. :keys "v w (or just w)"]
  1999. ["Month View" org-agenda-month-view
  2000. :active (org-agenda-check-type nil 'agenda)
  2001. :style radio :selected (eq org-agenda-current-span 'month)
  2002. :keys "v m"]
  2003. ["Year View" org-agenda-year-view
  2004. :active (org-agenda-check-type nil 'agenda)
  2005. :style radio :selected (eq org-agenda-current-span 'year)
  2006. :keys "v y"]
  2007. "--"
  2008. ["Include Diary" org-agenda-toggle-diary
  2009. :style toggle :selected org-agenda-include-diary
  2010. :active (org-agenda-check-type nil 'agenda)]
  2011. ["Include Deadlines" org-agenda-toggle-deadlines
  2012. :style toggle :selected org-agenda-include-deadlines
  2013. :active (org-agenda-check-type nil 'agenda)]
  2014. ["Use Time Grid" org-agenda-toggle-time-grid
  2015. :style toggle :selected org-agenda-use-time-grid
  2016. :active (org-agenda-check-type nil 'agenda)]
  2017. "--"
  2018. ["Show clock report" org-agenda-clockreport-mode
  2019. :style toggle :selected org-agenda-clockreport-mode
  2020. :active (org-agenda-check-type nil 'agenda)]
  2021. ["Show some entry text" org-agenda-entry-text-mode
  2022. :style toggle :selected org-agenda-entry-text-mode
  2023. :active t]
  2024. "--"
  2025. ["Show Logbook entries" org-agenda-log-mode
  2026. :style toggle :selected org-agenda-show-log
  2027. :active (org-agenda-check-type nil 'agenda 'timeline)
  2028. :keys "v l (or just l)"]
  2029. ["Include archived trees" org-agenda-archives-mode
  2030. :style toggle :selected org-agenda-archives-mode :active t
  2031. :keys "v a"]
  2032. ["Include archive files" (org-agenda-archives-mode t)
  2033. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  2034. :keys "v A"]
  2035. "--"
  2036. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  2037. ["Write view to file" org-agenda-write t]
  2038. ["Rebuild buffer" org-agenda-redo t]
  2039. ["Save all Org-mode Buffers" org-save-all-org-buffers t]
  2040. "--"
  2041. ["Show original entry" org-agenda-show t]
  2042. ["Go To (other window)" org-agenda-goto t]
  2043. ["Go To (this window)" org-agenda-switch-to t]
  2044. ["Capture with cursor date" org-agenda-capture t]
  2045. ["Follow Mode" org-agenda-follow-mode
  2046. :style toggle :selected org-agenda-follow-mode :active t]
  2047. ;; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  2048. "--"
  2049. ("TODO"
  2050. ["Cycle TODO" org-agenda-todo t]
  2051. ["Next TODO set" org-agenda-todo-nextset t]
  2052. ["Previous TODO set" org-agenda-todo-previousset t]
  2053. ["Add note" org-agenda-add-note t])
  2054. ("Archive/Refile/Delete"
  2055. ["Archive default" org-agenda-archive-default t]
  2056. ["Archive default" org-agenda-archive-default-with-confirmation t]
  2057. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  2058. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  2059. ["Archive subtree" org-agenda-archive t]
  2060. "--"
  2061. ["Refile" org-agenda-refile t]
  2062. "--"
  2063. ["Delete subtree" org-agenda-kill t])
  2064. ("Bulk action"
  2065. ["Mark entry" org-agenda-bulk-mark t]
  2066. ["Mark all" org-agenda-bulk-mark-all t]
  2067. ["Mark matching regexp" org-agenda-bulk-mark-regexp t]
  2068. ["Unmark entry" org-agenda-bulk-unmark t]
  2069. ["Unmark all entries" org-agenda-bulk-unmark-all :active t :keys "U"])
  2070. ["Act on all marked" org-agenda-bulk-action t]
  2071. "--"
  2072. ("Tags and Properties"
  2073. ["Show all Tags" org-agenda-show-tags t]
  2074. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  2075. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  2076. "--"
  2077. ["Column View" org-columns t])
  2078. ("Deadline/Schedule"
  2079. ["Schedule" org-agenda-schedule t]
  2080. ["Set Deadline" org-agenda-deadline t]
  2081. "--"
  2082. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
  2083. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
  2084. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
  2085. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
  2086. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
  2087. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
  2088. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
  2089. ("Clock and Effort"
  2090. ["Clock in" org-agenda-clock-in t]
  2091. ["Clock out" org-agenda-clock-out t]
  2092. ["Clock cancel" org-agenda-clock-cancel t]
  2093. ["Goto running clock" org-clock-goto t]
  2094. "--"
  2095. ["Set Effort" org-agenda-set-effort t]
  2096. ["Change clocked effort" org-clock-modify-effort-estimate
  2097. (org-clock-is-active)])
  2098. ("Priority"
  2099. ["Set Priority" org-agenda-priority t]
  2100. ["Increase Priority" org-agenda-priority-up t]
  2101. ["Decrease Priority" org-agenda-priority-down t]
  2102. ["Show Priority" org-show-priority t])
  2103. ("Calendar/Diary"
  2104. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
  2105. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
  2106. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
  2107. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
  2108. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
  2109. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
  2110. "--"
  2111. ["Create iCalendar File" org-icalendar-combine-agenda-files t])
  2112. "--"
  2113. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2114. "--"
  2115. ("MobileOrg"
  2116. ["Push Files and Views" org-mobile-push t]
  2117. ["Get Captured and Flagged" org-mobile-pull t]
  2118. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
  2119. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2120. "--"
  2121. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2122. "--"
  2123. ["Quit" org-agenda-quit t]
  2124. ["Exit and Release Buffers" org-agenda-exit t]
  2125. ))
  2126. ;;; Agenda undo
  2127. (defvar org-agenda-allow-remote-undo t
  2128. "Non-nil means allow remote undo from the agenda buffer.")
  2129. (defvar org-agenda-undo-has-started-in nil
  2130. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2131. (defun org-agenda-undo ()
  2132. "Undo a remote editing step in the agenda.
  2133. This undoes changes both in the agenda buffer and in the remote buffer
  2134. that have been changed along."
  2135. (interactive)
  2136. (or org-agenda-allow-remote-undo
  2137. (error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2138. (if (not (eq this-command last-command))
  2139. (setq org-agenda-undo-has-started-in nil
  2140. org-agenda-pending-undo-list org-agenda-undo-list))
  2141. (if (not org-agenda-pending-undo-list)
  2142. (error "No further undo information"))
  2143. (let* ((entry (pop org-agenda-pending-undo-list))
  2144. buf line cmd rembuf)
  2145. (setq cmd (pop entry) line (pop entry))
  2146. (setq rembuf (nth 2 entry))
  2147. (org-with-remote-undo rembuf
  2148. (while (bufferp (setq buf (pop entry)))
  2149. (if (pop entry)
  2150. (with-current-buffer buf
  2151. (let ((last-undo-buffer buf)
  2152. (inhibit-read-only t))
  2153. (unless (memq buf org-agenda-undo-has-started-in)
  2154. (push buf org-agenda-undo-has-started-in)
  2155. (make-local-variable 'pending-undo-list)
  2156. (undo-start))
  2157. (while (and pending-undo-list
  2158. (listp pending-undo-list)
  2159. (not (car pending-undo-list)))
  2160. (pop pending-undo-list))
  2161. (undo-more 1))))))
  2162. (org-goto-line line)
  2163. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2164. (defun org-verify-change-for-undo (l1 l2)
  2165. "Verify that a real change occurred between the undo lists L1 and L2."
  2166. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2167. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2168. (not (eq l1 l2)))
  2169. ;;; Agenda dispatch
  2170. (defvar org-agenda-restrict-begin (make-marker))
  2171. (defvar org-agenda-restrict-end (make-marker))
  2172. (defvar org-agenda-last-dispatch-buffer nil)
  2173. (defvar org-agenda-overriding-restriction nil)
  2174. (defcustom org-agenda-custom-commands-contexts nil
  2175. "Alist of custom agenda keys and contextual rules.
  2176. For example, if you have a custom agenda command \"p\" and you
  2177. want this command to be accessible only from plain text files,
  2178. use this:
  2179. '((\"p\" ((in-file . \"\\.txt\"))))
  2180. Here are the available contexts definitions:
  2181. in-file: command displayed only in matching files
  2182. in-mode: command displayed only in matching modes
  2183. not-in-file: command not displayed in matching files
  2184. not-in-mode: command not displayed in matching modes
  2185. in-buffer: command displayed only in matching buffers
  2186. not-in-buffer: command not displayed in matching buffers
  2187. [function]: a custom function taking no argument
  2188. If you define several checks, the agenda command will be
  2189. accessible if there is at least one valid check.
  2190. You can also bind a key to another agenda custom command
  2191. depending on contextual rules.
  2192. '((\"p\" \"q\" ((in-file . \"\\.txt\"))))
  2193. Here it means: in .txt files, use \"p\" as the key for the
  2194. agenda command otherwise associated with \"q\". (The command
  2195. originally associated with \"q\" is not displayed to avoid
  2196. duplicates.)"
  2197. :version "24.3"
  2198. :group 'org-agenda-custom-commands
  2199. :type '(repeat (list :tag "Rule"
  2200. (string :tag " Agenda key")
  2201. (string :tag "Replace by command")
  2202. (repeat :tag "Available when"
  2203. (choice
  2204. (cons :tag "Condition"
  2205. (choice
  2206. (const :tag "In file" in-file)
  2207. (const :tag "Not in file" not-in-file)
  2208. (const :tag "In buffer" in-buffer)
  2209. (const :tag "Not in buffer" not-in-buffer)
  2210. (const :tag "In mode" in-mode)
  2211. (const :tag "Not in mode" not-in-mode))
  2212. (regexp))
  2213. (function :tag "Custom function"))))))
  2214. (defcustom org-agenda-max-entries nil
  2215. "Maximum number of entries to display in an agenda.
  2216. This can be nil (no limit) or an integer or an alist of agenda
  2217. types with an associated number of entries to display in this
  2218. type."
  2219. :version "24.3"
  2220. :group 'org-agenda-custom-commands
  2221. :type '(choice (symbol :tag "No limit" nil)
  2222. (integer :tag "Max number of entries")
  2223. (repeat
  2224. (cons (choice :tag "Agenda type"
  2225. (const agenda)
  2226. (const todo)
  2227. (const tags)
  2228. (const search)
  2229. (const timeline))
  2230. (integer :tag "Max number of entries")))))
  2231. (defcustom org-agenda-max-todos nil
  2232. "Maximum number of TODOs to display in an agenda.
  2233. This can be nil (no limit) or an integer or an alist of agenda
  2234. types with an associated number of entries to display in this
  2235. type."
  2236. :version "24.3"
  2237. :group 'org-agenda-custom-commands
  2238. :type '(choice (symbol :tag "No limit" nil)
  2239. (integer :tag "Max number of entries")
  2240. (repeat
  2241. (cons (choice :tag "Agenda type"
  2242. (const agenda)
  2243. (const todo)
  2244. (const tags)
  2245. (const search)
  2246. (const timeline))
  2247. (integer :tag "Max number of entries")))))
  2248. (defcustom org-agenda-max-tags nil
  2249. "Maximum number of tagged entries to display in an agenda.
  2250. This can be nil (no limit) or an integer or an alist of agenda
  2251. types with an associated number of entries to display in this
  2252. type."
  2253. :version "24.3"
  2254. :group 'org-agenda-custom-commands
  2255. :type '(choice (symbol :tag "No limit" nil)
  2256. (integer :tag "Max number of entries")
  2257. (repeat
  2258. (cons (choice :tag "Agenda type"
  2259. (const agenda)
  2260. (const todo)
  2261. (const tags)
  2262. (const search)
  2263. (const timeline))
  2264. (integer :tag "Max number of entries")))))
  2265. (defcustom org-agenda-max-effort nil
  2266. "Maximum cumulated effort duration for the agenda.
  2267. This can be nil (no limit) or a number of minutes (as an integer)
  2268. or an alist of agenda types with an associated number of minutes
  2269. to limit entries to in this type."
  2270. :version "24.3"
  2271. :group 'org-agenda-custom-commands
  2272. :type '(choice (symbol :tag "No limit" nil)
  2273. (integer :tag "Max number of entries")
  2274. (repeat
  2275. (cons (choice :tag "Agenda type"
  2276. (const agenda)
  2277. (const todo)
  2278. (const tags)
  2279. (const search)
  2280. (const timeline))
  2281. (integer :tag "Max number of entries")))))
  2282. (defvar org-keys nil)
  2283. (defvar org-match nil)
  2284. ;;;###autoload
  2285. (defun org-agenda (&optional arg org-keys restriction)
  2286. "Dispatch agenda commands to collect entries to the agenda buffer.
  2287. Prompts for a command to execute. Any prefix arg will be passed
  2288. on to the selected command. The default selections are:
  2289. a Call `org-agenda-list' to display the agenda for current day or week.
  2290. t Call `org-todo-list' to display the global todo list.
  2291. T Call `org-todo-list' to display the global todo list, select only
  2292. entries with a specific TODO keyword (the user gets a prompt).
  2293. m Call `org-tags-view' to display headlines with tags matching
  2294. a condition (the user is prompted for the condition).
  2295. M Like `m', but select only TODO entries, no ordinary headlines.
  2296. L Create a timeline for the current buffer.
  2297. e Export views to associated files.
  2298. s Search entries for keywords.
  2299. S Search entries for keywords, only with TODO keywords.
  2300. / Multi occur across all agenda files and also files listed
  2301. in `org-agenda-text-search-extra-files'.
  2302. < Restrict agenda commands to buffer, subtree, or region.
  2303. Press several times to get the desired effect.
  2304. > Remove a previous restriction.
  2305. # List \"stuck\" projects.
  2306. ! Configure what \"stuck\" means.
  2307. C Configure custom agenda commands.
  2308. More commands can be added by configuring the variable
  2309. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2310. searches can be pre-defined in this way.
  2311. If the current buffer is in Org-mode and visiting a file, you can also
  2312. first press `<' once to indicate that the agenda should be temporarily
  2313. \(until the next use of \\[org-agenda]) restricted to the current file.
  2314. Pressing `<' twice means to restrict to the current subtree or region
  2315. \(if active)."
  2316. (interactive "P")
  2317. (catch 'exit
  2318. (let* ((prefix-descriptions nil)
  2319. (org-agenda-buffer-name org-agenda-buffer-name)
  2320. (org-agenda-window-setup (if (equal (buffer-name)
  2321. org-agenda-buffer-name)
  2322. 'current-window
  2323. org-agenda-window-setup))
  2324. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2325. (org-agenda-custom-commands
  2326. ;; normalize different versions
  2327. (delq nil
  2328. (mapcar
  2329. (lambda (x)
  2330. (cond ((stringp (cdr x))
  2331. (push x prefix-descriptions)
  2332. nil)
  2333. ((stringp (nth 1 x)) x)
  2334. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2335. (t (cons (car x) (cons "" (cdr x))))))
  2336. org-agenda-custom-commands)))
  2337. (org-agenda-custom-commands
  2338. (org-contextualize-keys
  2339. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2340. (buf (current-buffer))
  2341. (bfn (buffer-file-name (buffer-base-buffer)))
  2342. entry key type org-match lprops ans)
  2343. ;; Turn off restriction unless there is an overriding one,
  2344. (unless org-agenda-overriding-restriction
  2345. (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
  2346. ;; There is a request to keep the file list in place
  2347. (put 'org-agenda-files 'org-restrict nil))
  2348. (setq org-agenda-restrict nil)
  2349. (move-marker org-agenda-restrict-begin nil)
  2350. (move-marker org-agenda-restrict-end nil))
  2351. ;; Delete old local properties
  2352. (put 'org-agenda-redo-command 'org-lprops nil)
  2353. ;; Delete previously set last-arguments
  2354. (put 'org-agenda-redo-command 'last-args nil)
  2355. ;; Remember where this call originated
  2356. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2357. (unless org-keys
  2358. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2359. org-keys (car ans)
  2360. restriction (cdr ans)))
  2361. ;; If we have sticky agenda buffers, set a name for the buffer,
  2362. ;; depending on the invoking keys. The user may still set this
  2363. ;; as a command option, which will overwrite what we do here.
  2364. (if org-agenda-sticky
  2365. (setq org-agenda-buffer-name
  2366. (format "*Org Agenda(%s)*" org-keys)))
  2367. ;; Establish the restriction, if any
  2368. (when (and (not org-agenda-overriding-restriction) restriction)
  2369. (put 'org-agenda-files 'org-restrict (list bfn))
  2370. (cond
  2371. ((eq restriction 'region)
  2372. (setq org-agenda-restrict t)
  2373. (move-marker org-agenda-restrict-begin (region-beginning))
  2374. (move-marker org-agenda-restrict-end (region-end)))
  2375. ((eq restriction 'subtree)
  2376. (save-excursion
  2377. (setq org-agenda-restrict t)
  2378. (org-back-to-heading t)
  2379. (move-marker org-agenda-restrict-begin (point))
  2380. (move-marker org-agenda-restrict-end
  2381. (progn (org-end-of-subtree t)))))))
  2382. ;; For example the todo list should not need it (but does...)
  2383. (cond
  2384. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2385. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2386. (progn
  2387. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2388. lprops (nth 4 entry))
  2389. (if org-agenda-sticky
  2390. (setq org-agenda-buffer-name
  2391. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2392. (format "*Org Agenda(%s)*" org-keys))))
  2393. (put 'org-agenda-redo-command 'org-lprops lprops)
  2394. (cond
  2395. ((eq type 'agenda)
  2396. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2397. ((eq type 'alltodo)
  2398. (org-let lprops '(org-todo-list current-prefix-arg)))
  2399. ((eq type 'search)
  2400. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2401. ((eq type 'stuck)
  2402. (org-let lprops '(org-agenda-list-stuck-projects
  2403. current-prefix-arg)))
  2404. ((eq type 'tags)
  2405. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2406. ((eq type 'tags-todo)
  2407. (org-let lprops '(org-tags-view '(4) org-match)))
  2408. ((eq type 'todo)
  2409. (org-let lprops '(org-todo-list org-match)))
  2410. ((eq type 'tags-tree)
  2411. (org-check-for-org-mode)
  2412. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2413. ((eq type 'todo-tree)
  2414. (org-check-for-org-mode)
  2415. (org-let lprops
  2416. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2417. (regexp-quote org-match) "\\>"))))
  2418. ((eq type 'occur-tree)
  2419. (org-check-for-org-mode)
  2420. (org-let lprops '(org-occur org-match)))
  2421. ((functionp type)
  2422. (org-let lprops '(funcall type org-match)))
  2423. ((fboundp type)
  2424. (org-let lprops '(funcall type org-match)))
  2425. (t (error "Invalid custom agenda command type %s" type))))
  2426. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2427. ((equal org-keys "C")
  2428. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2429. (customize-variable 'org-agenda-custom-commands))
  2430. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2431. ((equal org-keys "s") (call-interactively 'org-search-view))
  2432. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2433. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2434. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2435. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2436. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2437. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2438. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2439. (org-add-hook
  2440. 'post-command-hook
  2441. (lambda ()
  2442. (unless (current-message)
  2443. (let* ((m (org-agenda-get-any-marker))
  2444. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2445. (when note
  2446. (message (concat
  2447. "FLAGGING-NOTE ([?] for more info): "
  2448. (org-add-props
  2449. (replace-regexp-in-string
  2450. "\\\\n" "//"
  2451. (copy-sequence note))
  2452. nil 'face 'org-warning)))))))
  2453. t t))
  2454. ((equal org-keys "L")
  2455. (unless (derived-mode-p 'org-mode)
  2456. (error "This is not an Org-mode file"))
  2457. (unless restriction
  2458. (put 'org-agenda-files 'org-restrict (list bfn))
  2459. (org-call-with-arg 'org-timeline arg)))
  2460. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2461. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2462. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2463. (t (error "Invalid agenda key"))))))
  2464. (autoload 'org-agenda "org-agenda" "\
  2465. Dispatch agenda commands to collect entries to the agenda buffer.
  2466. Prompts for a command to execute. Any prefix arg will be passed
  2467. on to the selected command. The default selections are:
  2468. a Call `org-agenda-list' to display the agenda for current day or week.
  2469. t Call `org-todo-list' to display the global todo list.
  2470. T Call `org-todo-list' to display the global todo list, select only
  2471. entries with a specific TODO keyword (the user gets a prompt).
  2472. m Call `org-tags-view' to display headlines with tags matching
  2473. a condition (the user is prompted for the condition).
  2474. M Like `m', but select only TODO entries, no ordinary headlines.
  2475. L Create a timeline for the current buffer.
  2476. e Export views to associated files.
  2477. s Search entries for keywords.
  2478. S Search entries for keywords, only with TODO keywords.
  2479. / Multi occur across all agenda files and also files listed
  2480. in `org-agenda-text-search-extra-files'.
  2481. < Restrict agenda commands to buffer, subtree, or region.
  2482. Press several times to get the desired effect.
  2483. > Remove a previous restriction.
  2484. # List \"stuck\" projects.
  2485. ! Configure what \"stuck\" means.
  2486. C Configure custom agenda commands.
  2487. More commands can be added by configuring the variable
  2488. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2489. searches can be pre-defined in this way.
  2490. If the current buffer is in Org-mode and visiting a file, you can also
  2491. first press `<' once to indicate that the agenda should be temporarily
  2492. \(until the next use of \\[org-agenda]) restricted to the current file.
  2493. Pressing `<' twice means to restrict to the current subtree or region
  2494. \(if active).
  2495. \(fn &optional ARG ORG-KEYS RESTRICTION)" t nil)
  2496. (defun org-agenda-append-agenda ()
  2497. "Append another agenda view to the current one.
  2498. This function allows interactive building of block agendas.
  2499. Agenda views are separated by `org-agenda-block-separator'."
  2500. (interactive)
  2501. (unless (derived-mode-p 'org-agenda-mode)
  2502. (error "Can only append from within agenda buffer"))
  2503. (let ((org-agenda-multi t))
  2504. (org-agenda)
  2505. (widen)
  2506. (org-agenda-finalize)
  2507. (org-agenda-fit-window-to-buffer)))
  2508. (defun org-agenda-normalize-custom-commands (cmds)
  2509. (delq nil
  2510. (mapcar
  2511. (lambda (x)
  2512. (cond ((stringp (cdr x)) nil)
  2513. ((stringp (nth 1 x)) x)
  2514. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2515. (t (cons (car x) (cons "" (cdr x))))))
  2516. cmds)))
  2517. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2518. "The user interface for selecting an agenda command."
  2519. (catch 'exit
  2520. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2521. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2522. (region-p (org-region-active-p))
  2523. (custom org-agenda-custom-commands)
  2524. (selstring "")
  2525. restriction second-time
  2526. c entry key type match prefixes rmheader header-end custom1 desc
  2527. line lines left right n n1)
  2528. (save-window-excursion
  2529. (delete-other-windows)
  2530. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2531. (erase-buffer)
  2532. (insert (eval-when-compile
  2533. (let ((header
  2534. "Press key for an agenda command: < Buffer, subtree/region restriction
  2535. -------------------------------- > Remove restriction
  2536. a Agenda for current week or day e Export agenda views
  2537. t List of all TODO entries T Entries with special TODO kwd
  2538. m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
  2539. s Search for keywords S Like s, but only TODO entries
  2540. L Timeline for current buffer # List stuck projects (!=configure)
  2541. / Multi-occur C Configure custom agenda commands
  2542. ? Find :FLAGGED: entries * Toggle sticky agenda views
  2543. ")
  2544. (start 0))
  2545. (while (string-match
  2546. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2547. header start)
  2548. (setq start (match-end 0))
  2549. (add-text-properties (match-beginning 2) (match-end 2)
  2550. '(face bold) header))
  2551. header)))
  2552. (setq header-end (point-marker))
  2553. (while t
  2554. (setq custom1 custom)
  2555. (when (eq rmheader t)
  2556. (org-goto-line 1)
  2557. (re-search-forward ":" nil t)
  2558. (delete-region (match-end 0) (point-at-eol))
  2559. (forward-char 1)
  2560. (looking-at "-+")
  2561. (delete-region (match-end 0) (point-at-eol))
  2562. (move-marker header-end (match-end 0)))
  2563. (goto-char header-end)
  2564. (delete-region (point) (point-max))
  2565. ;; Produce all the lines that describe custom commands and prefixes
  2566. (setq lines nil)
  2567. (while (setq entry (pop custom1))
  2568. (setq key (car entry) desc (nth 1 entry)
  2569. type (nth 2 entry)
  2570. match (nth 3 entry))
  2571. (if (> (length key) 1)
  2572. (add-to-list 'prefixes (string-to-char key))
  2573. (setq line
  2574. (format
  2575. "%-4s%-14s"
  2576. (org-add-props (copy-sequence key)
  2577. '(face bold))
  2578. (cond
  2579. ((string-match "\\S-" desc) desc)
  2580. ((eq type 'agenda) "Agenda for current week or day")
  2581. ((eq type 'alltodo) "List of all TODO entries")
  2582. ((eq type 'search) "Word search")
  2583. ((eq type 'stuck) "List of stuck projects")
  2584. ((eq type 'todo) "TODO keyword")
  2585. ((eq type 'tags) "Tags query")
  2586. ((eq type 'tags-todo) "Tags (TODO)")
  2587. ((eq type 'tags-tree) "Tags tree")
  2588. ((eq type 'todo-tree) "TODO kwd tree")
  2589. ((eq type 'occur-tree) "Occur tree")
  2590. ((functionp type) (if (symbolp type)
  2591. (symbol-name type)
  2592. "Lambda expression"))
  2593. (t "???"))))
  2594. (if org-agenda-menu-show-matcher
  2595. (setq line
  2596. (concat line ": "
  2597. (cond
  2598. ((stringp match)
  2599. (setq match (copy-sequence match))
  2600. (org-add-props match nil 'face 'org-warning))
  2601. ((listp type)
  2602. (format "set of %d commands" (length type))))))
  2603. (if (org-string-nw-p match)
  2604. (add-text-properties
  2605. 0 (length line) (list 'help-echo
  2606. (concat "Matcher: " match)) line)))
  2607. (push line lines)))
  2608. (setq lines (nreverse lines))
  2609. (when prefixes
  2610. (mapc (lambda (x)
  2611. (push
  2612. (format "%s %s"
  2613. (org-add-props (char-to-string x)
  2614. nil 'face 'bold)
  2615. (or (cdr (assoc (concat selstring
  2616. (char-to-string x))
  2617. prefix-descriptions))
  2618. "Prefix key"))
  2619. lines))
  2620. prefixes))
  2621. ;; Check if we should display in two columns
  2622. (if org-agenda-menu-two-columns
  2623. (progn
  2624. (setq n (length lines)
  2625. n1 (+ (/ n 2) (mod n 2))
  2626. right (nthcdr n1 lines)
  2627. left (copy-sequence lines))
  2628. (setcdr (nthcdr (1- n1) left) nil))
  2629. (setq left lines right nil))
  2630. (while left
  2631. (insert "\n" (pop left))
  2632. (when right
  2633. (if (< (current-column) 40)
  2634. (move-to-column 40 t)
  2635. (insert " "))
  2636. (insert (pop right))))
  2637. ;; Make the window the right size
  2638. (goto-char (point-min))
  2639. (if second-time
  2640. (if (not (pos-visible-in-window-p (point-max)))
  2641. (org-fit-window-to-buffer))
  2642. (setq second-time t)
  2643. (org-fit-window-to-buffer))
  2644. ;; Ask for selection
  2645. (message "Press key for agenda command%s:"
  2646. (if (or restrict-ok org-agenda-overriding-restriction)
  2647. (if org-agenda-overriding-restriction
  2648. " (restriction lock active)"
  2649. (if restriction
  2650. (format " (restricted to %s)" restriction)
  2651. " (unrestricted)"))
  2652. ""))
  2653. (setq c (read-char-exclusive))
  2654. (message "")
  2655. (cond
  2656. ((assoc (char-to-string c) custom)
  2657. (setq selstring (concat selstring (char-to-string c)))
  2658. (throw 'exit (cons selstring restriction)))
  2659. ((memq c prefixes)
  2660. (setq selstring (concat selstring (char-to-string c))
  2661. prefixes nil
  2662. rmheader (or rmheader t)
  2663. custom (delq nil (mapcar
  2664. (lambda (x)
  2665. (if (or (= (length (car x)) 1)
  2666. (/= (string-to-char (car x)) c))
  2667. nil
  2668. (cons (substring (car x) 1) (cdr x))))
  2669. custom))))
  2670. ((eq c ?*)
  2671. (call-interactively 'org-toggle-sticky-agenda)
  2672. (sit-for 2))
  2673. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2674. (message "Restriction is only possible in Org-mode buffers")
  2675. (ding) (sit-for 1))
  2676. ((eq c ?1)
  2677. (org-agenda-remove-restriction-lock 'noupdate)
  2678. (setq restriction 'buffer))
  2679. ((eq c ?0)
  2680. (org-agenda-remove-restriction-lock 'noupdate)
  2681. (setq restriction (if region-p 'region 'subtree)))
  2682. ((eq c ?<)
  2683. (org-agenda-remove-restriction-lock 'noupdate)
  2684. (setq restriction
  2685. (cond
  2686. ((eq restriction 'buffer)
  2687. (if region-p 'region 'subtree))
  2688. ((memq restriction '(subtree region))
  2689. nil)
  2690. (t 'buffer))))
  2691. ((eq c ?>)
  2692. (org-agenda-remove-restriction-lock 'noupdate)
  2693. (setq restriction nil))
  2694. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2695. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2696. ((and (> (length selstring) 0) (eq c ?\d))
  2697. (delete-window)
  2698. (org-agenda-get-restriction-and-command prefix-descriptions))
  2699. ((equal c ?q) (error "Abort"))
  2700. (t (error "Invalid key %c" c))))))))
  2701. (defun org-agenda-fit-window-to-buffer ()
  2702. "Fit the window to the buffer size."
  2703. (and (memq org-agenda-window-setup '(reorganize-frame))
  2704. (fboundp 'fit-window-to-buffer)
  2705. (org-fit-window-to-buffer
  2706. nil
  2707. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2708. (floor (* (frame-height) (car org-agenda-window-frame-fractions))))))
  2709. (defvar org-cmd nil)
  2710. (defvar org-agenda-overriding-cmd nil)
  2711. (defvar org-agenda-overriding-arguments nil)
  2712. (defvar org-agenda-overriding-cmd-arguments nil)
  2713. (defun org-agenda-run-series (name series)
  2714. (org-let (nth 1 series) '(org-agenda-prepare name))
  2715. ;; We need to reset agenda markers here, because when constructing a
  2716. ;; block agenda, the individual blocks do not do that.
  2717. (org-agenda-reset-markers)
  2718. (let* ((org-agenda-multi t)
  2719. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2720. (cmds (car series))
  2721. (gprops (nth 1 series))
  2722. match ;; The byte compiler incorrectly complains about this. Keep it!
  2723. org-cmd type lprops)
  2724. (while (setq org-cmd (pop cmds))
  2725. (setq type (car org-cmd)
  2726. match (eval (nth 1 org-cmd))
  2727. lprops (nth 2 org-cmd))
  2728. (let ((org-agenda-overriding-arguments
  2729. (if (eq org-agenda-overriding-cmd org-cmd)
  2730. (or org-agenda-overriding-arguments
  2731. org-agenda-overriding-cmd-arguments))))
  2732. (cond
  2733. ((eq type 'agenda)
  2734. (org-let2 gprops lprops
  2735. '(call-interactively 'org-agenda-list)))
  2736. ((eq type 'alltodo)
  2737. (org-let2 gprops lprops
  2738. '(call-interactively 'org-todo-list)))
  2739. ((eq type 'search)
  2740. (org-let2 gprops lprops
  2741. '(org-search-view current-prefix-arg match nil)))
  2742. ((eq type 'stuck)
  2743. (org-let2 gprops lprops
  2744. '(call-interactively 'org-agenda-list-stuck-projects)))
  2745. ((eq type 'tags)
  2746. (org-let2 gprops lprops
  2747. '(org-tags-view current-prefix-arg match)))
  2748. ((eq type 'tags-todo)
  2749. (org-let2 gprops lprops
  2750. '(org-tags-view '(4) match)))
  2751. ((eq type 'todo)
  2752. (org-let2 gprops lprops
  2753. '(org-todo-list match)))
  2754. ((fboundp type)
  2755. (org-let2 gprops lprops
  2756. '(funcall type match)))
  2757. (t (error "Invalid type in command series")))))
  2758. (widen)
  2759. (let ((inhibit-read-only t))
  2760. (add-text-properties (point-min) (point-max)
  2761. `(org-series t org-series-redo-cmd ,redo)))
  2762. (setq org-agenda-redo-command redo)
  2763. (goto-char (point-min)))
  2764. (org-agenda-fit-window-to-buffer)
  2765. (org-let (nth 1 series) '(org-agenda-finalize)))
  2766. ;;;###autoload
  2767. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2768. "Run an agenda command in batch mode and send the result to STDOUT.
  2769. If CMD-KEY is a string of length 1, it is used as a key in
  2770. `org-agenda-custom-commands' and triggers this command. If it is a
  2771. longer string it is used as a tags/todo match string.
  2772. Parameters are alternating variable names and values that will be bound
  2773. before running the agenda command."
  2774. (org-eval-in-environment (org-make-parameter-alist parameters)
  2775. (if (> (length cmd-key) 2)
  2776. (org-tags-view nil cmd-key)
  2777. (org-agenda nil cmd-key)))
  2778. (set-buffer org-agenda-buffer-name)
  2779. (princ (buffer-string)))
  2780. (autoload 'org-batch-agenda "org-agenda" "\
  2781. Run an agenda command in batch mode and send the result to STDOUT.
  2782. If CMD-KEY is a string of length 1, it is used as a key in
  2783. `org-agenda-custom-commands' and triggers this command. If it is a
  2784. longer string it is used as a tags/todo match string.
  2785. Parameters are alternating variable names and values that will be bound
  2786. before running the agenda command.
  2787. \(fn CMD-KEY &rest PARAMETERS)" nil t)
  2788. (def-edebug-spec org-batch-agenda (form &rest sexp))
  2789. (defvar org-agenda-info nil)
  2790. ;;;###autoload
  2791. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2792. "Run an agenda command in batch mode and send the result to STDOUT.
  2793. If CMD-KEY is a string of length 1, it is used as a key in
  2794. `org-agenda-custom-commands' and triggers this command. If it is a
  2795. longer string it is used as a tags/todo match string.
  2796. Parameters are alternating variable names and values that will be bound
  2797. before running the agenda command.
  2798. The output gives a line for each selected agenda item. Each
  2799. item is a list of comma-separated values, like this:
  2800. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2801. category The category of the item
  2802. head The headline, without TODO kwd, TAGS and PRIORITY
  2803. type The type of the agenda entry, can be
  2804. todo selected in TODO match
  2805. tagsmatch selected in tags match
  2806. diary imported from diary
  2807. deadline a deadline on given date
  2808. scheduled scheduled on given date
  2809. timestamp entry has timestamp on given date
  2810. closed entry was closed on given date
  2811. upcoming-deadline warning about deadline
  2812. past-scheduled forwarded scheduled item
  2813. block entry has date block including g. date
  2814. todo The todo keyword, if any
  2815. tags All tags including inherited ones, separated by colons
  2816. date The relevant date, like 2007-2-14
  2817. time The time, like 15:00-16:50
  2818. extra Sting with extra planning info
  2819. priority-l The priority letter if any was given
  2820. priority-n The computed numerical priority
  2821. agenda-day The day in the agenda where this is listed"
  2822. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  2823. (org-make-parameter-alist parameters))
  2824. (if (> (length cmd-key) 2)
  2825. (org-tags-view nil cmd-key)
  2826. (org-agenda nil cmd-key)))
  2827. (set-buffer org-agenda-buffer-name)
  2828. (let* ((lines (org-split-string (buffer-string) "\n"))
  2829. line)
  2830. (while (setq line (pop lines))
  2831. (catch 'next
  2832. (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
  2833. (setq org-agenda-info
  2834. (org-fix-agenda-info (text-properties-at 0 line)))
  2835. (princ
  2836. (mapconcat 'org-agenda-export-csv-mapper
  2837. '(org-category txt type todo tags date time extra
  2838. priority-letter priority agenda-day)
  2839. ","))
  2840. (princ "\n")))))
  2841. (autoload 'org-batch-agenda-csv "org-agenda" "\
  2842. Run an agenda command in batch mode and send the result to STDOUT.
  2843. If CMD-KEY is a string of length 1, it is used as a key in
  2844. `org-agenda-custom-commands' and triggers this command. If it is a
  2845. longer string it is used as a tags/todo match string.
  2846. Parameters are alternating variable names and values that will be bound
  2847. before running the agenda command.
  2848. The output gives a line for each selected agenda item. Each
  2849. item is a list of comma-separated values, like this:
  2850. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2851. category The category of the item
  2852. head The headline, without TODO kwd, TAGS and PRIORITY
  2853. type The type of the agenda entry, can be
  2854. todo selected in TODO match
  2855. tagsmatch selected in tags match
  2856. diary imported from diary
  2857. deadline a deadline on given date
  2858. scheduled scheduled on given date
  2859. timestamp entry has timestamp on given date
  2860. closed entry was closed on given date
  2861. upcoming-deadline warning about deadline
  2862. past-scheduled forwarded scheduled item
  2863. block entry has date block including g. date
  2864. todo The todo keyword, if any
  2865. tags All tags including inherited ones, separated by colons
  2866. date The relevant date, like 2007-2-14
  2867. time The time, like 15:00-16:50
  2868. extra Sting with extra planning info
  2869. priority-l The priority letter if any was given
  2870. priority-n The computed numerical priority
  2871. agenda-day The day in the agenda where this is listed
  2872. \(fn CMD-KEY &rest PARAMETERS)" nil t)
  2873. (def-edebug-spec org-batch-agenda-csv (form &rest sexp))
  2874. (defun org-fix-agenda-info (props)
  2875. "Make sure all properties on an agenda item have a canonical form.
  2876. This ensures the export commands can easily use it."
  2877. (let (tmp re)
  2878. (when (setq tmp (plist-get props 'tags))
  2879. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  2880. (when (setq tmp (plist-get props 'date))
  2881. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2882. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2883. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  2884. (setq tmp (calendar-date-string tmp)))
  2885. (setq props (plist-put props 'date tmp)))
  2886. (when (setq tmp (plist-get props 'day))
  2887. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2888. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2889. (setq tmp (calendar-date-string tmp)))
  2890. (setq props (plist-put props 'day tmp))
  2891. (setq props (plist-put props 'agenda-day tmp)))
  2892. (when (setq tmp (plist-get props 'txt))
  2893. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  2894. (plist-put props 'priority-letter (match-string 1 tmp))
  2895. (setq tmp (replace-match "" t t tmp)))
  2896. (when (and (setq re (plist-get props 'org-todo-regexp))
  2897. (setq re (concat "\\`\\.*" re " ?"))
  2898. (string-match re tmp))
  2899. (plist-put props 'todo (match-string 1 tmp))
  2900. (setq tmp (replace-match "" t t tmp)))
  2901. (plist-put props 'txt tmp)))
  2902. props)
  2903. (defun org-agenda-export-csv-mapper (prop)
  2904. (let ((res (plist-get org-agenda-info prop)))
  2905. (setq res
  2906. (cond
  2907. ((not res) "")
  2908. ((stringp res) res)
  2909. (t (prin1-to-string res))))
  2910. (while (string-match "," res)
  2911. (setq res (replace-match ";" t t res)))
  2912. (org-trim res)))
  2913. ;;;###autoload
  2914. (defun org-store-agenda-views (&rest parameters)
  2915. (interactive)
  2916. (eval (list 'org-batch-store-agenda-views)))
  2917. (autoload 'org-store-agenda-views "org-agenda" "\
  2918. \(fn &rest PARAMETERS)" t nil)
  2919. ;;;###autoload
  2920. (defmacro org-batch-store-agenda-views (&rest parameters)
  2921. "Run all custom agenda commands that have a file argument."
  2922. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  2923. (pop-up-frames nil)
  2924. (dir default-directory)
  2925. (pars (org-make-parameter-alist parameters))
  2926. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  2927. (save-window-excursion
  2928. (while cmds
  2929. (setq cmd (pop cmds)
  2930. thiscmdkey (car cmd)
  2931. thiscmdcmd (cdr cmd)
  2932. match (nth 2 thiscmdcmd)
  2933. bufname (if org-agenda-sticky
  2934. (or (and (stringp match)
  2935. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  2936. (format "*Org Agenda(%s)*" thiscmdkey))
  2937. org-agenda-buffer-name)
  2938. cmd-or-set (nth 2 cmd)
  2939. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  2940. files (nth (if (listp cmd-or-set) 4 5) cmd))
  2941. (if (stringp files) (setq files (list files)))
  2942. (when files
  2943. (org-eval-in-environment (append org-agenda-exporter-settings
  2944. opts pars)
  2945. (org-agenda nil thiscmdkey))
  2946. (set-buffer bufname)
  2947. (while files
  2948. (org-eval-in-environment (append org-agenda-exporter-settings
  2949. opts pars)
  2950. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  2951. (and (get-buffer bufname)
  2952. (kill-buffer bufname)))))))
  2953. (autoload 'org-batch-store-agenda-views "org-agenda" "\
  2954. Run all custom agenda commands that have a file argument.
  2955. \(fn &rest PARAMETERS)" nil t)
  2956. (def-edebug-spec org-batch-store-agenda-views (&rest sexp))
  2957. (defvar org-agenda-current-span nil
  2958. "The current span used in the agenda view.") ; local variable in the agenda buffer
  2959. (defun org-agenda-mark-header-line (pos)
  2960. "Mark the line at POS as an agenda structure header."
  2961. (save-excursion
  2962. (goto-char pos)
  2963. (put-text-property (point-at-bol) (point-at-eol)
  2964. 'org-agenda-structural-header t)
  2965. (when org-agenda-title-append
  2966. (put-text-property (point-at-bol) (point-at-eol)
  2967. 'org-agenda-title-append org-agenda-title-append))))
  2968. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  2969. (defvar org-agenda-write-buffer-name "Agenda View")
  2970. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  2971. "Write the current buffer (an agenda view) as a file.
  2972. Depending on the extension of the file name, plain text (.txt),
  2973. HTML (.html or .htm), PDF (.pdf) or Postscript (.ps) is produced.
  2974. If the extension is .ics, run icalendar export over all files used
  2975. to construct the agenda and limit the export to entries listed in the
  2976. agenda now.
  2977. If the extension is .org, collect all subtrees corresponding to the
  2978. agenda entries and add them in an .org file.
  2979. With prefix argument OPEN, open the new file immediately.
  2980. If NOSETTINGS is given, do not scope the settings of
  2981. `org-agenda-exporter-settings' into the export commands. This is used when
  2982. the settings have already been scoped and we do not wish to overrule other,
  2983. higher priority settings.
  2984. If AGENDA-BUFFER-NAME, use this as the buffer name for the agenda to write."
  2985. (interactive "FWrite agenda to file: \nP")
  2986. (if (not (file-writable-p file))
  2987. (error "Cannot write agenda to file %s" file))
  2988. (org-let (if nosettings nil org-agenda-exporter-settings)
  2989. '(save-excursion
  2990. (save-window-excursion
  2991. (org-agenda-mark-filtered-text)
  2992. (let ((bs (copy-sequence (buffer-string))) beg content)
  2993. (org-agenda-unmark-filtered-text)
  2994. (with-temp-buffer
  2995. (rename-buffer org-agenda-write-buffer-name t)
  2996. (set-buffer-modified-p nil)
  2997. (insert bs)
  2998. (org-agenda-remove-marked-text 'org-filtered)
  2999. (while (setq beg (text-property-any (point-min) (point-max)
  3000. 'org-filtered t))
  3001. (delete-region
  3002. beg (or (next-single-property-change beg 'org-filtered)
  3003. (point-max))))
  3004. (run-hooks 'org-agenda-before-write-hook)
  3005. (cond
  3006. ((org-bound-and-true-p org-mobile-creating-agendas)
  3007. (org-mobile-write-agenda-for-mobile file))
  3008. ((string-match "\\.org\\'" file)
  3009. (let (content p m message-log-max)
  3010. (goto-char (point-min))
  3011. (while (setq p (next-single-property-change (point) 'org-hd-marker nil))
  3012. (goto-char p)
  3013. (setq m (get-text-property (point) 'org-hd-marker))
  3014. (when m
  3015. (push (save-excursion
  3016. (set-buffer (marker-buffer m))
  3017. (goto-char m)
  3018. (org-copy-subtree 1 nil t t)
  3019. org-subtree-clip)
  3020. content)))
  3021. (find-file file)
  3022. (erase-buffer)
  3023. (mapcar (lambda (s) (org-paste-subtree 1 s)) (reverse content))
  3024. (write-file file)
  3025. (kill-buffer (current-buffer))
  3026. (message "Org file written to %s" file)))
  3027. ((string-match "\\.html?\\'" file)
  3028. (require 'htmlize)
  3029. (set-buffer (htmlize-buffer (current-buffer)))
  3030. (when org-agenda-export-html-style
  3031. ;; replace <style> section with org-agenda-export-html-style
  3032. (goto-char (point-min))
  3033. (kill-region (- (search-forward "<style") 6)
  3034. (search-forward "</style>"))
  3035. (insert org-agenda-export-html-style))
  3036. (write-file file)
  3037. (kill-buffer (current-buffer))
  3038. (message "HTML written to %s" file))
  3039. ((string-match "\\.ps\\'" file)
  3040. (require 'ps-print)
  3041. (ps-print-buffer-with-faces file)
  3042. (message "Postscript written to %s" file))
  3043. ((string-match "\\.pdf\\'" file)
  3044. (require 'ps-print)
  3045. (ps-print-buffer-with-faces
  3046. (concat (file-name-sans-extension file) ".ps"))
  3047. (call-process "ps2pdf" nil nil nil
  3048. (expand-file-name
  3049. (concat (file-name-sans-extension file) ".ps"))
  3050. (expand-file-name file))
  3051. (delete-file (concat (file-name-sans-extension file) ".ps"))
  3052. (message "PDF written to %s" file))
  3053. ((string-match "\\.ics\\'" file)
  3054. (require 'ox-icalendar)
  3055. (org-icalendar-export-current-agenda (expand-file-name file)))
  3056. (t
  3057. (let ((bs (buffer-string)))
  3058. (find-file file)
  3059. (erase-buffer)
  3060. (insert bs)
  3061. (save-buffer 0)
  3062. (kill-buffer (current-buffer))
  3063. (message "Plain text written to %s" file))))))))
  3064. (set-buffer (or agenda-bufname
  3065. (and (org-called-interactively-p 'any) (buffer-name))
  3066. org-agenda-buffer-name)))
  3067. (when open (org-open-file file)))
  3068. (defvar org-agenda-tag-filter-overlays nil)
  3069. (defvar org-agenda-cat-filter-overlays nil)
  3070. (defun org-agenda-mark-filtered-text ()
  3071. "Mark all text hidden by filtering with a text property."
  3072. (let ((inhibit-read-only t))
  3073. (mapc
  3074. (lambda (o)
  3075. (when (equal (overlay-buffer o) (current-buffer))
  3076. (put-text-property
  3077. (overlay-start o) (overlay-end o)
  3078. 'org-filtered t)))
  3079. (append org-agenda-tag-filter-overlays
  3080. org-agenda-cat-filter-overlays))))
  3081. (defun org-agenda-unmark-filtered-text ()
  3082. "Remove the filtering text property."
  3083. (let ((inhibit-read-only t))
  3084. (remove-text-properties (point-min) (point-max) '(org-filtered t))))
  3085. (defun org-agenda-remove-marked-text (property &optional value)
  3086. "Delete all text marked with VALUE of PROPERTY.
  3087. VALUE defaults to t."
  3088. (let (beg)
  3089. (setq value (or value t))
  3090. (while (setq beg (text-property-any (point-min) (point-max)
  3091. property value))
  3092. (delete-region
  3093. beg (or (next-single-property-change beg 'org-filtered)
  3094. (point-max))))))
  3095. (defun org-agenda-add-entry-text ()
  3096. "Add entry text to agenda lines.
  3097. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  3098. entry text following headings shown in the agenda.
  3099. Drawers will be excluded, also the line with scheduling/deadline info."
  3100. (when (and (> org-agenda-add-entry-text-maxlines 0)
  3101. (not (org-bound-and-true-p org-mobile-creating-agendas)))
  3102. (let (m txt)
  3103. (goto-char (point-min))
  3104. (while (not (eobp))
  3105. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  3106. (beginning-of-line 2)
  3107. (setq txt (org-agenda-get-some-entry-text
  3108. m org-agenda-add-entry-text-maxlines " > "))
  3109. (end-of-line 1)
  3110. (if (string-match "\\S-" txt)
  3111. (insert "\n" txt)
  3112. (or (eobp) (forward-char 1))))))))
  3113. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  3114. &rest keep)
  3115. "Extract entry text from MARKER, at most N-LINES lines.
  3116. This will ignore drawers etc, just get the text.
  3117. If INDENT is given, prefix every line with this string. If KEEP is
  3118. given, it is a list of symbols, defining stuff that should not be
  3119. removed from the entry content. Currently only `planning' is allowed here."
  3120. (let (txt drawer-re kwd-time-re ind)
  3121. (save-excursion
  3122. (with-current-buffer (marker-buffer marker)
  3123. (if (not (derived-mode-p 'org-mode))
  3124. (setq txt "")
  3125. (save-excursion
  3126. (save-restriction
  3127. (widen)
  3128. (goto-char marker)
  3129. (end-of-line 1)
  3130. (setq txt (buffer-substring
  3131. (min (1+ (point)) (point-max))
  3132. (progn (outline-next-heading) (point)))
  3133. drawer-re org-drawer-regexp
  3134. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  3135. ".*\n?"))
  3136. (with-temp-buffer
  3137. (insert txt)
  3138. (when org-agenda-add-entry-text-descriptive-links
  3139. (goto-char (point-min))
  3140. (while (org-activate-bracket-links (point-max))
  3141. (add-text-properties (match-beginning 0) (match-end 0)
  3142. '(face org-link))))
  3143. (goto-char (point-min))
  3144. (while (re-search-forward org-bracket-link-regexp (point-max) t)
  3145. (set-text-properties (match-beginning 0) (match-end 0)
  3146. nil))
  3147. (goto-char (point-min))
  3148. (while (re-search-forward drawer-re nil t)
  3149. (delete-region
  3150. (match-beginning 0)
  3151. (progn (re-search-forward
  3152. "^[ \t]*:END:.*\n?" nil 'move)
  3153. (point))))
  3154. (unless (member 'planning keep)
  3155. (goto-char (point-min))
  3156. (while (re-search-forward kwd-time-re nil t)
  3157. (replace-match "")))
  3158. (goto-char (point-min))
  3159. (when org-agenda-entry-text-exclude-regexps
  3160. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  3161. (while (setq re (pop re-list))
  3162. (goto-char (point-min))
  3163. (while (re-search-forward re nil t)
  3164. (replace-match "")))))
  3165. (goto-char (point-max))
  3166. (skip-chars-backward " \t\n")
  3167. (if (looking-at "[ \t\n]+\\'") (replace-match ""))
  3168. ;; find and remove min common indentation
  3169. (goto-char (point-min))
  3170. (untabify (point-min) (point-max))
  3171. (setq ind (org-get-indentation))
  3172. (while (not (eobp))
  3173. (unless (looking-at "[ \t]*$")
  3174. (setq ind (min ind (org-get-indentation))))
  3175. (beginning-of-line 2))
  3176. (goto-char (point-min))
  3177. (while (not (eobp))
  3178. (unless (looking-at "[ \t]*$")
  3179. (move-to-column ind)
  3180. (delete-region (point-at-bol) (point)))
  3181. (beginning-of-line 2))
  3182. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  3183. (goto-char (point-min))
  3184. (when indent
  3185. (while (and (not (eobp)) (re-search-forward "^" nil t))
  3186. (replace-match indent t t)))
  3187. (goto-char (point-min))
  3188. (while (looking-at "[ \t]*\n") (replace-match ""))
  3189. (goto-char (point-max))
  3190. (when (> (org-current-line)
  3191. n-lines)
  3192. (org-goto-line (1+ n-lines))
  3193. (backward-char 1))
  3194. (setq txt (buffer-substring (point-min) (point)))))))))
  3195. txt))
  3196. (defun org-agenda-collect-markers ()
  3197. "Collect the markers pointing to entries in the agenda buffer."
  3198. (let (m markers)
  3199. (save-excursion
  3200. (goto-char (point-min))
  3201. (while (not (eobp))
  3202. (when (setq m (or (org-get-at-bol 'org-hd-marker)
  3203. (org-get-at-bol 'org-marker)))
  3204. (push m markers))
  3205. (beginning-of-line 2)))
  3206. (nreverse markers)))
  3207. (defun org-create-marker-find-array (marker-list)
  3208. "Create a alist of files names with all marker positions in that file."
  3209. (let (f tbl m a p)
  3210. (while (setq m (pop marker-list))
  3211. (setq p (marker-position m)
  3212. f (buffer-file-name (or (buffer-base-buffer
  3213. (marker-buffer m))
  3214. (marker-buffer m))))
  3215. (if (setq a (assoc f tbl))
  3216. (push (marker-position m) (cdr a))
  3217. (push (list f p) tbl)))
  3218. (mapcar (lambda (x) (setcdr x (sort (copy-sequence (cdr x)) '<)) x)
  3219. tbl)))
  3220. (defvar org-agenda-marker-table nil) ; dynamically scoped parameter
  3221. (defun org-check-agenda-marker-table ()
  3222. "Check of the current entry is on the marker list."
  3223. (let ((file (buffer-file-name (or (buffer-base-buffer) (current-buffer))))
  3224. a)
  3225. (and (setq a (assoc file org-agenda-marker-table))
  3226. (save-match-data
  3227. (save-excursion
  3228. (org-back-to-heading t)
  3229. (member (point) (cdr a)))))))
  3230. (defun org-check-for-org-mode ()
  3231. "Make sure current buffer is in org-mode. Error if not."
  3232. (or (derived-mode-p 'org-mode)
  3233. (error "Cannot execute org-mode agenda command on buffer in %s"
  3234. major-mode)))
  3235. ;;; Agenda prepare and finalize
  3236. (defvar org-agenda-multi nil) ; dynamically scoped
  3237. (defvar org-agenda-pre-window-conf nil)
  3238. (defvar org-agenda-columns-active nil)
  3239. (defvar org-agenda-name nil)
  3240. (defvar org-agenda-tag-filter nil)
  3241. (defvar org-agenda-category-filter nil)
  3242. (defvar org-agenda-top-category-filter nil)
  3243. (defvar org-agenda-tag-filter-while-redo nil)
  3244. (defvar org-agenda-tag-filter-preset nil
  3245. "A preset of the tags filter used for secondary agenda filtering.
  3246. This must be a list of strings, each string must be a single tag preceded
  3247. by \"+\" or \"-\".
  3248. This variable should not be set directly, but agenda custom commands can
  3249. bind it in the options section. The preset filter is a global property of
  3250. the entire agenda view. In a block agenda, it will not work reliably to
  3251. define a filter for one of the individual blocks. You need to set it in
  3252. the global options and expect it to be applied to the entire view.")
  3253. (defvar org-agenda-category-filter-preset nil
  3254. "A preset of the category filter used for secondary agenda filtering.
  3255. This must be a list of strings, each string must be a single category
  3256. preceded by \"+\" or \"-\".
  3257. This variable should not be set directly, but agenda custom commands can
  3258. bind it in the options section. The preset filter is a global property of
  3259. the entire agenda view. In a block agenda, it will not work reliably to
  3260. define a filter for one of the individual blocks. You need to set it in
  3261. the global options and expect it to be applied to the entire view.")
  3262. (defun org-agenda-use-sticky-p ()
  3263. "Return non-nil if an agenda buffer named
  3264. `org-agenda-buffer-name' exists and should be shown instead of
  3265. generating a new one."
  3266. (and
  3267. ;; turned off by user
  3268. org-agenda-sticky
  3269. ;; For multi-agenda buffer already exists
  3270. (not org-agenda-multi)
  3271. ;; buffer found
  3272. (get-buffer org-agenda-buffer-name)
  3273. ;; C-u parameter is same as last call
  3274. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3275. (and
  3276. (equal current-prefix-arg
  3277. org-agenda-last-prefix-arg)
  3278. ;; In case user turned stickiness on, while having existing
  3279. ;; Agenda buffer active, don't reuse that buffer, because it
  3280. ;; does not have org variables local
  3281. org-agenda-this-buffer-is-sticky))))
  3282. (defun org-agenda-prepare-window (abuf)
  3283. "Setup agenda buffer in the window."
  3284. (let* ((awin (get-buffer-window abuf))
  3285. wconf)
  3286. (cond
  3287. ((equal (current-buffer) abuf) nil)
  3288. (awin (select-window awin))
  3289. ((not (setq wconf (current-window-configuration))))
  3290. ((equal org-agenda-window-setup 'current-window)
  3291. (org-pop-to-buffer-same-window abuf))
  3292. ((equal org-agenda-window-setup 'other-window)
  3293. (org-switch-to-buffer-other-window abuf))
  3294. ((equal org-agenda-window-setup 'other-frame)
  3295. (switch-to-buffer-other-frame abuf))
  3296. ((equal org-agenda-window-setup 'reorganize-frame)
  3297. (delete-other-windows)
  3298. (org-switch-to-buffer-other-window abuf)))
  3299. ;; additional test in case agenda is invoked from within agenda
  3300. ;; buffer via elisp link
  3301. (unless (equal (current-buffer) abuf)
  3302. (org-pop-to-buffer-same-window abuf))
  3303. (setq org-agenda-pre-window-conf
  3304. (or org-agenda-pre-window-conf wconf))))
  3305. (defun org-agenda-prepare (&optional name)
  3306. (if (org-agenda-use-sticky-p)
  3307. (progn
  3308. ;; Popup existing buffer
  3309. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name))
  3310. (message "Sticky Agenda buffer, use `r' to refresh")
  3311. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3312. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3313. (setq org-todo-keywords-for-agenda nil)
  3314. (setq org-drawers-for-agenda nil)
  3315. (unless org-agenda-persistent-filter
  3316. (setq org-agenda-tag-filter nil
  3317. org-agenda-category-filter nil))
  3318. (put 'org-agenda-tag-filter :preset-filter
  3319. org-agenda-tag-filter-preset)
  3320. (put 'org-agenda-category-filter :preset-filter
  3321. org-agenda-category-filter-preset)
  3322. (if org-agenda-multi
  3323. (progn
  3324. (setq buffer-read-only nil)
  3325. (goto-char (point-max))
  3326. (unless (or (bobp) org-agenda-compact-blocks
  3327. (not org-agenda-block-separator))
  3328. (insert "\n"
  3329. (if (stringp org-agenda-block-separator)
  3330. org-agenda-block-separator
  3331. (make-string (window-width) org-agenda-block-separator))
  3332. "\n"))
  3333. (narrow-to-region (point) (point-max)))
  3334. (setq org-done-keywords-for-agenda nil)
  3335. ;; Setting any org variables that are in org-agenda-local-vars
  3336. ;; list need to be done after the prepare call
  3337. (org-agenda-prepare-window (get-buffer-create org-agenda-buffer-name))
  3338. (setq buffer-read-only nil)
  3339. (org-agenda-reset-markers)
  3340. (let ((inhibit-read-only t)) (erase-buffer))
  3341. (org-agenda-mode)
  3342. (setq org-agenda-buffer (current-buffer))
  3343. (setq org-agenda-contributing-files nil)
  3344. (setq org-agenda-columns-active nil)
  3345. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3346. (setq org-todo-keywords-for-agenda
  3347. (org-uniquify org-todo-keywords-for-agenda))
  3348. (setq org-done-keywords-for-agenda
  3349. (org-uniquify org-done-keywords-for-agenda))
  3350. (setq org-drawers-for-agenda (org-uniquify org-drawers-for-agenda))
  3351. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3352. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3353. (and name (not org-agenda-name)
  3354. (org-set-local 'org-agenda-name name)))
  3355. (setq buffer-read-only nil)))
  3356. (defvar org-agenda-overriding-columns-format) ; From org-colview.el
  3357. (defun org-agenda-finalize ()
  3358. "Finishing touch for the agenda buffer, called just before displaying it."
  3359. (unless org-agenda-multi
  3360. (save-excursion
  3361. (let ((inhibit-read-only t))
  3362. (goto-char (point-min))
  3363. (save-excursion
  3364. (while (org-activate-bracket-links (point-max))
  3365. (add-text-properties (match-beginning 0) (match-end 0)
  3366. '(face org-link))))
  3367. (save-excursion
  3368. (while (org-activate-plain-links (point-max))
  3369. (add-text-properties (match-beginning 0) (match-end 0)
  3370. '(face org-link))))
  3371. (unless (eq org-agenda-remove-tags t)
  3372. (org-agenda-align-tags))
  3373. (unless org-agenda-with-colors
  3374. (remove-text-properties (point-min) (point-max) '(face nil)))
  3375. (if (and (boundp 'org-agenda-overriding-columns-format)
  3376. org-agenda-overriding-columns-format)
  3377. (org-set-local 'org-agenda-overriding-columns-format
  3378. org-agenda-overriding-columns-format))
  3379. (if (and (boundp 'org-agenda-view-columns-initially)
  3380. org-agenda-view-columns-initially)
  3381. (org-agenda-columns))
  3382. (when org-agenda-fontify-priorities
  3383. (org-agenda-fontify-priorities))
  3384. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3385. (org-agenda-dim-blocked-tasks))
  3386. ;; We need to widen when `org-agenda-finalize' is called from
  3387. ;; `org-agenda-change-all-lines' (e.g. in `org-agenda-clock-in')
  3388. (when org-clock-current-task
  3389. (save-restriction
  3390. (widen)
  3391. (org-agenda-mark-clocking-task)))
  3392. (when org-agenda-entry-text-mode
  3393. (org-agenda-entry-text-hide)
  3394. (org-agenda-entry-text-show))
  3395. (if (and (functionp 'org-habit-insert-consistency-graphs)
  3396. (save-excursion (next-single-property-change (point-min) 'org-habit-p)))
  3397. (org-habit-insert-consistency-graphs))
  3398. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3399. (unless (or (eq org-agenda-show-inherited-tags 'always)
  3400. (and (listp org-agenda-show-inherited-tags)
  3401. (memq org-agenda-type org-agenda-show-inherited-tags))
  3402. (and (eq org-agenda-show-inherited-tags t)
  3403. (or (eq org-agenda-use-tag-inheritance t)
  3404. (and (listp org-agenda-use-tag-inheritance)
  3405. (not (memq org-agenda-type
  3406. org-agenda-use-tag-inheritance))))))
  3407. (let (mrk)
  3408. (save-excursion
  3409. (goto-char (point-min))
  3410. (while (equal (forward-line) 0)
  3411. (when (setq mrk (or (get-text-property (point) 'org-hd-marker)
  3412. (get-text-property (point) 'org-hd-marker)))
  3413. (put-text-property (point-at-bol) (point-at-eol)
  3414. 'tags (org-with-point-at mrk
  3415. (delete-dups
  3416. (mapcar 'downcase (org-get-tags-at))))))))))
  3417. (run-hooks 'org-agenda-finalize-hook)
  3418. (when (or org-agenda-tag-filter (get 'org-agenda-tag-filter :preset-filter))
  3419. (org-agenda-filter-apply org-agenda-tag-filter 'tag))
  3420. (when (or org-agenda-category-filter (get 'org-agenda-category-filter :preset-filter))
  3421. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3422. (org-add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)))))
  3423. (defun org-agenda-mark-clocking-task ()
  3424. "Mark the current clock entry in the agenda if it is present."
  3425. (mapc (lambda (o)
  3426. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  3427. (delete-overlay o)))
  3428. (overlays-in (point-min) (point-max)))
  3429. (when (marker-buffer org-clock-hd-marker)
  3430. (save-excursion
  3431. (goto-char (point-min))
  3432. (let (s ov)
  3433. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3434. (goto-char s)
  3435. (when (equal (org-get-at-bol 'org-hd-marker)
  3436. org-clock-hd-marker)
  3437. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3438. (overlay-put ov 'type 'org-agenda-clocking)
  3439. (overlay-put ov 'face 'org-agenda-clocking)
  3440. (overlay-put ov 'help-echo
  3441. "The clock is running in this item")))))))
  3442. (defun org-agenda-fontify-priorities ()
  3443. "Make highest priority lines bold, and lowest italic."
  3444. (interactive)
  3445. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
  3446. (delete-overlay o)))
  3447. (overlays-in (point-min) (point-max)))
  3448. (save-excursion
  3449. (let (b e p ov h l)
  3450. (goto-char (point-min))
  3451. (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
  3452. (setq h (or (get-char-property (point) 'org-highest-priority)
  3453. org-highest-priority)
  3454. l (or (get-char-property (point) 'org-lowest-priority)
  3455. org-lowest-priority)
  3456. p (string-to-char (match-string 1))
  3457. b (match-beginning 0)
  3458. e (if (eq org-agenda-fontify-priorities 'cookies)
  3459. (match-end 0)
  3460. (point-at-eol))
  3461. ov (make-overlay b e))
  3462. (overlay-put
  3463. ov 'face
  3464. (cons (cond ((org-face-from-face-or-color
  3465. 'priority nil
  3466. (cdr (assoc p org-priority-faces))))
  3467. ((and (listp org-agenda-fontify-priorities)
  3468. (org-face-from-face-or-color
  3469. 'priority nil
  3470. (cdr (assoc p org-agenda-fontify-priorities)))))
  3471. ((equal p l) 'italic)
  3472. ((equal p h) 'bold))
  3473. 'org-priority))
  3474. (overlay-put ov 'org-type 'org-priority)))))
  3475. (defun org-agenda-dim-blocked-tasks (&optional invisible)
  3476. (interactive "P")
  3477. "Dim currently blocked TODO's in the agenda display."
  3478. (message "Dim or hide blocked tasks...")
  3479. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-blocked-todo)
  3480. (delete-overlay o)))
  3481. (overlays-in (point-min) (point-max)))
  3482. (save-excursion
  3483. (let ((inhibit-read-only t)
  3484. (org-depend-tag-blocked nil)
  3485. (invis (or (not (null invisible))
  3486. (eq org-agenda-dim-blocked-tasks 'invisible)))
  3487. org-blocked-by-checkboxes
  3488. invis1 b e p ov h l)
  3489. (goto-char (point-min))
  3490. (while (let ((pos (next-single-property-change (point) 'todo-state)))
  3491. (and pos (goto-char (1+ pos))))
  3492. (setq org-blocked-by-checkboxes nil invis1 invis)
  3493. (let ((marker (org-get-at-bol 'org-hd-marker)))
  3494. (when (and marker
  3495. (with-current-buffer (marker-buffer marker)
  3496. (save-excursion (goto-char marker)
  3497. (org-entry-blocked-p))))
  3498. (if org-blocked-by-checkboxes (setq invis1 nil))
  3499. (setq b (if invis1
  3500. (max (point-min) (1- (point-at-bol)))
  3501. (point-at-bol))
  3502. e (point-at-eol)
  3503. ov (make-overlay b e))
  3504. (if invis1
  3505. (overlay-put ov 'invisible t)
  3506. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3507. (overlay-put ov 'org-type 'org-blocked-todo))))))
  3508. (message "Dim or hide blocked tasks...done"))
  3509. (defvar org-agenda-skip-function nil
  3510. "Function to be called at each match during agenda construction.
  3511. If this function returns nil, the current match should not be skipped.
  3512. Otherwise, the function must return a position from where the search
  3513. should be continued.
  3514. This may also be a Lisp form, it will be evaluated.
  3515. Never set this variable using `setq' or so, because then it will apply
  3516. to all future agenda commands. If you do want a global skipping condition,
  3517. use the option `org-agenda-skip-function-global' instead.
  3518. The correct usage for `org-agenda-skip-function' is to bind it with
  3519. `let' to scope it dynamically into the agenda-constructing command.
  3520. A good way to set it is through options in `org-agenda-custom-commands'.")
  3521. (defun org-agenda-skip ()
  3522. "Throw to `:skip' in places that should be skipped.
  3523. Also moves point to the end of the skipped region, so that search can
  3524. continue from there."
  3525. (let ((p (point-at-bol)) to)
  3526. (when (or
  3527. (save-excursion (goto-char p) (looking-at comment-start-skip))
  3528. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3529. (get-text-property p :org-archived)
  3530. (org-end-of-subtree t))
  3531. (and org-agenda-skip-comment-trees
  3532. (get-text-property p :org-comment)
  3533. (org-end-of-subtree t))
  3534. (and (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3535. (org-agenda-skip-eval org-agenda-skip-function)))
  3536. (goto-char to))
  3537. (org-in-src-block-p t))
  3538. (throw :skip t))))
  3539. (defun org-agenda-skip-eval (form)
  3540. "If FORM is a function or a list, call (or eval) is and return result.
  3541. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3542. and match data are returned to the previous state no matter what these
  3543. functions do."
  3544. (let (fp)
  3545. (and form
  3546. (or (setq fp (functionp form))
  3547. (consp form))
  3548. (save-excursion
  3549. (save-match-data
  3550. (if fp
  3551. (funcall form)
  3552. (eval form)))))))
  3553. (defvar org-agenda-markers nil
  3554. "List of all currently active markers created by `org-agenda'.")
  3555. (defvar org-agenda-last-marker-time (org-float-time)
  3556. "Creation time of the last agenda marker.")
  3557. (defun org-agenda-new-marker (&optional pos)
  3558. "Return a new agenda marker.
  3559. Org-mode keeps a list of these markers and resets them when they are
  3560. no longer in use."
  3561. (let ((m (copy-marker (or pos (point)))))
  3562. (setq org-agenda-last-marker-time (org-float-time))
  3563. (if org-agenda-buffer
  3564. (with-current-buffer org-agenda-buffer
  3565. (push m org-agenda-markers))
  3566. (push m org-agenda-markers))
  3567. m))
  3568. (defun org-agenda-reset-markers ()
  3569. "Reset markers created by `org-agenda'."
  3570. (while org-agenda-markers
  3571. (move-marker (pop org-agenda-markers) nil)))
  3572. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3573. "Save relative positions of markers in region.
  3574. This check for agenda markers in all agenda buffers currently active."
  3575. (dolist (buf (buffer-list))
  3576. (with-current-buffer buf
  3577. (when (eq major-mode 'org-agenda-mode)
  3578. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3579. org-agenda-markers)))))
  3580. ;;; Entry text mode
  3581. (defun org-agenda-entry-text-show-here ()
  3582. "Add some text from the entry as context to the current line."
  3583. (let (m txt o)
  3584. (setq m (org-get-at-bol 'org-hd-marker))
  3585. (unless (marker-buffer m)
  3586. (error "No marker points to an entry here"))
  3587. (setq txt (concat "\n" (org-no-properties
  3588. (org-agenda-get-some-entry-text
  3589. m org-agenda-entry-text-maxlines " > "))))
  3590. (when (string-match "\\S-" txt)
  3591. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3592. (overlay-put o 'evaporate t)
  3593. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3594. (overlay-put o 'after-string txt))))
  3595. (defun org-agenda-entry-text-show ()
  3596. "Add entry context for all agenda lines."
  3597. (interactive)
  3598. (save-excursion
  3599. (goto-char (point-max))
  3600. (beginning-of-line 1)
  3601. (while (not (bobp))
  3602. (when (org-get-at-bol 'org-hd-marker)
  3603. (org-agenda-entry-text-show-here))
  3604. (beginning-of-line 0))))
  3605. (defun org-agenda-entry-text-hide ()
  3606. "Remove any shown entry context."
  3607. (delq nil
  3608. (mapcar (lambda (o)
  3609. (if (eq (overlay-get o 'org-overlay-type)
  3610. 'agenda-entry-content)
  3611. (progn (delete-overlay o) t)))
  3612. (overlays-in (point-min) (point-max)))))
  3613. (defun org-agenda-get-day-face (date)
  3614. "Return the face DATE should be displayed with."
  3615. (or (and (functionp org-agenda-day-face-function)
  3616. (funcall org-agenda-day-face-function date))
  3617. (cond ((org-agenda-todayp date)
  3618. 'org-agenda-date-today)
  3619. ((member (calendar-day-of-week date) org-agenda-weekend-days)
  3620. 'org-agenda-date-weekend)
  3621. (t 'org-agenda-date))))
  3622. ;;; Agenda timeline
  3623. (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
  3624. (defun org-timeline (&optional dotodo)
  3625. "Show a time-sorted view of the entries in the current org file.
  3626. Only entries with a time stamp of today or later will be listed. With
  3627. \\[universal-argument] prefix, all unfinished TODO items will also be shown,
  3628. under the current date.
  3629. If the buffer contains an active region, only check the region for
  3630. dates."
  3631. (interactive "P")
  3632. (let* ((dopast t)
  3633. (org-agenda-show-log-scoped org-agenda-show-log)
  3634. (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
  3635. (current-buffer))))
  3636. (date (calendar-current-date))
  3637. (beg (if (org-region-active-p) (region-beginning) (point-min)))
  3638. (end (if (org-region-active-p) (region-end) (point-max)))
  3639. (day-numbers (org-get-all-dates
  3640. beg end 'no-ranges
  3641. t org-agenda-show-log-scoped ; always include today
  3642. org-timeline-show-empty-dates))
  3643. (org-deadline-warning-days 0)
  3644. (org-agenda-only-exact-dates t)
  3645. (today (org-today))
  3646. (past t)
  3647. args
  3648. s e rtn d emptyp)
  3649. (setq org-agenda-redo-command
  3650. (list 'progn
  3651. (list 'org-switch-to-buffer-other-window (current-buffer))
  3652. (list 'org-timeline (list 'quote dotodo))))
  3653. (if (not dopast)
  3654. ;; Remove past dates from the list of dates.
  3655. (setq day-numbers (delq nil (mapcar (lambda(x)
  3656. (if (>= x today) x nil))
  3657. day-numbers))))
  3658. (org-agenda-prepare (concat "Timeline " (file-name-nondirectory entry)))
  3659. (org-compile-prefix-format 'timeline)
  3660. (org-set-sorting-strategy 'timeline)
  3661. (if org-agenda-show-log-scoped (push :closed args))
  3662. (push :timestamp args)
  3663. (push :deadline args)
  3664. (push :scheduled args)
  3665. (push :sexp args)
  3666. (if dotodo (push :todo args))
  3667. (insert "Timeline of file " entry "\n")
  3668. (add-text-properties (point-min) (point)
  3669. (list 'face 'org-agenda-structure))
  3670. (org-agenda-mark-header-line (point-min))
  3671. (while (setq d (pop day-numbers))
  3672. (if (and (listp d) (eq (car d) :omitted))
  3673. (progn
  3674. (setq s (point))
  3675. (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
  3676. (put-text-property s (1- (point)) 'face 'org-agenda-structure))
  3677. (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
  3678. (if (and (>= d today)
  3679. dopast
  3680. past)
  3681. (progn
  3682. (setq past nil)
  3683. (insert (make-string 79 ?-) "\n")))
  3684. (setq date (calendar-gregorian-from-absolute d))
  3685. (setq s (point))
  3686. (setq rtn (and (not emptyp)
  3687. (apply 'org-agenda-get-day-entries entry
  3688. date args)))
  3689. (if (or rtn (equal d today) org-timeline-show-empty-dates)
  3690. (progn
  3691. (insert
  3692. (if (stringp org-agenda-format-date)
  3693. (format-time-string org-agenda-format-date
  3694. (org-time-from-absolute date))
  3695. (funcall org-agenda-format-date date))
  3696. "\n")
  3697. (put-text-property s (1- (point)) 'face
  3698. (org-agenda-get-day-face date))
  3699. (put-text-property s (1- (point)) 'org-date-line t)
  3700. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3701. (if (equal d today)
  3702. (put-text-property s (1- (point)) 'org-today t))
  3703. (and rtn (insert (org-agenda-finalize-entries rtn 'timeline) "\n"))
  3704. (put-text-property s (1- (point)) 'day d)))))
  3705. (goto-char (point-min))
  3706. (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
  3707. (point-min)))
  3708. (add-text-properties (point-min) (point-max) '(org-agenda-type timeline))
  3709. (org-agenda-finalize)
  3710. (setq buffer-read-only t)))
  3711. (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
  3712. "Return a list of all relevant day numbers from BEG to END buffer positions.
  3713. If NO-RANGES is non-nil, include only the start and end dates of a range,
  3714. not every single day in the range. If FORCE-TODAY is non-nil, make
  3715. sure that TODAY is included in the list. If INACTIVE is non-nil, also
  3716. inactive time stamps (those in square brackets) are included.
  3717. When EMPTY is non-nil, also include days without any entries."
  3718. (let ((re (concat
  3719. (if pre-re pre-re "")
  3720. (if inactive org-ts-regexp-both org-ts-regexp)))
  3721. dates dates1 date day day1 day2 ts1 ts2 pos)
  3722. (if force-today
  3723. (setq dates (list (org-today))))
  3724. (save-excursion
  3725. (goto-char beg)
  3726. (while (re-search-forward re end t)
  3727. (setq day (time-to-days (org-time-string-to-time
  3728. (substring (match-string 1) 0 10)
  3729. (current-buffer) (match-beginning 0))))
  3730. (or (memq day dates) (push day dates)))
  3731. (unless no-ranges
  3732. (goto-char beg)
  3733. (while (re-search-forward org-tr-regexp end t)
  3734. (setq pos (match-beginning 0))
  3735. (setq ts1 (substring (match-string 1) 0 10)
  3736. ts2 (substring (match-string 2) 0 10)
  3737. day1 (time-to-days (org-time-string-to-time
  3738. ts1 (current-buffer) pos))
  3739. day2 (time-to-days (org-time-string-to-time
  3740. ts2 (current-buffer) pos)))
  3741. (while (< (setq day1 (1+ day1)) day2)
  3742. (or (memq day1 dates) (push day1 dates)))))
  3743. (setq dates (sort dates '<))
  3744. (when empty
  3745. (while (setq day (pop dates))
  3746. (setq day2 (car dates))
  3747. (push day dates1)
  3748. (when (and day2 empty)
  3749. (if (or (eq empty t)
  3750. (and (numberp empty) (<= (- day2 day) empty)))
  3751. (while (< (setq day (1+ day)) day2)
  3752. (push (list day) dates1))
  3753. (push (cons :omitted (- day2 day)) dates1))))
  3754. (setq dates (nreverse dates1)))
  3755. dates)))
  3756. ;;; Agenda Daily/Weekly
  3757. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3758. "Start day for the agenda view.
  3759. Custom commands can set this variable in the options section.")
  3760. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3761. (defvar org-arg-loc nil) ; local variable
  3762. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  3763. "List of types searched for when creating the daily/weekly agenda.
  3764. This variable is a list of symbols that controls the types of
  3765. items that appear in the daily/weekly agenda. Allowed symbols in this
  3766. list are are
  3767. :timestamp List items containing a date stamp or date range matching
  3768. the selected date. This includes sexp entries in
  3769. angular brackets.
  3770. :sexp List entries resulting from plain diary-like sexps.
  3771. :deadline List deadline due on that date. When the date is today,
  3772. also list any deadlines past due, or due within
  3773. `org-deadline-warning-days'. `:deadline' must appear before
  3774. `:scheduled' if the setting of
  3775. `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
  3776. any effect.
  3777. :scheduled List all items which are scheduled for the given date.
  3778. The diary for *today* also contains items which were
  3779. scheduled earlier and are not yet marked DONE.
  3780. By default, all four types are turned on.
  3781. Never set this variable globally using `setq', because then it
  3782. will apply to all future agenda commands. Instead, bind it with
  3783. `let' to scope it dynamically into the agenda-constructing
  3784. command. A good way to set it is through options in
  3785. `org-agenda-custom-commands'. For a more flexible (though
  3786. somewhat less efficient) way of determining what is included in
  3787. the daily/weekly agenda, see `org-agenda-skip-function'.")
  3788. (defvar org-agenda-buffer-tmp-name nil)
  3789. ;;;###autoload
  3790. (defun org-agenda-list (&optional arg start-day span)
  3791. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3792. The view will be for the current day or week, but from the overview buffer
  3793. you will be able to go to other days/weeks.
  3794. With a numeric prefix argument in an interactive call, the agenda will
  3795. span ARG days. Lisp programs should instead specify SPAN to change
  3796. the number of days. SPAN defaults to `org-agenda-span'.
  3797. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3798. given in `org-agenda-start-on-weekday'."
  3799. (interactive "P")
  3800. (if org-agenda-overriding-arguments
  3801. (setq arg (car org-agenda-overriding-arguments)
  3802. start-day (nth 1 org-agenda-overriding-arguments)
  3803. span (nth 2 org-agenda-overriding-arguments)))
  3804. (if (and (integerp arg) (> arg 0))
  3805. (setq span arg arg nil))
  3806. (catch 'exit
  3807. (setq org-agenda-buffer-name
  3808. (or org-agenda-buffer-tmp-name
  3809. (if org-agenda-sticky
  3810. (cond ((and org-keys (stringp org-match))
  3811. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3812. (org-keys
  3813. (format "*Org Agenda(%s)*" org-keys))
  3814. (t "*Org Agenda(a)*")))
  3815. org-agenda-buffer-name))
  3816. (org-agenda-prepare "Day/Week")
  3817. (setq start-day (or start-day org-agenda-start-day))
  3818. (if (stringp start-day)
  3819. ;; Convert to an absolute day number
  3820. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3821. (org-compile-prefix-format 'agenda)
  3822. (org-set-sorting-strategy 'agenda)
  3823. (let* ((span (org-agenda-ndays-to-span
  3824. (or span org-agenda-ndays org-agenda-span)))
  3825. (today (org-today))
  3826. (sd (or start-day today))
  3827. (ndays (org-agenda-span-to-ndays span sd))
  3828. (org-agenda-start-on-weekday
  3829. (if (eq ndays 7)
  3830. org-agenda-start-on-weekday))
  3831. (thefiles (org-agenda-files nil 'ifmode))
  3832. (files thefiles)
  3833. (start (if (or (null org-agenda-start-on-weekday)
  3834. (< ndays 7))
  3835. sd
  3836. (let* ((nt (calendar-day-of-week
  3837. (calendar-gregorian-from-absolute sd)))
  3838. (n1 org-agenda-start-on-weekday)
  3839. (d (- nt n1)))
  3840. (- sd (+ (if (< d 0) 7 0) d)))))
  3841. (day-numbers (list start))
  3842. (day-cnt 0)
  3843. (inhibit-redisplay (not debug-on-error))
  3844. (org-agenda-show-log-scoped org-agenda-show-log)
  3845. s e rtn rtnall file date d start-pos end-pos todayp
  3846. clocktable-start clocktable-end filter)
  3847. (setq org-agenda-redo-command
  3848. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span)))
  3849. (dotimes (n (1- ndays))
  3850. (push (1+ (car day-numbers)) day-numbers))
  3851. (setq day-numbers (nreverse day-numbers))
  3852. (setq clocktable-start (car day-numbers)
  3853. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3854. (org-set-local 'org-starting-day (car day-numbers))
  3855. (org-set-local 'org-arg-loc arg)
  3856. (org-set-local 'org-agenda-current-span (org-agenda-ndays-to-span span))
  3857. (unless org-agenda-compact-blocks
  3858. (let* ((d1 (car day-numbers))
  3859. (d2 (org-last day-numbers))
  3860. (w1 (org-days-to-iso-week d1))
  3861. (w2 (org-days-to-iso-week d2)))
  3862. (setq s (point))
  3863. (if org-agenda-overriding-header
  3864. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3865. nil 'face 'org-agenda-structure) "\n")
  3866. (insert (org-agenda-span-name span)
  3867. "-agenda"
  3868. (if (< (- d2 d1) 350)
  3869. (if (= w1 w2)
  3870. (format " (W%02d)" w1)
  3871. (format " (W%02d-W%02d)" w1 w2))
  3872. "")
  3873. ":\n")))
  3874. (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
  3875. 'org-date-line t))
  3876. (org-agenda-mark-header-line s))
  3877. (while (setq d (pop day-numbers))
  3878. (setq date (calendar-gregorian-from-absolute d)
  3879. s (point))
  3880. (if (or (setq todayp (= d today))
  3881. (and (not start-pos) (= d sd)))
  3882. (setq start-pos (point))
  3883. (if (and start-pos (not end-pos))
  3884. (setq end-pos (point))))
  3885. (setq files thefiles
  3886. rtnall nil)
  3887. (while (setq file (pop files))
  3888. (catch 'nextfile
  3889. (org-check-agenda-file file)
  3890. (let ((org-agenda-entry-types org-agenda-entry-types))
  3891. (unless org-agenda-include-deadlines
  3892. (setq org-agenda-entry-types
  3893. (delq :deadline org-agenda-entry-types)))
  3894. (cond
  3895. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3896. (setq rtn (org-agenda-get-day-entries
  3897. file date :closed)))
  3898. (org-agenda-show-log-scoped
  3899. (setq rtn (apply 'org-agenda-get-day-entries
  3900. file date
  3901. (append '(:closed) org-agenda-entry-types))))
  3902. (t
  3903. (setq rtn (apply 'org-agenda-get-day-entries
  3904. file date
  3905. org-agenda-entry-types)))))
  3906. (setq rtnall (append rtnall rtn)))) ;; all entries
  3907. (if org-agenda-include-diary
  3908. (let ((org-agenda-search-headline-for-time t))
  3909. (require 'diary-lib)
  3910. (setq rtn (org-get-entries-from-diary date))
  3911. (setq rtnall (append rtnall rtn))))
  3912. (if (or rtnall org-agenda-show-all-dates)
  3913. (progn
  3914. (setq day-cnt (1+ day-cnt))
  3915. (insert
  3916. (if (stringp org-agenda-format-date)
  3917. (format-time-string org-agenda-format-date
  3918. (org-time-from-absolute date))
  3919. (funcall org-agenda-format-date date))
  3920. "\n")
  3921. (put-text-property s (1- (point)) 'face
  3922. (org-agenda-get-day-face date))
  3923. (put-text-property s (1- (point)) 'org-date-line t)
  3924. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3925. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3926. (when todayp
  3927. (put-text-property s (1- (point)) 'org-today t))
  3928. (setq rtnall
  3929. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  3930. (if rtnall (insert ;; all entries
  3931. (org-agenda-finalize-entries rtnall 'agenda)
  3932. "\n"))
  3933. (put-text-property s (1- (point)) 'day d)
  3934. (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
  3935. (when (and org-agenda-clockreport-mode clocktable-start)
  3936. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3937. ;; the above line is to ensure the restricted range!
  3938. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3939. tbl)
  3940. (setq p (org-plist-delete p :block))
  3941. (setq p (plist-put p :tstart clocktable-start))
  3942. (setq p (plist-put p :tend clocktable-end))
  3943. (setq p (plist-put p :scope 'agenda))
  3944. (when (and (eq org-agenda-clockreport-mode 'with-filter)
  3945. (setq filter (or org-agenda-tag-filter-while-redo
  3946. (get 'org-agenda-tag-filter :preset-filter))))
  3947. (setq p (plist-put p :tags (mapconcat (lambda (x)
  3948. (if (string-match "[<>=]" x)
  3949. ""
  3950. x))
  3951. filter ""))))
  3952. (setq tbl (apply 'org-clock-get-clocktable p))
  3953. (insert tbl)))
  3954. (goto-char (point-min))
  3955. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3956. (unless (and (pos-visible-in-window-p (point-min))
  3957. (pos-visible-in-window-p (point-max)))
  3958. (goto-char (1- (point-max)))
  3959. (recenter -1)
  3960. (if (not (pos-visible-in-window-p (or start-pos 1)))
  3961. (progn
  3962. (goto-char (or start-pos 1))
  3963. (recenter 1))))
  3964. (goto-char (or start-pos 1))
  3965. (add-text-properties (point-min) (point-max)
  3966. `(org-agenda-type agenda
  3967. org-last-args (,arg ,start-day ,span)
  3968. org-redo-cmd ,org-agenda-redo-command
  3969. org-series-cmd ,org-cmd))
  3970. (if (eq org-agenda-show-log-scoped 'clockcheck)
  3971. (org-agenda-show-clocking-issues))
  3972. (org-agenda-finalize)
  3973. (setq buffer-read-only t)
  3974. (message ""))))
  3975. (autoload 'org-agenda-list "org-agenda" "\
  3976. Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3977. The view will be for the current day or week, but from the overview buffer
  3978. you will be able to go to other days/weeks.
  3979. With a numeric prefix argument in an interactive call, the agenda will
  3980. span ARG days. Lisp programs should instead specify SPAN to change
  3981. the number of days. SPAN defaults to `org-agenda-span'.
  3982. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3983. given in `org-agenda-start-on-weekday'.
  3984. \(fn &optional ARG START-DAY SPAN)" t nil)
  3985. (defun org-agenda-ndays-to-span (n)
  3986. "Return a span symbol for a span of N days, or N if none matches."
  3987. (cond ((symbolp n) n)
  3988. ((= n 1) 'day)
  3989. ((= n 7) 'week)
  3990. (t n)))
  3991. (defun org-agenda-span-to-ndays (span &optional start-day)
  3992. "Return ndays from SPAN, possibly starting at START-DAY."
  3993. (cond ((numberp span) span)
  3994. ((eq span 'day) 1)
  3995. ((eq span 'week) 7)
  3996. ((eq span 'month)
  3997. (let ((date (calendar-gregorian-from-absolute start-day)))
  3998. (calendar-last-day-of-month (car date) (caddr date))))
  3999. ((eq span 'year)
  4000. (let ((date (calendar-gregorian-from-absolute start-day)))
  4001. (if (calendar-leap-year-p (caddr date)) 366 365)))))
  4002. (defun org-agenda-span-name (span)
  4003. "Return a SPAN name."
  4004. (if (null span)
  4005. ""
  4006. (if (symbolp span)
  4007. (capitalize (symbol-name span))
  4008. (format "%d days" span))))
  4009. ;;; Agenda word search
  4010. (defvar org-agenda-search-history nil)
  4011. (defvar org-search-syntax-table nil
  4012. "Special syntax table for org-mode search.
  4013. In this table, we have single quotes not as word constituents, to
  4014. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  4015. (defvar org-mode-syntax-table) ; From org.el
  4016. (defun org-search-syntax-table ()
  4017. (unless org-search-syntax-table
  4018. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  4019. (modify-syntax-entry ?' "." org-search-syntax-table)
  4020. (modify-syntax-entry ?` "." org-search-syntax-table))
  4021. org-search-syntax-table)
  4022. (defvar org-agenda-last-search-view-search-was-boolean nil)
  4023. ;;;###autoload
  4024. (defun org-search-view (&optional todo-only string edit-at)
  4025. "Show all entries that contain a phrase or words or regular expressions.
  4026. With optional prefix argument TODO-ONLY, only consider entries that are
  4027. TODO entries. The argument STRING can be used to pass a default search
  4028. string into this function. If EDIT-AT is non-nil, it means that the
  4029. user should get a chance to edit this string, with cursor at position
  4030. EDIT-AT.
  4031. The search string can be viewed either as a phrase that should be found as
  4032. is, or it can be broken into a number of snippets, each of which must match
  4033. in a Boolean way to select an entry. The default depends on the variable
  4034. `org-agenda-search-view-always-boolean'.
  4035. Even if this is turned off (the default) you can always switch to
  4036. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4037. The default is a direct search of the whole phrase, where each space in
  4038. the search string can expand to an arbitrary amount of whitespace,
  4039. including newlines.
  4040. If using a Boolean search, the search string is split on whitespace and
  4041. each snippet is searched separately, with logical AND to select an entry.
  4042. Words prefixed with a minus must *not* occur in the entry. Words without
  4043. a prefix or prefixed with a plus must occur in the entry. Matching is
  4044. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4045. match whole words, not parts of a word) if
  4046. `org-agenda-search-view-force-full-words' is set (default is nil).
  4047. Boolean search snippets enclosed by curly braces are interpreted as
  4048. regular expressions that must or (when preceded with \"-\") must not
  4049. match in the entry. Snippets enclosed into double quotes will be taken
  4050. as a whole, to include whitespace.
  4051. - If the search string starts with an asterisk, search only in headlines.
  4052. - If (possibly after the leading star) the search string starts with an
  4053. exclamation mark, this also means to look at TODO entries only, an effect
  4054. that can also be achieved with a prefix argument.
  4055. - If (possibly after star and exclamation mark) the search string starts
  4056. with a colon, this will mean that the (non-regexp) snippets of the
  4057. Boolean search must match as full words.
  4058. This command searches the agenda files, and in addition the files listed
  4059. in `org-agenda-text-search-extra-files'."
  4060. (interactive "P")
  4061. (if org-agenda-overriding-arguments
  4062. (setq todo-only (car org-agenda-overriding-arguments)
  4063. string (nth 1 org-agenda-overriding-arguments)
  4064. edit-at (nth 2 org-agenda-overriding-arguments)))
  4065. (let* ((props (list 'face nil
  4066. 'done-face 'org-agenda-done
  4067. 'org-not-done-regexp org-not-done-regexp
  4068. 'org-todo-regexp org-todo-regexp
  4069. 'org-complex-heading-regexp org-complex-heading-regexp
  4070. 'mouse-face 'highlight
  4071. 'help-echo (format "mouse-2 or RET jump to location")))
  4072. (full-words org-agenda-search-view-force-full-words)
  4073. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  4074. regexp rtn rtnall files file pos inherited-tags
  4075. marker category category-pos level tags c neg re boolean
  4076. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  4077. (unless (and (not edit-at)
  4078. (stringp string)
  4079. (string-match "\\S-" string))
  4080. (setq string (read-string
  4081. (if org-agenda-search-view-always-boolean
  4082. "[+-]Word/{Regexp} ...: "
  4083. "Phrase or [+-]Word/{Regexp} ...: ")
  4084. (cond
  4085. ((integerp edit-at) (cons string edit-at))
  4086. (edit-at string))
  4087. 'org-agenda-search-history)))
  4088. (catch 'exit
  4089. (if org-agenda-sticky
  4090. (setq org-agenda-buffer-name
  4091. (if (stringp string)
  4092. (format "*Org Agenda(%s:%s)*"
  4093. (or org-keys (or (and todo-only "S") "s")) string)
  4094. (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
  4095. (org-agenda-prepare "SEARCH")
  4096. (org-compile-prefix-format 'search)
  4097. (org-set-sorting-strategy 'search)
  4098. (setq org-agenda-redo-command
  4099. (list 'org-search-view (if todo-only t nil)
  4100. (list 'if 'current-prefix-arg nil string)))
  4101. (setq org-agenda-query-string string)
  4102. (if (equal (string-to-char string) ?*)
  4103. (setq hdl-only t
  4104. words (substring string 1))
  4105. (setq words string))
  4106. (when (equal (string-to-char words) ?!)
  4107. (setq todo-only t
  4108. words (substring words 1)))
  4109. (when (equal (string-to-char words) ?:)
  4110. (setq full-words t
  4111. words (substring words 1)))
  4112. (if (or org-agenda-search-view-always-boolean
  4113. (member (string-to-char words) '(?- ?+ ?\{)))
  4114. (setq boolean t))
  4115. (setq words (org-split-string words))
  4116. (let (www w)
  4117. (while (setq w (pop words))
  4118. (while (and (string-match "\\\\\\'" w) words)
  4119. (setq w (concat (substring w 0 -1) " " (pop words))))
  4120. (push w www))
  4121. (setq words (nreverse www) www nil)
  4122. (while (setq w (pop words))
  4123. (when (and (string-match "\\`[-+]?{" w)
  4124. (not (string-match "}\\'" w)))
  4125. (while (and words (not (string-match "}\\'" (car words))))
  4126. (setq w (concat w " " (pop words))))
  4127. (setq w (concat w " " (pop words))))
  4128. (push w www))
  4129. (setq words (nreverse www)))
  4130. (setq org-agenda-last-search-view-search-was-boolean boolean)
  4131. (when boolean
  4132. (let (wds w)
  4133. (while (setq w (pop words))
  4134. (if (or (equal (substring w 0 1) "\"")
  4135. (and (> (length w) 1)
  4136. (member (substring w 0 1) '("+" "-"))
  4137. (equal (substring w 1 2) "\"")))
  4138. (while (and words (not (equal (substring w -1) "\"")))
  4139. (setq w (concat w " " (pop words)))))
  4140. (and (string-match "\\`\\([-+]?\\)\"" w)
  4141. (setq w (replace-match "\\1" nil nil w)))
  4142. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  4143. (push w wds))
  4144. (setq words (nreverse wds))))
  4145. (if boolean
  4146. (mapc (lambda (w)
  4147. (setq c (string-to-char w))
  4148. (if (equal c ?-)
  4149. (setq neg t w (substring w 1))
  4150. (if (equal c ?+)
  4151. (setq neg nil w (substring w 1))
  4152. (setq neg nil)))
  4153. (if (string-match "\\`{.*}\\'" w)
  4154. (setq re (substring w 1 -1))
  4155. (if full-words
  4156. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  4157. (setq re (regexp-quote (downcase w)))))
  4158. (if neg (push re regexps-) (push re regexps+)))
  4159. words)
  4160. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  4161. regexps+))
  4162. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  4163. (if (not regexps+)
  4164. (setq regexp org-outline-regexp-bol)
  4165. (setq regexp (pop regexps+))
  4166. (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  4167. regexp))))
  4168. (setq files (org-agenda-files nil 'ifmode))
  4169. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  4170. (pop org-agenda-text-search-extra-files)
  4171. (setq files (org-add-archive-files files)))
  4172. (setq files (append files org-agenda-text-search-extra-files)
  4173. rtnall nil)
  4174. (while (setq file (pop files))
  4175. (setq ee nil)
  4176. (catch 'nextfile
  4177. (org-check-agenda-file file)
  4178. (setq buffer (if (file-exists-p file)
  4179. (org-get-agenda-file-buffer file)
  4180. (error "No such file %s" file)))
  4181. (if (not buffer)
  4182. ;; If file does not exist, make sure an error message is sent
  4183. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  4184. file))))
  4185. (with-current-buffer buffer
  4186. (with-syntax-table (org-search-syntax-table)
  4187. (unless (derived-mode-p 'org-mode)
  4188. (error "Agenda file %s is not in `org-mode'" file))
  4189. (let ((case-fold-search t))
  4190. (save-excursion
  4191. (save-restriction
  4192. (if org-agenda-restrict
  4193. (narrow-to-region org-agenda-restrict-begin
  4194. org-agenda-restrict-end)
  4195. (widen))
  4196. (goto-char (point-min))
  4197. (unless (or (org-at-heading-p)
  4198. (outline-next-heading))
  4199. (throw 'nextfile t))
  4200. (goto-char (max (point-min) (1- (point))))
  4201. (while (re-search-forward regexp nil t)
  4202. (org-back-to-heading t)
  4203. (while (and org-agenda-search-view-max-outline-level
  4204. (> (org-reduced-level (org-outline-level))
  4205. org-agenda-search-view-max-outline-level)
  4206. (forward-line -1)
  4207. (outline-back-to-heading t)))
  4208. (skip-chars-forward "* ")
  4209. (setq beg (point-at-bol)
  4210. beg1 (point)
  4211. end (progn
  4212. (outline-next-heading)
  4213. (while (and org-agenda-search-view-max-outline-level
  4214. (> (org-reduced-level (org-outline-level))
  4215. org-agenda-search-view-max-outline-level)
  4216. (forward-line 1)
  4217. (outline-next-heading)))
  4218. (point)))
  4219. (catch :skip
  4220. (goto-char beg)
  4221. (org-agenda-skip)
  4222. (setq str (buffer-substring-no-properties
  4223. (point-at-bol)
  4224. (if hdl-only (point-at-eol) end)))
  4225. (mapc (lambda (wr) (when (string-match wr str)
  4226. (goto-char (1- end))
  4227. (throw :skip t)))
  4228. regexps-)
  4229. (mapc (lambda (wr) (unless (string-match wr str)
  4230. (goto-char (1- end))
  4231. (throw :skip t)))
  4232. (if todo-only
  4233. (cons (concat "^\*+[ \t]+" org-not-done-regexp)
  4234. regexps+)
  4235. regexps+))
  4236. (goto-char beg)
  4237. (setq marker (org-agenda-new-marker (point))
  4238. category (org-get-category)
  4239. level (make-string (org-reduced-level (org-outline-level)) ? )
  4240. category-pos (get-text-property (point) 'org-category-position)
  4241. inherited-tags
  4242. (or (eq org-agenda-show-inherited-tags 'always)
  4243. (and (listp org-agenda-show-inherited-tags)
  4244. (memq 'todo org-agenda-show-inherited-tags))
  4245. (and (eq org-agenda-show-inherited-tags t)
  4246. (or (eq org-agenda-use-tag-inheritance t)
  4247. (memq 'todo org-agenda-use-tag-inheritance))))
  4248. tags (org-get-tags-at nil (not inherited-tags))
  4249. txt (org-agenda-format-item
  4250. ""
  4251. (buffer-substring-no-properties
  4252. beg1 (point-at-eol))
  4253. level category tags t))
  4254. (org-add-props txt props
  4255. 'org-marker marker 'org-hd-marker marker
  4256. 'org-todo-regexp org-todo-regexp
  4257. 'level level
  4258. 'org-complex-heading-regexp org-complex-heading-regexp
  4259. 'priority 1000 'org-category category
  4260. 'org-category-position category-pos
  4261. 'type "search")
  4262. (push txt ee)
  4263. (goto-char (1- end))))))))))
  4264. (setq rtn (nreverse ee))
  4265. (setq rtnall (append rtnall rtn)))
  4266. (if org-agenda-overriding-header
  4267. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4268. nil 'face 'org-agenda-structure) "\n")
  4269. (insert "Search words: ")
  4270. (add-text-properties (point-min) (1- (point))
  4271. (list 'face 'org-agenda-structure))
  4272. (setq pos (point))
  4273. (insert string "\n")
  4274. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4275. (setq pos (point))
  4276. (unless org-agenda-multi
  4277. (insert "Press `[', `]' to add/sub word, `{', `}' to add/sub regexp, `C-u r' to edit\n")
  4278. (add-text-properties pos (1- (point))
  4279. (list 'face 'org-agenda-structure))))
  4280. (org-agenda-mark-header-line (point-min))
  4281. (when rtnall
  4282. (insert (org-agenda-finalize-entries rtnall 'search) "\n"))
  4283. (goto-char (point-min))
  4284. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4285. (add-text-properties (point-min) (point-max)
  4286. `(org-agenda-type search
  4287. org-last-args (,todo-only ,string ,edit-at)
  4288. org-redo-cmd ,org-agenda-redo-command
  4289. org-series-cmd ,org-cmd))
  4290. (org-agenda-finalize)
  4291. (setq buffer-read-only t))))
  4292. (autoload 'org-search-view "org-agenda" "\
  4293. Show all entries that contain a phrase or words or regular expressions.
  4294. With optional prefix argument TODO-ONLY, only consider entries that are
  4295. TODO entries. The argument STRING can be used to pass a default search
  4296. string into this function. If EDIT-AT is non-nil, it means that the
  4297. user should get a chance to edit this string, with cursor at position
  4298. EDIT-AT.
  4299. The search string can be viewed either as a phrase that should be found as
  4300. is, or it can be broken into a number of snippets, each of which must match
  4301. in a Boolean way to select an entry. The default depends on the variable
  4302. `org-agenda-search-view-always-boolean'.
  4303. Even if this is turned off (the default) you can always switch to
  4304. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  4305. The default is a direct search of the whole phrase, where each space in
  4306. the search string can expand to an arbitrary amount of whitespace,
  4307. including newlines.
  4308. If using a Boolean search, the search string is split on whitespace and
  4309. each snippet is searched separately, with logical AND to select an entry.
  4310. Words prefixed with a minus must *not* occur in the entry. Words without
  4311. a prefix or prefixed with a plus must occur in the entry. Matching is
  4312. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  4313. match whole words, not parts of a word) if
  4314. `org-agenda-search-view-force-full-words' is set (default is nil).
  4315. Boolean search snippets enclosed by curly braces are interpreted as
  4316. regular expressions that must or (when preceded with \"-\") must not
  4317. match in the entry. Snippets enclosed into double quotes will be taken
  4318. as a whole, to include whitespace.
  4319. - If the search string starts with an asterisk, search only in headlines.
  4320. - If (possibly after the leading star) the search string starts with an
  4321. exclamation mark, this also means to look at TODO entries only, an effect
  4322. that can also be achieved with a prefix argument.
  4323. - If (possibly after star and exclamation mark) the search string starts
  4324. with a colon, this will mean that the (non-regexp) snippets of the
  4325. Boolean search must match as full words.
  4326. This command searches the agenda files, and in addition the files listed
  4327. in `org-agenda-text-search-extra-files'.
  4328. \(fn &optional TODO-ONLY STRING EDIT-AT)" t nil)
  4329. ;;; Agenda TODO list
  4330. (defun org-agenda-propertize-selected-todo-keywords (keywords)
  4331. "Use `org-todo-keyword-faces' for the selected todo KEYWORDS."
  4332. (concat
  4333. (if (or (equal keywords "ALL") (not keywords))
  4334. (propertize "ALL" 'face 'warning)
  4335. (mapconcat
  4336. (lambda (kw)
  4337. (propertize kw 'face (org-get-todo-face kw)))
  4338. (org-split-string keywords "|")
  4339. "|"))
  4340. "\n"))
  4341. (defvar org-select-this-todo-keyword nil)
  4342. (defvar org-last-arg nil)
  4343. ;;;###autoload
  4344. (defun org-todo-list (&optional arg)
  4345. "Show all (not done) TODO entries from all agenda file in a single list.
  4346. The prefix arg can be used to select a specific TODO keyword and limit
  4347. the list to these. When using \\[universal-argument], you will be prompted
  4348. for a keyword. A numeric prefix directly selects the Nth keyword in
  4349. `org-todo-keywords-1'."
  4350. (interactive "P")
  4351. (if org-agenda-overriding-arguments
  4352. (setq arg org-agenda-overriding-arguments))
  4353. (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  4354. (let* ((today (org-today))
  4355. (date (calendar-gregorian-from-absolute today))
  4356. (kwds org-todo-keywords-for-agenda)
  4357. (completion-ignore-case t)
  4358. (org-select-this-todo-keyword
  4359. (if (stringp arg) arg
  4360. (and arg (integerp arg) (> arg 0)
  4361. (nth (1- arg) kwds))))
  4362. rtn rtnall files file pos)
  4363. (when (equal arg '(4))
  4364. (setq org-select-this-todo-keyword
  4365. (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
  4366. (mapcar 'list kwds) nil nil)))
  4367. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4368. (catch 'exit
  4369. (if org-agenda-sticky
  4370. (setq org-agenda-buffer-name
  4371. (if (stringp org-select-this-todo-keyword)
  4372. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4373. org-select-this-todo-keyword)
  4374. (format "*Org Agenda(%s)*" (or org-keys "t")))))
  4375. (org-agenda-prepare "TODO")
  4376. (org-compile-prefix-format 'todo)
  4377. (org-set-sorting-strategy 'todo)
  4378. (setq org-agenda-redo-command
  4379. `(org-todo-list (or (and (numberp current-prefix-arg)
  4380. current-prefix-arg)
  4381. ,org-select-this-todo-keyword
  4382. current-prefix-arg ,arg)))
  4383. (setq files (org-agenda-files nil 'ifmode)
  4384. rtnall nil)
  4385. (while (setq file (pop files))
  4386. (catch 'nextfile
  4387. (org-check-agenda-file file)
  4388. (setq rtn (org-agenda-get-day-entries file date :todo))
  4389. (setq rtnall (append rtnall rtn))))
  4390. (if org-agenda-overriding-header
  4391. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4392. nil 'face 'org-agenda-structure) "\n")
  4393. (insert "Global list of TODO items of type: ")
  4394. (add-text-properties (point-min) (1- (point))
  4395. (list 'face 'org-agenda-structure
  4396. 'short-heading
  4397. (concat "ToDo: "
  4398. (or org-select-this-todo-keyword "ALL"))))
  4399. (org-agenda-mark-header-line (point-min))
  4400. (insert (org-agenda-propertize-selected-todo-keywords
  4401. org-select-this-todo-keyword))
  4402. (setq pos (point))
  4403. (unless org-agenda-multi
  4404. (insert "Available with `N r': (0)[ALL]")
  4405. (let ((n 0) s)
  4406. (mapc (lambda (x)
  4407. (setq s (format "(%d)%s" (setq n (1+ n)) x))
  4408. (if (> (+ (current-column) (string-width s) 1) (frame-width))
  4409. (insert "\n "))
  4410. (insert " " s))
  4411. kwds))
  4412. (insert "\n"))
  4413. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4414. (org-agenda-mark-header-line (point-min))
  4415. (when rtnall
  4416. (insert (org-agenda-finalize-entries rtnall 'todo) "\n"))
  4417. (goto-char (point-min))
  4418. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4419. (add-text-properties (point-min) (point-max)
  4420. `(org-agenda-type todo
  4421. org-last-args ,arg
  4422. org-redo-cmd ,org-agenda-redo-command
  4423. org-series-cmd ,org-cmd))
  4424. (org-agenda-finalize)
  4425. (setq buffer-read-only t))))
  4426. (autoload 'org-todo-list "org-agenda" "\
  4427. Show all (not done) TODO entries from all agenda file in a single list.
  4428. The prefix arg can be used to select a specific TODO keyword and limit
  4429. the list to these. When using \\[universal-argument], you will be prompted
  4430. for a keyword. A numeric prefix directly selects the Nth keyword in
  4431. `org-todo-keywords-1'.
  4432. \(fn &optional ARG)" t nil)
  4433. ;;; Agenda tags match
  4434. ;;;###autoload
  4435. (defun org-tags-view (&optional todo-only match)
  4436. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4437. The prefix arg TODO-ONLY limits the search to TODO entries."
  4438. (interactive "P")
  4439. (if org-agenda-overriding-arguments
  4440. (setq todo-only (car org-agenda-overriding-arguments)
  4441. match (nth 1 org-agenda-overriding-arguments)))
  4442. (let* ((org-tags-match-list-sublevels
  4443. org-tags-match-list-sublevels)
  4444. (completion-ignore-case t)
  4445. rtn rtnall files file pos matcher
  4446. buffer)
  4447. (when (and (stringp match) (not (string-match "\\S-" match)))
  4448. (setq match nil))
  4449. (setq matcher (org-make-tags-matcher match)
  4450. match (car matcher) matcher (cdr matcher))
  4451. (catch 'exit
  4452. (if org-agenda-sticky
  4453. (setq org-agenda-buffer-name
  4454. (if (stringp match)
  4455. (format "*Org Agenda(%s:%s)*"
  4456. (or org-keys (or (and todo-only "M") "m")) match)
  4457. (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
  4458. (org-agenda-prepare (concat "TAGS " match))
  4459. (org-compile-prefix-format 'tags)
  4460. (org-set-sorting-strategy 'tags)
  4461. (setq org-agenda-query-string match)
  4462. (setq org-agenda-redo-command
  4463. (list 'org-tags-view `(quote ,todo-only)
  4464. (list 'if 'current-prefix-arg nil `(quote ,org-agenda-query-string))))
  4465. (setq files (org-agenda-files nil 'ifmode)
  4466. rtnall nil)
  4467. (while (setq file (pop files))
  4468. (catch 'nextfile
  4469. (org-check-agenda-file file)
  4470. (setq buffer (if (file-exists-p file)
  4471. (org-get-agenda-file-buffer file)
  4472. (error "No such file %s" file)))
  4473. (if (not buffer)
  4474. ;; If file does not exist, error message to agenda
  4475. (setq rtn (list
  4476. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4477. rtnall (append rtnall rtn))
  4478. (with-current-buffer buffer
  4479. (unless (derived-mode-p 'org-mode)
  4480. (error "Agenda file %s is not in `org-mode'" file))
  4481. (save-excursion
  4482. (save-restriction
  4483. (if org-agenda-restrict
  4484. (narrow-to-region org-agenda-restrict-begin
  4485. org-agenda-restrict-end)
  4486. (widen))
  4487. (setq rtn (org-scan-tags 'agenda matcher todo-only))
  4488. (setq rtnall (append rtnall rtn))))))))
  4489. (if org-agenda-overriding-header
  4490. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4491. nil 'face 'org-agenda-structure) "\n")
  4492. (insert "Headlines with TAGS match: ")
  4493. (add-text-properties (point-min) (1- (point))
  4494. (list 'face 'org-agenda-structure
  4495. 'short-heading
  4496. (concat "Match: " match)))
  4497. (setq pos (point))
  4498. (insert match "\n")
  4499. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4500. (setq pos (point))
  4501. (unless org-agenda-multi
  4502. (insert "Press `C-u r' to search again with new search string\n"))
  4503. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4504. (org-agenda-mark-header-line (point-min))
  4505. (when rtnall
  4506. (insert (org-agenda-finalize-entries rtnall 'tags) "\n"))
  4507. (goto-char (point-min))
  4508. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4509. (add-text-properties (point-min) (point-max)
  4510. `(org-agenda-type tags
  4511. org-last-args (,todo-only ,match)
  4512. org-redo-cmd ,org-agenda-redo-command
  4513. org-series-cmd ,org-cmd))
  4514. (org-agenda-finalize)
  4515. (setq buffer-read-only t))))
  4516. (autoload 'org-tags-view "org-agenda" "\
  4517. Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4518. The prefix arg TODO-ONLY limits the search to TODO entries.
  4519. \(fn &optional TODO-ONLY MATCH)" t nil)
  4520. ;;; Agenda Finding stuck projects
  4521. (defvar org-agenda-skip-regexp nil
  4522. "Regular expression used in skipping subtrees for the agenda.
  4523. This is basically a temporary global variable that can be set and then
  4524. used by user-defined selections using `org-agenda-skip-function'.")
  4525. (defvar org-agenda-overriding-header nil
  4526. "When set during agenda, todo and tags searches it replaces the header.
  4527. This variable should not be set directly, but custom commands can bind it
  4528. in the options section.")
  4529. (defun org-agenda-skip-entry-when-regexp-matches ()
  4530. "Check if the current entry contains match for `org-agenda-skip-regexp'.
  4531. If yes, it returns the end position of this entry, causing agenda commands
  4532. to skip the entry but continuing the search in the subtree. This is a
  4533. function that can be put into `org-agenda-skip-function' for the duration
  4534. of a command."
  4535. (let ((end (save-excursion (org-end-of-subtree t)))
  4536. skip)
  4537. (save-excursion
  4538. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4539. (and skip end)))
  4540. (defun org-agenda-skip-subtree-when-regexp-matches ()
  4541. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4542. If yes, it returns the end position of this tree, causing agenda commands
  4543. to skip this subtree. This is a function that can be put into
  4544. `org-agenda-skip-function' for the duration of a command."
  4545. (let ((end (save-excursion (org-end-of-subtree t)))
  4546. skip)
  4547. (save-excursion
  4548. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4549. (and skip end)))
  4550. (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
  4551. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4552. If yes, it returns the end position of the current entry (NOT the tree),
  4553. causing agenda commands to skip the entry but continuing the search in
  4554. the subtree. This is a function that can be put into
  4555. `org-agenda-skip-function' for the duration of a command. An important
  4556. use of this function is for the stuck project list."
  4557. (let ((end (save-excursion (org-end-of-subtree t)))
  4558. (entry-end (save-excursion (outline-next-heading) (1- (point))))
  4559. skip)
  4560. (save-excursion
  4561. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4562. (and skip entry-end)))
  4563. (defun org-agenda-skip-entry-if (&rest conditions)
  4564. "Skip entry if any of CONDITIONS is true.
  4565. See `org-agenda-skip-if' for details."
  4566. (org-agenda-skip-if nil conditions))
  4567. (defun org-agenda-skip-subtree-if (&rest conditions)
  4568. "Skip entry if any of CONDITIONS is true.
  4569. See `org-agenda-skip-if' for details."
  4570. (org-agenda-skip-if t conditions))
  4571. (defun org-agenda-skip-if (subtree conditions)
  4572. "Checks current entity for CONDITIONS.
  4573. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4574. the entry (i.e. the text before the next heading) is checked.
  4575. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4576. from different tests. Valid conditions are:
  4577. scheduled Check if there is a scheduled cookie
  4578. notscheduled Check if there is no scheduled cookie
  4579. deadline Check if there is a deadline
  4580. notdeadline Check if there is no deadline
  4581. timestamp Check if there is a timestamp (also deadline or scheduled)
  4582. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4583. regexp Check if regexp matches
  4584. notregexp Check if regexp does not match.
  4585. todo Check if TODO keyword matches
  4586. nottodo Check if TODO keyword does not match
  4587. The regexp is taken from the conditions list, it must come right after
  4588. the `regexp' or `notregexp' element.
  4589. `todo' and `nottodo' accept as an argument a list of todo
  4590. keywords, which may include \"*\" to match any todo keyword.
  4591. (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\"))
  4592. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4593. Instead of a list, a keyword class may be given. For example:
  4594. (org-agenda-skip-entry-if 'nottodo 'done)
  4595. would skip entries that haven't been marked with any of \"DONE\"
  4596. keywords. Possible classes are: `todo', `done', `any'.
  4597. If any of these conditions is met, this function returns the end point of
  4598. the entity, causing the search to continue from there. This is a function
  4599. that can be put into `org-agenda-skip-function' for the duration of a command."
  4600. (let (beg end m)
  4601. (org-back-to-heading t)
  4602. (setq beg (point)
  4603. end (if subtree
  4604. (progn (org-end-of-subtree t) (point))
  4605. (progn (outline-next-heading) (1- (point)))))
  4606. (goto-char beg)
  4607. (and
  4608. (or
  4609. (and (memq 'scheduled conditions)
  4610. (re-search-forward org-scheduled-time-regexp end t))
  4611. (and (memq 'notscheduled conditions)
  4612. (not (re-search-forward org-scheduled-time-regexp end t)))
  4613. (and (memq 'deadline conditions)
  4614. (re-search-forward org-deadline-time-regexp end t))
  4615. (and (memq 'notdeadline conditions)
  4616. (not (re-search-forward org-deadline-time-regexp end t)))
  4617. (and (memq 'timestamp conditions)
  4618. (re-search-forward org-ts-regexp end t))
  4619. (and (memq 'nottimestamp conditions)
  4620. (not (re-search-forward org-ts-regexp end t)))
  4621. (and (setq m (memq 'regexp conditions))
  4622. (stringp (nth 1 m))
  4623. (re-search-forward (nth 1 m) end t))
  4624. (and (setq m (memq 'notregexp conditions))
  4625. (stringp (nth 1 m))
  4626. (not (re-search-forward (nth 1 m) end t)))
  4627. (and (or
  4628. (setq m (memq 'nottodo conditions))
  4629. (setq m (memq 'todo-unblocked conditions))
  4630. (setq m (memq 'nottodo-unblocked conditions))
  4631. (setq m (memq 'todo conditions)))
  4632. (org-agenda-skip-if-todo m end)))
  4633. end)))
  4634. (defun org-agenda-skip-if-todo (args end)
  4635. "Helper function for `org-agenda-skip-if', do not use it directly.
  4636. ARGS is a list with first element either `todo', `nottodo',
  4637. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4638. a list of TODO keywords, or a state symbol `todo' or `done' or
  4639. `any'."
  4640. (let ((kw (car args))
  4641. (arg (cadr args))
  4642. todo-wds todo-re)
  4643. (setq todo-wds
  4644. (org-uniquify
  4645. (cond
  4646. ((listp arg) ;; list of keywords
  4647. (if (member "*" arg)
  4648. (mapcar 'substring-no-properties org-todo-keywords-1)
  4649. arg))
  4650. ((symbolp arg) ;; keyword class name
  4651. (cond
  4652. ((eq arg 'todo)
  4653. (org-delete-all org-done-keywords
  4654. (mapcar 'substring-no-properties
  4655. org-todo-keywords-1)))
  4656. ((eq arg 'done) org-done-keywords)
  4657. ((eq arg 'any)
  4658. (mapcar 'substring-no-properties org-todo-keywords-1)))))))
  4659. (setq todo-re
  4660. (concat "^\\*+[ \t]+\\<\\("
  4661. (mapconcat 'identity todo-wds "\\|")
  4662. "\\)\\>"))
  4663. (cond
  4664. ((eq kw 'todo) (re-search-forward todo-re end t))
  4665. ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
  4666. ((eq kw 'todo-unblocked)
  4667. (catch 'unblocked
  4668. (while (re-search-forward todo-re end t)
  4669. (or (org-entry-blocked-p) (throw 'unblocked t)))
  4670. nil))
  4671. ((eq kw 'nottodo-unblocked)
  4672. (catch 'unblocked
  4673. (while (re-search-forward todo-re end t)
  4674. (or (org-entry-blocked-p) (throw 'unblocked nil)))
  4675. t))
  4676. )))
  4677. ;;;###autoload
  4678. (defun org-agenda-list-stuck-projects (&rest ignore)
  4679. "Create agenda view for projects that are stuck.
  4680. Stuck projects are project that have no next actions. For the definitions
  4681. of what a project is and how to check if it stuck, customize the variable
  4682. `org-stuck-projects'."
  4683. (interactive)
  4684. (let* ((org-agenda-skip-function
  4685. 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
  4686. ;; We could have used org-agenda-skip-if here.
  4687. (org-agenda-overriding-header
  4688. (or org-agenda-overriding-header "List of stuck projects: "))
  4689. (matcher (nth 0 org-stuck-projects))
  4690. (todo (nth 1 org-stuck-projects))
  4691. (todo-wds (if (member "*" todo)
  4692. (progn
  4693. (org-agenda-prepare-buffers (org-agenda-files
  4694. nil 'ifmode))
  4695. (org-delete-all
  4696. org-done-keywords-for-agenda
  4697. (copy-sequence org-todo-keywords-for-agenda)))
  4698. todo))
  4699. (todo-re (concat "^\\*+[ \t]+\\("
  4700. (mapconcat 'identity todo-wds "\\|")
  4701. "\\)\\>"))
  4702. (tags (nth 2 org-stuck-projects))
  4703. (tags-re (if (member "*" tags)
  4704. (concat org-outline-regexp-bol
  4705. (org-re ".*:[[:alnum:]_@#%]+:[ \t]*$"))
  4706. (if tags
  4707. (concat org-outline-regexp-bol
  4708. ".*:\\("
  4709. (mapconcat 'identity tags "\\|")
  4710. (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
  4711. (gen-re (nth 3 org-stuck-projects))
  4712. (re-list
  4713. (delq nil
  4714. (list
  4715. (if todo todo-re)
  4716. (if tags tags-re)
  4717. (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
  4718. gen-re)))))
  4719. (setq org-agenda-skip-regexp
  4720. (if re-list
  4721. (mapconcat 'identity re-list "\\|")
  4722. (error "No information how to identify unstuck projects")))
  4723. (org-tags-view nil matcher)
  4724. (with-current-buffer org-agenda-buffer-name
  4725. (setq org-agenda-redo-command
  4726. `(org-agenda-list-stuck-projects ,current-prefix-arg)))))
  4727. (autoload 'org-agenda-list-stuck-projects "org-agenda" "\
  4728. Create agenda view for projects that are stuck.
  4729. Stuck projects are project that have no next actions. For the definitions
  4730. of what a project is and how to check if it stuck, customize the variable
  4731. `org-stuck-projects'.
  4732. \(fn &rest IGNORE)" t nil)
  4733. ;;; Diary integration
  4734. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4735. (defvar diary-list-entries-hook)
  4736. (defvar diary-time-regexp)
  4737. (defun org-get-entries-from-diary (date)
  4738. "Get the (Emacs Calendar) diary entries for DATE."
  4739. (require 'diary-lib)
  4740. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4741. (diary-display-hook '(fancy-diary-display))
  4742. (diary-display-function 'fancy-diary-display)
  4743. (pop-up-frames nil)
  4744. (diary-list-entries-hook
  4745. (cons 'org-diary-default-entry diary-list-entries-hook))
  4746. (diary-file-name-prefix nil) ; turn this feature off
  4747. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4748. entries
  4749. (org-disable-agenda-to-diary t))
  4750. (save-excursion
  4751. (save-window-excursion
  4752. (funcall (if (fboundp 'diary-list-entries)
  4753. 'diary-list-entries 'list-diary-entries)
  4754. date 1)))
  4755. (if (not (get-buffer diary-fancy-buffer))
  4756. (setq entries nil)
  4757. (with-current-buffer diary-fancy-buffer
  4758. (setq buffer-read-only nil)
  4759. (if (zerop (buffer-size))
  4760. ;; No entries
  4761. (setq entries nil)
  4762. ;; Omit the date and other unnecessary stuff
  4763. (org-agenda-cleanup-fancy-diary)
  4764. ;; Add prefix to each line and extend the text properties
  4765. (if (zerop (buffer-size))
  4766. (setq entries nil)
  4767. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4768. (setq entries
  4769. (with-temp-buffer
  4770. (insert entries) (goto-char (point-min))
  4771. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4772. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4773. (replace-match (concat "; " (match-string 1)))))
  4774. (buffer-string)))))
  4775. (set-buffer-modified-p nil)
  4776. (kill-buffer diary-fancy-buffer)))
  4777. (when entries
  4778. (setq entries (org-split-string entries "\n"))
  4779. (setq entries
  4780. (mapcar
  4781. (lambda (x)
  4782. (setq x (org-agenda-format-item "" x nil "Diary" nil 'time))
  4783. ;; Extend the text properties to the beginning of the line
  4784. (org-add-props x (text-properties-at (1- (length x)) x)
  4785. 'type "diary" 'date date 'face 'org-agenda-diary))
  4786. entries)))))
  4787. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4788. "Hook run when the fancy diary buffer is cleaned up.")
  4789. (defun org-agenda-cleanup-fancy-diary ()
  4790. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4791. This gets rid of the date, the underline under the date, and
  4792. the dummy entry installed by `org-mode' to ensure non-empty diary for each
  4793. date. It also removes lines that contain only whitespace."
  4794. (goto-char (point-min))
  4795. (if (looking-at ".*?:[ \t]*")
  4796. (progn
  4797. (replace-match "")
  4798. (re-search-forward "\n=+$" nil t)
  4799. (replace-match "")
  4800. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4801. (re-search-forward "\n=+$" nil t)
  4802. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4803. (goto-char (point-min))
  4804. (while (re-search-forward "^ +\n" nil t)
  4805. (replace-match ""))
  4806. (goto-char (point-min))
  4807. (if (re-search-forward "^Org-mode dummy\n?" nil t)
  4808. (replace-match ""))
  4809. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4810. ;; Make sure entries from the diary have the right text properties.
  4811. (eval-after-load "diary-lib"
  4812. '(if (boundp 'diary-modify-entry-list-string-function)
  4813. ;; We can rely on the hook, nothing to do
  4814. nil
  4815. ;; Hook not available, must use advice to make this work
  4816. (defadvice add-to-diary-list (before org-mark-diary-entry activate)
  4817. "Make the position visible."
  4818. (if (and org-disable-agenda-to-diary ;; called from org-agenda
  4819. (stringp string)
  4820. buffer-file-name)
  4821. (setq string (org-modify-diary-entry-string string))))))
  4822. (defun org-modify-diary-entry-string (string)
  4823. "Add text properties to string, allowing org-mode to act on it."
  4824. (org-add-props string nil
  4825. 'mouse-face 'highlight
  4826. 'help-echo (if buffer-file-name
  4827. (format "mouse-2 or RET jump to diary file %s"
  4828. (abbreviate-file-name buffer-file-name))
  4829. "")
  4830. 'org-agenda-diary-link t
  4831. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4832. (defun org-diary-default-entry ()
  4833. "Add a dummy entry to the diary.
  4834. Needed to avoid empty dates which mess up holiday display."
  4835. ;; Catch the error if dealing with the new add-to-diary-alist
  4836. (when org-disable-agenda-to-diary
  4837. (condition-case nil
  4838. (org-add-to-diary-list original-date "Org-mode dummy" "")
  4839. (error
  4840. (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
  4841. (defun org-add-to-diary-list (&rest args)
  4842. (if (fboundp 'diary-add-to-list)
  4843. (apply 'diary-add-to-list args)
  4844. (apply 'add-to-diary-list args)))
  4845. (defvar org-diary-last-run-time nil)
  4846. ;;;###autoload
  4847. (defun org-diary (&rest args)
  4848. "Return diary information from org files.
  4849. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4850. It accesses org files and extracts information from those files to be
  4851. listed in the diary. The function accepts arguments specifying what
  4852. items should be listed. For a list of arguments allowed here, see the
  4853. variable `org-agenda-entry-types'.
  4854. The call in the diary file should look like this:
  4855. &%%(org-diary) ~/path/to/some/orgfile.org
  4856. Use a separate line for each org file to check. Or, if you omit the file name,
  4857. all files listed in `org-agenda-files' will be checked automatically:
  4858. &%%(org-diary)
  4859. If you don't give any arguments (as in the example above), the default
  4860. arguments (:deadline :scheduled :timestamp :sexp) are used.
  4861. So the example above may also be written as
  4862. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4863. The function expects the lisp variables `entry' and `date' to be provided
  4864. by the caller, because this is how the calendar works. Don't use this
  4865. function from a program - use `org-agenda-get-day-entries' instead."
  4866. (when (> (- (org-float-time)
  4867. org-agenda-last-marker-time)
  4868. 5)
  4869. ;; I am not sure if this works with sticky agendas, because the marker
  4870. ;; list is then no longer a global variable.
  4871. (org-agenda-reset-markers))
  4872. (org-compile-prefix-format 'agenda)
  4873. (org-set-sorting-strategy 'agenda)
  4874. (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
  4875. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4876. (list entry)
  4877. (org-agenda-files t)))
  4878. (time (org-float-time))
  4879. file rtn results)
  4880. (when (or (not org-diary-last-run-time)
  4881. (> (- time
  4882. org-diary-last-run-time)
  4883. 3))
  4884. (org-agenda-prepare-buffers files))
  4885. (setq org-diary-last-run-time time)
  4886. ;; If this is called during org-agenda, don't return any entries to
  4887. ;; the calendar. Org Agenda will list these entries itself.
  4888. (if org-disable-agenda-to-diary (setq files nil))
  4889. (while (setq file (pop files))
  4890. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4891. (setq results (append results rtn)))
  4892. (when results
  4893. (setq results
  4894. (mapcar (lambda (i) (replace-regexp-in-string
  4895. org-bracket-link-regexp "\\3" i)) results))
  4896. (concat (org-agenda-finalize-entries results) "\n"))))
  4897. (autoload 'org-diary "org-agenda" "\
  4898. Return diary information from org files.
  4899. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4900. It accesses org files and extracts information from those files to be
  4901. listed in the diary. The function accepts arguments specifying what
  4902. items should be listed. For a list of arguments allowed here, see the
  4903. variable `org-agenda-entry-types'.
  4904. The call in the diary file should look like this:
  4905. &%%(org-diary) ~/path/to/some/orgfile.org
  4906. Use a separate line for each org file to check. Or, if you omit the file name,
  4907. all files listed in `org-agenda-files' will be checked automatically:
  4908. &%%(org-diary)
  4909. If you don't give any arguments (as in the example above), the default
  4910. arguments (:deadline :scheduled :timestamp :sexp) are used.
  4911. So the example above may also be written as
  4912. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4913. The function expects the lisp variables `entry' and `date' to be provided
  4914. by the caller, because this is how the calendar works. Don't use this
  4915. function from a program - use `org-agenda-get-day-entries' instead.
  4916. \(fn &rest ARGS)" nil nil)
  4917. ;;; Agenda entry finders
  4918. (defun org-agenda-get-day-entries (file date &rest args)
  4919. "Does the work for `org-diary' and `org-agenda'.
  4920. FILE is the path to a file to be checked for entries. DATE is date like
  4921. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4922. which kind of entries should be extracted. For details about these, see
  4923. the documentation of `org-diary'."
  4924. (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
  4925. (let* ((org-startup-folded nil)
  4926. (org-startup-align-all-tables nil)
  4927. (buffer (if (file-exists-p file)
  4928. (org-get-agenda-file-buffer file)
  4929. (error "No such file %s" file)))
  4930. arg results rtn deadline-results)
  4931. (if (not buffer)
  4932. ;; If file does not exist, make sure an error message ends up in diary
  4933. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4934. (with-current-buffer buffer
  4935. (unless (derived-mode-p 'org-mode)
  4936. (error "Agenda file %s is not in `org-mode'" file))
  4937. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4938. (let ((case-fold-search nil))
  4939. (save-excursion
  4940. (save-restriction
  4941. (if org-agenda-restrict
  4942. (narrow-to-region org-agenda-restrict-begin
  4943. org-agenda-restrict-end)
  4944. (widen))
  4945. ;; The way we repeatedly append to `results' makes it O(n^2) :-(
  4946. (while (setq arg (pop args))
  4947. (cond
  4948. ((and (eq arg :todo)
  4949. (equal date (calendar-gregorian-from-absolute
  4950. (org-today))))
  4951. (setq rtn (org-agenda-get-todos))
  4952. (setq results (append results rtn)))
  4953. ((eq arg :timestamp)
  4954. (setq rtn (org-agenda-get-blocks))
  4955. (setq results (append results rtn))
  4956. (setq rtn (org-agenda-get-timestamps deadline-results))
  4957. (setq results (append results rtn)))
  4958. ((eq arg :sexp)
  4959. (setq rtn (org-agenda-get-sexps))
  4960. (setq results (append results rtn)))
  4961. ((eq arg :scheduled)
  4962. (setq rtn (org-agenda-get-scheduled deadline-results))
  4963. (setq results (append results rtn)))
  4964. ((eq arg :closed)
  4965. (setq rtn (org-agenda-get-progress))
  4966. (setq results (append results rtn)))
  4967. ((eq arg :deadline)
  4968. (setq rtn (org-agenda-get-deadlines))
  4969. (setq deadline-results (copy-sequence rtn))
  4970. (setq results (append results rtn))))))))
  4971. results))))
  4972. (defsubst org-em (x y list)
  4973. "Is X or Y a member of LIST?"
  4974. (or (memq x list) (memq y list)))
  4975. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4976. (defvar org-agenda-sorting-strategy-selected nil)
  4977. (defun org-agenda-get-todos ()
  4978. "Return the TODO information for agenda display."
  4979. (let* ((props (list 'face nil
  4980. 'done-face 'org-agenda-done
  4981. 'org-not-done-regexp org-not-done-regexp
  4982. 'org-todo-regexp org-todo-regexp
  4983. 'org-complex-heading-regexp org-complex-heading-regexp
  4984. 'mouse-face 'highlight
  4985. 'help-echo
  4986. (format "mouse-2 or RET jump to org file %s"
  4987. (abbreviate-file-name buffer-file-name))))
  4988. (regexp (format org-heading-keyword-regexp-format
  4989. (cond
  4990. ((and org-select-this-todo-keyword
  4991. (equal org-select-this-todo-keyword "*"))
  4992. org-todo-regexp)
  4993. (org-select-this-todo-keyword
  4994. (concat "\\("
  4995. (mapconcat 'identity
  4996. (org-split-string
  4997. org-select-this-todo-keyword
  4998. "|")
  4999. "\\|") "\\)"))
  5000. (t org-not-done-regexp))))
  5001. marker priority category category-pos level tags todo-state ts-date ts-date-type
  5002. ee txt beg end inherited-tags)
  5003. (goto-char (point-min))
  5004. (while (re-search-forward regexp nil t)
  5005. (catch :skip
  5006. (save-match-data
  5007. (beginning-of-line)
  5008. (org-agenda-skip)
  5009. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  5010. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  5011. (goto-char (1+ beg))
  5012. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  5013. (throw :skip nil)))
  5014. (goto-char (match-beginning 2))
  5015. (setq marker (org-agenda-new-marker (match-beginning 0))
  5016. category (org-get-category)
  5017. ts-date (let (ts)
  5018. (save-match-data
  5019. (cond ((org-em 'scheduled-up 'scheduled-down
  5020. org-agenda-sorting-strategy-selected)
  5021. (setq ts (org-entry-get (point) "SCHEDULED")
  5022. ts-date-type " scheduled"))
  5023. ((org-em 'deadline-up 'deadline-down
  5024. org-agenda-sorting-strategy-selected)
  5025. (setq ts (org-entry-get (point) "DEADLINE")
  5026. ts-date-type " deadline"))
  5027. ((org-em 'ts-up 'ts-down
  5028. org-agenda-sorting-strategy-selected)
  5029. (setq ts (org-entry-get (point) "TIMESTAMP")
  5030. ts-date-type " timestamp"))
  5031. ((org-em 'tsia-up 'tsia-down
  5032. org-agenda-sorting-strategy-selected)
  5033. (setq ts (org-entry-get (point) "TIMESTAMP_IA")
  5034. ts-date-type " timestamp_ia"))
  5035. ((org-em 'timestamp-up 'timestamp-down
  5036. org-agenda-sorting-strategy-selected)
  5037. (setq ts (or (org-entry-get (point) "SCHEDULED")
  5038. (org-entry-get (point) "DEADLINE")
  5039. (org-entry-get (point) "TIMESTAMP")
  5040. (org-entry-get (point) "TIMESTAMP_IA"))
  5041. ts-date-type ""))
  5042. (t (setq ts-date-type "")))
  5043. (when ts (ignore-errors (org-time-string-to-absolute ts)))))
  5044. category-pos (get-text-property (point) 'org-category-position)
  5045. txt (org-trim
  5046. (buffer-substring (match-beginning 2) (match-end 0)))
  5047. inherited-tags
  5048. (or (eq org-agenda-show-inherited-tags 'always)
  5049. (and (listp org-agenda-show-inherited-tags)
  5050. (memq 'todo org-agenda-show-inherited-tags))
  5051. (and (eq org-agenda-show-inherited-tags t)
  5052. (or (eq org-agenda-use-tag-inheritance t)
  5053. (memq 'todo org-agenda-use-tag-inheritance))))
  5054. tags (org-get-tags-at nil (not inherited-tags))
  5055. level (make-string (org-reduced-level (org-outline-level)) ? )
  5056. txt (org-agenda-format-item "" txt level category tags t)
  5057. priority (1+ (org-get-priority txt))
  5058. todo-state (org-get-todo-state))
  5059. (org-add-props txt props
  5060. 'org-marker marker 'org-hd-marker marker
  5061. 'priority priority 'org-category category
  5062. 'level level
  5063. 'ts-date ts-date
  5064. 'org-category-position category-pos
  5065. 'type (concat "todo" ts-date-type) 'todo-state todo-state)
  5066. (push txt ee)
  5067. (if org-agenda-todo-list-sublevels
  5068. (goto-char (match-end 2))
  5069. (org-end-of-subtree 'invisible))))
  5070. (nreverse ee)))
  5071. (defun org-agenda-todo-custom-ignore-p (time n)
  5072. "Check whether timestamp is farther away than n number of days.
  5073. This function is invoked if `org-agenda-todo-ignore-deadlines',
  5074. `org-agenda-todo-ignore-scheduled' or
  5075. `org-agenda-todo-ignore-timestamp' is set to an integer."
  5076. (let ((days (org-time-stamp-to-now
  5077. time org-agenda-todo-ignore-time-comparison-use-seconds)))
  5078. (if (>= n 0)
  5079. (>= days n)
  5080. (<= days n))))
  5081. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  5082. (&optional end)
  5083. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  5084. (when (or org-agenda-todo-ignore-with-date
  5085. org-agenda-todo-ignore-scheduled
  5086. org-agenda-todo-ignore-deadlines
  5087. org-agenda-todo-ignore-timestamp)
  5088. (setq end (or end (save-excursion (outline-next-heading) (point))))
  5089. (save-excursion
  5090. (or (and org-agenda-todo-ignore-with-date
  5091. (re-search-forward org-ts-regexp end t))
  5092. (and org-agenda-todo-ignore-scheduled
  5093. (re-search-forward org-scheduled-time-regexp end t)
  5094. (cond
  5095. ((eq org-agenda-todo-ignore-scheduled 'future)
  5096. (> (org-time-stamp-to-now
  5097. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5098. ((eq org-agenda-todo-ignore-scheduled 'past)
  5099. (<= (org-time-stamp-to-now
  5100. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5101. ((numberp org-agenda-todo-ignore-scheduled)
  5102. (org-agenda-todo-custom-ignore-p
  5103. (match-string 1) org-agenda-todo-ignore-scheduled))
  5104. (t)))
  5105. (and org-agenda-todo-ignore-deadlines
  5106. (re-search-forward org-deadline-time-regexp end t)
  5107. (cond
  5108. ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
  5109. ((eq org-agenda-todo-ignore-deadlines 'far)
  5110. (not (org-deadline-close (match-string 1))))
  5111. ((eq org-agenda-todo-ignore-deadlines 'future)
  5112. (> (org-time-stamp-to-now
  5113. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5114. ((eq org-agenda-todo-ignore-deadlines 'past)
  5115. (<= (org-time-stamp-to-now
  5116. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5117. ((numberp org-agenda-todo-ignore-deadlines)
  5118. (org-agenda-todo-custom-ignore-p
  5119. (match-string 1) org-agenda-todo-ignore-deadlines))
  5120. (t (org-deadline-close (match-string 1)))))
  5121. (and org-agenda-todo-ignore-timestamp
  5122. (let ((buffer (current-buffer))
  5123. (regexp
  5124. (concat
  5125. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  5126. (start (point)))
  5127. ;; Copy current buffer into a temporary one
  5128. (with-temp-buffer
  5129. (insert-buffer-substring buffer start end)
  5130. (goto-char (point-min))
  5131. ;; Delete SCHEDULED and DEADLINE items
  5132. (while (re-search-forward regexp end t)
  5133. (delete-region (match-beginning 0) (match-end 0)))
  5134. (goto-char (point-min))
  5135. ;; No search for timestamp left
  5136. (when (re-search-forward org-ts-regexp nil t)
  5137. (cond
  5138. ((eq org-agenda-todo-ignore-timestamp 'future)
  5139. (> (org-time-stamp-to-now
  5140. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5141. ((eq org-agenda-todo-ignore-timestamp 'past)
  5142. (<= (org-time-stamp-to-now
  5143. (match-string 1) org-agenda-todo-ignore-time-comparison-use-seconds) 0))
  5144. ((numberp org-agenda-todo-ignore-timestamp)
  5145. (org-agenda-todo-custom-ignore-p
  5146. (match-string 1) org-agenda-todo-ignore-timestamp))
  5147. (t))))))))))
  5148. (autoload 'org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item "org-agenda" "\
  5149. Do we have a reason to ignore this TODO entry because it has a time stamp?
  5150. \(fn &optional END)" nil nil)
  5151. (defun org-agenda-get-timestamps (&optional deadline-results)
  5152. "Return the date stamp information for agenda display."
  5153. (let* ((props (list 'face 'org-agenda-calendar-event
  5154. 'org-not-done-regexp org-not-done-regexp
  5155. 'org-todo-regexp org-todo-regexp
  5156. 'org-complex-heading-regexp org-complex-heading-regexp
  5157. 'mouse-face 'highlight
  5158. 'help-echo
  5159. (format "mouse-2 or RET jump to org file %s"
  5160. (abbreviate-file-name buffer-file-name))))
  5161. (d1 (calendar-absolute-from-gregorian date))
  5162. mm
  5163. (deadline-position-alist
  5164. (mapcar (lambda (a) (and (setq mm (get-text-property
  5165. 0 'org-hd-marker a))
  5166. (cons (marker-position mm) a)))
  5167. deadline-results))
  5168. (remove-re org-ts-regexp)
  5169. (regexp
  5170. (concat
  5171. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  5172. (regexp-quote
  5173. (substring
  5174. (format-time-string
  5175. (car org-time-stamp-formats)
  5176. (apply 'encode-time ; DATE bound by calendar
  5177. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5178. 1 11))
  5179. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  5180. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  5181. marker hdmarker deadlinep scheduledp clockp closedp inactivep
  5182. donep tmp priority category category-pos level ee txt timestr tags
  5183. b0 b3 e3 head todo-state end-of-match show-all warntime habitp
  5184. inherited-tags ts-date)
  5185. (goto-char (point-min))
  5186. (while (setq end-of-match (re-search-forward regexp nil t))
  5187. (setq b0 (match-beginning 0)
  5188. b3 (match-beginning 3) e3 (match-end 3)
  5189. todo-state (save-match-data (ignore-errors (org-get-todo-state)))
  5190. habitp (and (functionp 'org-is-habit-p) (save-match-data (org-is-habit-p)))
  5191. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5192. (member todo-state
  5193. org-agenda-repeating-timestamp-show-all)))
  5194. (catch :skip
  5195. (and (org-at-date-range-p) (throw :skip nil))
  5196. (org-agenda-skip)
  5197. (if (and (match-end 1)
  5198. (not (= d1 (org-time-string-to-absolute
  5199. (match-string 1) d1 nil show-all
  5200. (current-buffer) b0))))
  5201. (throw :skip nil))
  5202. (if (and e3
  5203. (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
  5204. (throw :skip nil))
  5205. (setq tmp (buffer-substring (max (point-min)
  5206. (- b0 org-ds-keyword-length))
  5207. b0)
  5208. timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
  5209. inactivep (= (char-after b0) ?\[)
  5210. deadlinep (string-match org-deadline-regexp tmp)
  5211. scheduledp (string-match org-scheduled-regexp tmp)
  5212. closedp (and org-agenda-include-inactive-timestamps
  5213. (string-match org-closed-string tmp))
  5214. clockp (and org-agenda-include-inactive-timestamps
  5215. (or (string-match org-clock-string tmp)
  5216. (string-match "]-+\\'" tmp)))
  5217. warntime (get-text-property (point) 'org-appt-warntime)
  5218. donep (member todo-state org-done-keywords))
  5219. (if (or scheduledp deadlinep closedp clockp
  5220. (and donep org-agenda-skip-timestamp-if-done))
  5221. (throw :skip t))
  5222. (if (string-match ">" timestr)
  5223. ;; substring should only run to end of time stamp
  5224. (setq timestr (substring timestr 0 (match-end 0))))
  5225. (setq marker (org-agenda-new-marker b0)
  5226. category (org-get-category b0)
  5227. category-pos (get-text-property b0 'org-category-position))
  5228. (save-excursion
  5229. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5230. (throw :skip nil)
  5231. (goto-char (match-beginning 0))
  5232. (if (and (eq t org-agenda-skip-timestamp-if-deadline-is-shown)
  5233. (assoc (point) deadline-position-alist))
  5234. (throw :skip nil))
  5235. (setq hdmarker (org-agenda-new-marker)
  5236. inherited-tags
  5237. (or (eq org-agenda-show-inherited-tags 'always)
  5238. (and (listp org-agenda-show-inherited-tags)
  5239. (memq 'agenda org-agenda-show-inherited-tags))
  5240. (and (eq org-agenda-show-inherited-tags t)
  5241. (or (eq org-agenda-use-tag-inheritance t)
  5242. (memq 'agenda org-agenda-use-tag-inheritance))))
  5243. tags (org-get-tags-at nil (not inherited-tags))
  5244. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5245. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5246. (setq head (or (match-string 1) ""))
  5247. (setq txt (org-agenda-format-item
  5248. (if inactivep org-agenda-inactive-leader nil)
  5249. head level category tags timestr
  5250. remove-re habitp)))
  5251. (setq priority (org-get-priority txt))
  5252. (org-add-props txt props 'priority priority
  5253. 'org-marker marker 'org-hd-marker hdmarker
  5254. 'org-category category 'date date
  5255. 'level level
  5256. 'ts-date
  5257. (ignore-errors (org-time-string-to-absolute timestr))
  5258. 'org-category-position category-pos
  5259. 'todo-state todo-state
  5260. 'warntime warntime
  5261. 'type "timestamp")
  5262. (push txt ee))
  5263. (if org-agenda-skip-additional-timestamps-same-entry
  5264. (outline-next-heading)
  5265. (goto-char end-of-match))))
  5266. (nreverse ee)))
  5267. (defun org-agenda-get-sexps ()
  5268. "Return the sexp information for agenda display."
  5269. (require 'diary-lib)
  5270. (let* ((props (list 'face 'org-agenda-calendar-sexp
  5271. 'mouse-face 'highlight
  5272. 'help-echo
  5273. (format "mouse-2 or RET jump to org file %s"
  5274. (abbreviate-file-name buffer-file-name))))
  5275. (regexp "^&?%%(")
  5276. marker category extra category-pos level ee txt tags entry
  5277. result beg b sexp sexp-entry todo-state warntime inherited-tags)
  5278. (goto-char (point-min))
  5279. (while (re-search-forward regexp nil t)
  5280. (catch :skip
  5281. (org-agenda-skip)
  5282. (setq beg (match-beginning 0))
  5283. (goto-char (1- (match-end 0)))
  5284. (setq b (point))
  5285. (forward-sexp 1)
  5286. (setq sexp (buffer-substring b (point)))
  5287. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  5288. (org-trim (match-string 1))
  5289. ""))
  5290. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  5291. (when result
  5292. (setq marker (org-agenda-new-marker beg)
  5293. level (make-string (org-reduced-level (org-outline-level)) ? )
  5294. category (org-get-category beg)
  5295. category-pos (get-text-property beg 'org-category-position)
  5296. inherited-tags
  5297. (or (eq org-agenda-show-inherited-tags 'always)
  5298. (and (listp org-agenda-show-inherited-tags)
  5299. (memq 'agenda org-agenda-show-inherited-tags))
  5300. (and (eq org-agenda-show-inherited-tags t)
  5301. (or (eq org-agenda-use-tag-inheritance t)
  5302. (memq 'agenda org-agenda-use-tag-inheritance))))
  5303. tags (org-get-tags-at nil (not inherited-tags))
  5304. todo-state (org-get-todo-state)
  5305. warntime (get-text-property (point) 'org-appt-warntime)
  5306. extra nil)
  5307. (dolist (r (if (stringp result)
  5308. (list result)
  5309. result)) ;; we expect a list here
  5310. (when (and org-agenda-diary-sexp-prefix
  5311. (string-match org-agenda-diary-sexp-prefix r))
  5312. (setq extra (match-string 0 r)
  5313. r (replace-match "" nil nil r)))
  5314. (if (string-match "\\S-" r)
  5315. (setq txt r)
  5316. (setq txt "SEXP entry returned empty string"))
  5317. (setq txt (org-agenda-format-item extra txt level category tags 'time))
  5318. (org-add-props txt props 'org-marker marker
  5319. 'org-category category 'date date 'todo-state todo-state
  5320. 'org-category-position category-pos 'tags tags
  5321. 'level level
  5322. 'type "sexp" 'warntime warntime)
  5323. (push txt ee)))))
  5324. (nreverse ee)))
  5325. ;; Calendar sanity: define some functions that are independent of
  5326. ;; `calendar-date-style'.
  5327. ;; Normally I would like to use ISO format when calling the diary functions,
  5328. ;; but to make sure we still have Emacs 22 compatibility we bind
  5329. ;; also `european-calendar-style' and use european format
  5330. (defun org-anniversary (year month day &optional mark)
  5331. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  5332. (org-no-warnings
  5333. (let ((calendar-date-style 'european) (european-calendar-style t))
  5334. (diary-anniversary day month year mark))))
  5335. (defun org-cyclic (N year month day &optional mark)
  5336. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  5337. (org-no-warnings
  5338. (let ((calendar-date-style 'european) (european-calendar-style t))
  5339. (diary-cyclic N day month year mark))))
  5340. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  5341. "Like `diary-block', but with fixed (ISO) order of arguments."
  5342. (org-no-warnings
  5343. (let ((calendar-date-style 'european) (european-calendar-style t))
  5344. (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
  5345. (defun org-date (year month day &optional mark)
  5346. "Like `diary-date', but with fixed (ISO) order of arguments."
  5347. (org-no-warnings
  5348. (let ((calendar-date-style 'european) (european-calendar-style t))
  5349. (diary-date day month year mark))))
  5350. ;; Define the` org-class' function
  5351. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  5352. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  5353. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  5354. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  5355. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  5356. `holidays', then any date that is known by the Emacs calendar to be a
  5357. holiday will also be skipped. If SKIP-WEEKS arguments are holiday strings,
  5358. then those holidays will be skipped."
  5359. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  5360. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  5361. (d (calendar-absolute-from-gregorian date))
  5362. (h (when skip-weeks (calendar-check-holidays date))))
  5363. (and
  5364. (<= date1 d)
  5365. (<= d date2)
  5366. (= (calendar-day-of-week date) dayname)
  5367. (or (not skip-weeks)
  5368. (progn
  5369. (require 'cal-iso)
  5370. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  5371. (not (or (and h (memq 'holidays skip-weeks))
  5372. (delq nil (mapcar (lambda(g) (member g skip-weeks)) h))))
  5373. entry)))
  5374. (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
  5375. "Like `org-class', but honor `calendar-date-style'.
  5376. The order of the first 2 times 3 arguments depends on the variable
  5377. `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
  5378. So for American calendars, give this as MONTH DAY YEAR, for European as
  5379. DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
  5380. DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
  5381. is any number of ISO weeks in the block period for which the item should
  5382. be skipped.
  5383. This function is here only for backward compatibility and it is deprecated,
  5384. please use `org-class' instead."
  5385. (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
  5386. (date2 (org-order-calendar-date-args m2 d2 y2)))
  5387. (org-class
  5388. (nth 2 date1) (car date1) (nth 1 date1)
  5389. (nth 2 date2) (car date2) (nth 1 date2)
  5390. dayname skip-weeks)))
  5391. (make-obsolete 'org-diary-class 'org-class "")
  5392. (defvar org-agenda-show-log-scoped) ;; dynamically scope in `org-timeline' or `org-agenda-list'
  5393. (defalias 'org-get-closed 'org-agenda-get-progress)
  5394. (defun org-agenda-get-progress ()
  5395. "Return the logged TODO entries for agenda display."
  5396. (let* ((props (list 'mouse-face 'highlight
  5397. 'org-not-done-regexp org-not-done-regexp
  5398. 'org-todo-regexp org-todo-regexp
  5399. 'org-complex-heading-regexp org-complex-heading-regexp
  5400. 'help-echo
  5401. (format "mouse-2 or RET jump to org file %s"
  5402. (abbreviate-file-name buffer-file-name))))
  5403. (items (if (consp org-agenda-show-log-scoped)
  5404. org-agenda-show-log-scoped
  5405. (if (eq org-agenda-show-log-scoped 'clockcheck)
  5406. '(clock)
  5407. org-agenda-log-mode-items)))
  5408. (parts
  5409. (delq nil
  5410. (list
  5411. (if (memq 'closed items) (concat "\\<" org-closed-string))
  5412. (if (memq 'clock items) (concat "\\<" org-clock-string))
  5413. (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
  5414. (parts-re (if parts (mapconcat 'identity parts "\\|")
  5415. (error "`org-agenda-log-mode-items' is empty")))
  5416. (regexp (concat
  5417. "\\(" parts-re "\\)"
  5418. " *\\["
  5419. (regexp-quote
  5420. (substring
  5421. (format-time-string
  5422. (car org-time-stamp-formats)
  5423. (apply 'encode-time ; DATE bound by calendar
  5424. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  5425. 1 11))))
  5426. (org-agenda-search-headline-for-time nil)
  5427. marker hdmarker priority category category-pos level tags closedp
  5428. statep clockp state ee txt extra timestr rest clocked inherited-tags)
  5429. (goto-char (point-min))
  5430. (while (re-search-forward regexp nil t)
  5431. (catch :skip
  5432. (org-agenda-skip)
  5433. (setq marker (org-agenda-new-marker (match-beginning 0))
  5434. closedp (equal (match-string 1) org-closed-string)
  5435. statep (equal (string-to-char (match-string 1)) ?-)
  5436. clockp (not (or closedp statep))
  5437. state (and statep (match-string 2))
  5438. category (org-get-category (match-beginning 0))
  5439. category-pos (get-text-property (match-beginning 0) 'org-category-position)
  5440. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  5441. (when (string-match "\\]" timestr)
  5442. ;; substring should only run to end of time stamp
  5443. (setq rest (substring timestr (match-end 0))
  5444. timestr (substring timestr 0 (match-end 0)))
  5445. (if (and (not closedp) (not statep)
  5446. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  5447. rest))
  5448. (progn (setq timestr (concat (substring timestr 0 -1)
  5449. "-" (match-string 1 rest) "]"))
  5450. (setq clocked (match-string 2 rest)))
  5451. (setq clocked "-")))
  5452. (save-excursion
  5453. (setq extra
  5454. (cond
  5455. ((not org-agenda-log-mode-add-notes) nil)
  5456. (statep
  5457. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  5458. (match-string 1)))
  5459. (clockp
  5460. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  5461. (match-string 1)))))
  5462. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5463. (throw :skip nil)
  5464. (goto-char (match-beginning 0))
  5465. (setq hdmarker (org-agenda-new-marker)
  5466. inherited-tags
  5467. (or (eq org-agenda-show-inherited-tags 'always)
  5468. (and (listp org-agenda-show-inherited-tags)
  5469. (memq 'todo org-agenda-show-inherited-tags))
  5470. (and (eq org-agenda-show-inherited-tags t)
  5471. (or (eq org-agenda-use-tag-inheritance t)
  5472. (memq 'todo org-agenda-use-tag-inheritance))))
  5473. tags (org-get-tags-at nil (not inherited-tags))
  5474. level (make-string (org-reduced-level (org-outline-level)) ? ))
  5475. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5476. (setq txt (match-string 1))
  5477. (when extra
  5478. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5479. (setq txt (concat (substring txt 0 (match-beginning 1))
  5480. " - " extra " " (match-string 2 txt)))
  5481. (setq txt (concat txt " - " extra))))
  5482. (setq txt (org-agenda-format-item
  5483. (cond
  5484. (closedp "Closed: ")
  5485. (statep (concat "State: (" state ")"))
  5486. (t (concat "Clocked: (" clocked ")")))
  5487. txt level category tags timestr)))
  5488. (setq priority 100000)
  5489. (org-add-props txt props
  5490. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5491. 'priority priority 'org-category category
  5492. 'org-category-position category-pos
  5493. 'level level
  5494. 'type "closed" 'date date
  5495. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5496. (push txt ee))
  5497. (goto-char (point-at-eol))))
  5498. (nreverse ee)))
  5499. (defun org-agenda-show-clocking-issues ()
  5500. "Add overlays, showing issues with clocking.
  5501. See also the user option `org-agenda-clock-consistency-checks'."
  5502. (interactive)
  5503. (let* ((org-time-clocksum-use-effort-durations nil)
  5504. (pl org-agenda-clock-consistency-checks)
  5505. (re (concat "^[ \t]*"
  5506. org-clock-string
  5507. "[ \t]+"
  5508. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5509. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5510. (tlstart 0.)
  5511. (tlend 0.)
  5512. (maxtime (org-hh:mm-string-to-minutes
  5513. (or (plist-get pl :max-duration) "24:00")))
  5514. (mintime (org-hh:mm-string-to-minutes
  5515. (or (plist-get pl :min-duration) 0)))
  5516. (maxgap (org-hh:mm-string-to-minutes
  5517. ;; default 30:00 means never complain
  5518. (or (plist-get pl :max-gap) "30:00")))
  5519. (gapok (mapcar 'org-hh:mm-string-to-minutes
  5520. (plist-get pl :gap-ok-around)))
  5521. (def-face (or (plist-get pl :default-face)
  5522. '((:background "DarkRed") (:foreground "white"))))
  5523. issue face m te ts dt ov)
  5524. (goto-char (point-min))
  5525. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5526. (setq issue nil face def-face)
  5527. (catch 'next
  5528. (setq m (org-get-at-bol 'org-marker)
  5529. te nil ts nil)
  5530. (unless (and m (markerp m))
  5531. (setq issue "No valid clock line") (throw 'next t))
  5532. (org-with-point-at m
  5533. (save-excursion
  5534. (goto-char (point-at-bol))
  5535. (unless (looking-at re)
  5536. (error "No valid Clock line")
  5537. (throw 'next t))
  5538. (unless (match-end 3)
  5539. (setq issue "No end time"
  5540. face (or (plist-get pl :no-end-time-face) face))
  5541. (throw 'next t))
  5542. (setq ts (match-string 1)
  5543. te (match-string 3)
  5544. ts (org-float-time
  5545. (apply 'encode-time (org-parse-time-string ts)))
  5546. te (org-float-time
  5547. (apply 'encode-time (org-parse-time-string te)))
  5548. dt (- te ts))))
  5549. (cond
  5550. ((> dt (* 60 maxtime))
  5551. ;; a very long clocking chunk
  5552. (setq issue (format "Clocking interval is very long: %s"
  5553. (org-minutes-to-clocksum-string
  5554. (floor (/ (float dt) 60.))))
  5555. face (or (plist-get pl :long-face) face)))
  5556. ((< dt (* 60 mintime))
  5557. ;; a very short clocking chunk
  5558. (setq issue (format "Clocking interval is very short: %s"
  5559. (org-minutes-to-clocksum-string
  5560. (floor (/ (float dt) 60.))))
  5561. face (or (plist-get pl :short-face) face)))
  5562. ((and (> tlend 0) (< ts tlend))
  5563. ;; Two clock entries are overlapping
  5564. (setq issue (format "Clocking overlap: %d minutes"
  5565. (/ (- tlend ts) 60))
  5566. face (or (plist-get pl :overlap-face) face)))
  5567. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5568. ;; There is a gap, lets see if we need to report it
  5569. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5570. (setq issue (format "Clocking gap: %d minutes"
  5571. (/ (- ts tlend) 60))
  5572. face (or (plist-get pl :gap-face) face))))
  5573. (t nil)))
  5574. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5575. (when issue
  5576. ;; OK, there was some issue, add an overlay to show the issue
  5577. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5578. (overlay-put ov 'before-string
  5579. (concat
  5580. (org-add-props
  5581. (format "%-43s" (concat " " issue))
  5582. nil
  5583. 'face face)
  5584. "\n"))
  5585. (overlay-put ov 'evaporate t)))))
  5586. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5587. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5588. (catch 'exit
  5589. (unless ok-list
  5590. ;; there are no OK times for gaps...
  5591. (throw 'exit nil))
  5592. (if (> (- (/ t2 36000) (/ t1 36000)) 24)
  5593. ;; This is more than 24 hours, so it is OK.
  5594. ;; because we have at least one OK time, that must be in the
  5595. ;; 24 hour interval.
  5596. (throw 'exit t))
  5597. ;; We have a shorter gap.
  5598. ;; Now we have to get the minute of the day when these times are
  5599. (let* ((t1dec (decode-time (seconds-to-time t1)))
  5600. (t2dec (decode-time (seconds-to-time t2)))
  5601. ;; compute the minute on the day
  5602. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5603. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5604. (when (< min2 min1)
  5605. ;; if min2 is smaller than min1, this means it is on the next day.
  5606. ;; Wrap it to after midnight.
  5607. (setq min2 (+ min2 1440)))
  5608. ;; Now check if any of the OK times is in the gap
  5609. (mapc (lambda (x)
  5610. ;; Wrap the time to after midnight if necessary
  5611. (if (< x min1) (setq x (+ x 1440)))
  5612. ;; Check if in interval
  5613. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5614. ok-list)
  5615. ;; Nope, this gap is not OK
  5616. nil)))
  5617. (defun org-agenda-get-deadlines ()
  5618. "Return the deadline information for agenda display."
  5619. (let* ((props (list 'mouse-face 'highlight
  5620. 'org-not-done-regexp org-not-done-regexp
  5621. 'org-todo-regexp org-todo-regexp
  5622. 'org-complex-heading-regexp org-complex-heading-regexp
  5623. 'help-echo
  5624. (format "mouse-2 or RET jump to org file %s"
  5625. (abbreviate-file-name buffer-file-name))))
  5626. (regexp org-deadline-time-regexp)
  5627. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  5628. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  5629. d2 diff dfrac wdays pos pos1 category category-pos level
  5630. tags suppress-prewarning ee txt head face s todo-state
  5631. show-all upcomingp donep timestr warntime inherited-tags ts-date)
  5632. (goto-char (point-min))
  5633. (while (re-search-forward regexp nil t)
  5634. (catch :skip
  5635. (org-agenda-skip)
  5636. (setq s (match-string 1)
  5637. txt nil
  5638. pos (1- (match-beginning 1))
  5639. todo-state (save-match-data (org-get-todo-state))
  5640. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5641. (member todo-state
  5642. org-agenda-repeating-timestamp-show-all))
  5643. d2 (org-time-string-to-absolute
  5644. (match-string 1) d1 'past show-all
  5645. (current-buffer) pos)
  5646. diff (- d2 d1))
  5647. (setq suppress-prewarning
  5648. (let ((ds (and org-agenda-skip-deadline-prewarning-if-scheduled
  5649. (let ((item (buffer-substring (point-at-bol)
  5650. (point-at-eol))))
  5651. (save-match-data
  5652. (and (string-match
  5653. org-scheduled-time-regexp item)
  5654. (match-string 1 item)))))))
  5655. (cond
  5656. ((not ds) nil)
  5657. ;; The current item has a scheduled date (in ds), so
  5658. ;; evaluate its prewarning lead time.
  5659. ((integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5660. ;; Use global prewarning-restart lead time.
  5661. org-agenda-skip-deadline-prewarning-if-scheduled)
  5662. ((eq org-agenda-skip-deadline-prewarning-if-scheduled
  5663. 'pre-scheduled)
  5664. ;; Set prewarning to no earlier than scheduled.
  5665. (min (- d2 (org-time-string-to-absolute
  5666. ds d1 'past show-all (current-buffer) pos))
  5667. org-deadline-warning-days))
  5668. ;; Set prewarning to deadline.
  5669. (t 0))))
  5670. (setq wdays (if suppress-prewarning
  5671. (let ((org-deadline-warning-days suppress-prewarning))
  5672. (org-get-wdays s))
  5673. (org-get-wdays s))
  5674. dfrac (- 1 (/ (* 1.0 diff) (max wdays 1)))
  5675. upcomingp (and todayp (> diff 0)))
  5676. ;; When to show a deadline in the calendar:
  5677. ;; If the expiration is within wdays warning time.
  5678. ;; Past-due deadlines are only shown on the current date
  5679. (if (and (or (and (<= diff wdays)
  5680. (and todayp (not org-agenda-only-exact-dates)))
  5681. (= diff 0)))
  5682. (save-excursion
  5683. ;; (setq todo-state (org-get-todo-state))
  5684. (setq donep (member todo-state org-done-keywords))
  5685. (if (and donep
  5686. (or org-agenda-skip-deadline-if-done
  5687. (not (= diff 0))))
  5688. (setq txt nil)
  5689. (setq category (org-get-category)
  5690. warntime (get-text-property (point) 'org-appt-warntime)
  5691. category-pos (get-text-property (point) 'org-category-position))
  5692. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  5693. (throw :skip nil)
  5694. (goto-char (match-end 0))
  5695. (setq pos1 (match-beginning 0))
  5696. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5697. (setq inherited-tags
  5698. (or (eq org-agenda-show-inherited-tags 'always)
  5699. (and (listp org-agenda-show-inherited-tags)
  5700. (memq 'agenda org-agenda-show-inherited-tags))
  5701. (and (eq org-agenda-show-inherited-tags t)
  5702. (or (eq org-agenda-use-tag-inheritance t)
  5703. (memq 'agenda org-agenda-use-tag-inheritance))))
  5704. tags (org-get-tags-at pos1 (not inherited-tags)))
  5705. (setq head (buffer-substring
  5706. (point)
  5707. (progn (skip-chars-forward "^\r\n")
  5708. (point))))
  5709. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5710. (setq timestr
  5711. (concat (substring s (match-beginning 1)) " "))
  5712. (setq timestr 'time))
  5713. (setq txt (org-agenda-format-item
  5714. (if (= diff 0)
  5715. (car org-agenda-deadline-leaders)
  5716. (if (functionp
  5717. (nth 1 org-agenda-deadline-leaders))
  5718. (funcall
  5719. (nth 1 org-agenda-deadline-leaders)
  5720. diff date)
  5721. (format (nth 1 org-agenda-deadline-leaders)
  5722. diff)))
  5723. head level category tags
  5724. (if (not (= diff 0)) nil timestr)))))
  5725. (when txt
  5726. (setq face (org-agenda-deadline-face dfrac))
  5727. (org-add-props txt props
  5728. 'org-marker (org-agenda-new-marker pos)
  5729. 'warntime warntime
  5730. 'level level
  5731. 'ts-date d2
  5732. 'org-hd-marker (org-agenda-new-marker pos1)
  5733. 'priority (+ (- diff)
  5734. (org-get-priority txt))
  5735. 'org-category category
  5736. 'org-category-position category-pos
  5737. 'todo-state todo-state
  5738. 'type (if upcomingp "upcoming-deadline" "deadline")
  5739. 'date (if upcomingp date d2)
  5740. 'face (if donep 'org-agenda-done face)
  5741. 'undone-face face 'done-face 'org-agenda-done)
  5742. (push txt ee))))))
  5743. (nreverse ee)))
  5744. (defun org-agenda-deadline-face (fraction)
  5745. "Return the face to displaying a deadline item.
  5746. FRACTION is what fraction of the head-warning time has passed."
  5747. (let ((faces org-agenda-deadline-faces) f)
  5748. (catch 'exit
  5749. (while (setq f (pop faces))
  5750. (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
  5751. (defun org-agenda-get-scheduled (&optional deadline-results)
  5752. "Return the scheduled information for agenda display."
  5753. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5754. 'org-todo-regexp org-todo-regexp
  5755. 'org-complex-heading-regexp org-complex-heading-regexp
  5756. 'done-face 'org-agenda-done
  5757. 'mouse-face 'highlight
  5758. 'help-echo
  5759. (format "mouse-2 or RET jump to org file %s"
  5760. (abbreviate-file-name buffer-file-name))))
  5761. (regexp org-scheduled-time-regexp)
  5762. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  5763. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  5764. mm
  5765. (deadline-position-alist
  5766. (mapcar (lambda (a) (and (setq mm (get-text-property
  5767. 0 'org-hd-marker a))
  5768. (cons (marker-position mm) a)))
  5769. deadline-results))
  5770. d2 diff pos pos1 category category-pos level tags donep
  5771. ee txt head pastschedp todo-state face timestr s habitp show-all
  5772. did-habit-check-p warntime inherited-tags ts-date suppress-delay
  5773. ddays)
  5774. (goto-char (point-min))
  5775. (while (re-search-forward regexp nil t)
  5776. (catch :skip
  5777. (org-agenda-skip)
  5778. (setq s (match-string 1)
  5779. txt nil
  5780. pos (1- (match-beginning 1))
  5781. todo-state (save-match-data (org-get-todo-state))
  5782. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5783. (member todo-state
  5784. org-agenda-repeating-timestamp-show-all))
  5785. d2 (org-time-string-to-absolute
  5786. (match-string 1) d1 'past show-all
  5787. (current-buffer) pos)
  5788. diff (- d2 d1)
  5789. warntime (get-text-property (point) 'org-appt-warntime))
  5790. (setq pastschedp (and todayp (< diff 0)))
  5791. (setq did-habit-check-p nil)
  5792. (setq suppress-delay
  5793. (let ((ds (and org-agenda-skip-scheduled-delay-if-deadline
  5794. (let ((item (buffer-substring (point-at-bol) (point-at-eol))))
  5795. (save-match-data
  5796. (and (string-match
  5797. org-deadline-time-regexp item)
  5798. (match-string 1 item)))))))
  5799. (cond
  5800. ((not ds) nil)
  5801. ;; The current item has a deadline date (in ds), so
  5802. ;; evaluate its delay time.
  5803. ((integerp org-agenda-skip-scheduled-delay-if-deadline)
  5804. ;; Use global delay time.
  5805. (- org-agenda-skip-scheduled-delay-if-deadline))
  5806. ((eq org-agenda-skip-scheduled-delay-if-deadline
  5807. 'post-deadline)
  5808. ;; Set delay to no later than deadline.
  5809. (min (- d2 (org-time-string-to-absolute
  5810. ds d1 'past show-all (current-buffer) pos))
  5811. org-scheduled-delay-days))
  5812. (t 0))))
  5813. (setq ddays (if suppress-delay
  5814. (let ((org-scheduled-delay-days suppress-delay))
  5815. (org-get-wdays s t t))
  5816. (org-get-wdays s t)))
  5817. ;; When to show a scheduled item in the calendar:
  5818. ;; If it is on or past the date.
  5819. (when (or (and (> ddays 0) (= diff (- ddays)))
  5820. (and (zerop ddays) (= diff 0))
  5821. (and (< diff 0)
  5822. (< (abs diff) org-scheduled-past-days)
  5823. (and todayp (not org-agenda-only-exact-dates)))
  5824. ;; org-is-habit-p uses org-entry-get, which is expansive
  5825. ;; so we go extra mile to only call it once
  5826. (and todayp
  5827. (boundp 'org-habit-show-all-today)
  5828. org-habit-show-all-today
  5829. (setq did-habit-check-p t)
  5830. (setq habitp (and (functionp 'org-is-habit-p)
  5831. (org-is-habit-p)))))
  5832. (save-excursion
  5833. (setq donep (member todo-state org-done-keywords))
  5834. (if (and donep
  5835. (or org-agenda-skip-scheduled-if-done
  5836. (not (= diff 0))
  5837. (and (functionp 'org-is-habit-p)
  5838. (org-is-habit-p))))
  5839. (setq txt nil)
  5840. (setq habitp (if did-habit-check-p habitp
  5841. (and (functionp 'org-is-habit-p)
  5842. (org-is-habit-p))))
  5843. (setq category (org-get-category)
  5844. category-pos (get-text-property (point) 'org-category-position))
  5845. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  5846. (throw :skip nil)
  5847. (goto-char (match-end 0))
  5848. (setq pos1 (match-beginning 0))
  5849. (if habitp
  5850. (if (or (not org-habit-show-habits)
  5851. (and (not todayp)
  5852. (boundp 'org-habit-show-habits-only-for-today)
  5853. org-habit-show-habits-only-for-today))
  5854. (throw :skip nil))
  5855. (if (and
  5856. (or (eq t org-agenda-skip-scheduled-if-deadline-is-shown)
  5857. (and org-agenda-skip-scheduled-if-deadline-is-shown
  5858. pastschedp))
  5859. (setq mm (assoc pos1 deadline-position-alist)))
  5860. (throw :skip nil)))
  5861. (setq inherited-tags
  5862. (or (eq org-agenda-show-inherited-tags 'always)
  5863. (and (listp org-agenda-show-inherited-tags)
  5864. (memq 'agenda org-agenda-show-inherited-tags))
  5865. (and (eq org-agenda-show-inherited-tags t)
  5866. (or (eq org-agenda-use-tag-inheritance t)
  5867. (memq 'agenda org-agenda-use-tag-inheritance))))
  5868. tags (org-get-tags-at nil (not inherited-tags)))
  5869. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5870. (setq head (buffer-substring
  5871. (point)
  5872. (progn (skip-chars-forward "^\r\n") (point))))
  5873. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5874. (setq timestr
  5875. (concat (substring s (match-beginning 1)) " "))
  5876. (setq timestr 'time))
  5877. (setq txt (org-agenda-format-item
  5878. (if (= diff 0)
  5879. (car org-agenda-scheduled-leaders)
  5880. (format (nth 1 org-agenda-scheduled-leaders)
  5881. (- 1 diff)))
  5882. head level category tags
  5883. (if (not (= diff 0)) nil timestr)
  5884. nil habitp))))
  5885. (when txt
  5886. (setq face
  5887. (cond
  5888. ((and (not habitp) pastschedp)
  5889. 'org-scheduled-previously)
  5890. (todayp 'org-scheduled-today)
  5891. (t 'org-scheduled))
  5892. habitp (and habitp (org-habit-parse-todo)))
  5893. (org-add-props txt props
  5894. 'undone-face face
  5895. 'face (if donep 'org-agenda-done face)
  5896. 'org-marker (org-agenda-new-marker pos)
  5897. 'org-hd-marker (org-agenda-new-marker pos1)
  5898. 'type (if pastschedp "past-scheduled" "scheduled")
  5899. 'date (if pastschedp d2 date)
  5900. 'ts-date d2
  5901. 'warntime warntime
  5902. 'level level
  5903. 'priority (if habitp
  5904. (org-habit-get-priority habitp)
  5905. (+ 94 (- 5 diff) (org-get-priority txt)))
  5906. 'org-category category
  5907. 'category-position category-pos
  5908. 'org-habit-p habitp
  5909. 'todo-state todo-state)
  5910. (push txt ee))))))
  5911. (nreverse ee)))
  5912. (defun org-agenda-get-blocks ()
  5913. "Return the date-range information for agenda display."
  5914. (let* ((props (list 'face nil
  5915. 'org-not-done-regexp org-not-done-regexp
  5916. 'org-todo-regexp org-todo-regexp
  5917. 'org-complex-heading-regexp org-complex-heading-regexp
  5918. 'mouse-face 'highlight
  5919. 'help-echo
  5920. (format "mouse-2 or RET jump to org file %s"
  5921. (abbreviate-file-name buffer-file-name))))
  5922. (regexp org-tr-regexp)
  5923. (d0 (calendar-absolute-from-gregorian date))
  5924. marker hdmarker ee txt d1 d2 s1 s2 category category-pos
  5925. level todo-state tags pos head donep inherited-tags)
  5926. (goto-char (point-min))
  5927. (while (re-search-forward regexp nil t)
  5928. (catch :skip
  5929. (org-agenda-skip)
  5930. (setq pos (point))
  5931. (let ((start-time (match-string 1))
  5932. (end-time (match-string 2)))
  5933. (setq s1 (match-string 1)
  5934. s2 (match-string 2)
  5935. d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
  5936. d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
  5937. (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  5938. ;; Only allow days between the limits, because the normal
  5939. ;; date stamps will catch the limits.
  5940. (save-excursion
  5941. (setq todo-state (org-get-todo-state))
  5942. (setq donep (member todo-state org-done-keywords))
  5943. (if (and donep org-agenda-skip-timestamp-if-done)
  5944. (throw :skip t))
  5945. (setq marker (org-agenda-new-marker (point)))
  5946. (setq category (org-get-category)
  5947. category-pos (get-text-property (point) 'org-category-position))
  5948. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5949. (throw :skip nil)
  5950. (goto-char (match-beginning 0))
  5951. (setq hdmarker (org-agenda-new-marker (point))
  5952. inherited-tags
  5953. (or (eq org-agenda-show-inherited-tags 'always)
  5954. (and (listp org-agenda-show-inherited-tags)
  5955. (memq 'agenda org-agenda-show-inherited-tags))
  5956. (and (eq org-agenda-show-inherited-tags t)
  5957. (or (eq org-agenda-use-tag-inheritance t)
  5958. (memq 'agenda org-agenda-use-tag-inheritance))))
  5959. tags (org-get-tags-at nil (not inherited-tags)))
  5960. (setq level (make-string (org-reduced-level (org-outline-level)) ? ))
  5961. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5962. (setq head (match-string 1))
  5963. (let ((remove-re
  5964. (if org-agenda-remove-timeranges-from-blocks
  5965. (concat
  5966. "<" (regexp-quote s1) ".*?>"
  5967. "--"
  5968. "<" (regexp-quote s2) ".*?>")
  5969. nil)))
  5970. (setq txt (org-agenda-format-item
  5971. (format
  5972. (nth (if (= d1 d2) 0 1)
  5973. org-agenda-timerange-leaders)
  5974. (1+ (- d0 d1)) (1+ (- d2 d1)))
  5975. head level category tags
  5976. (cond ((and (= d1 d0) (= d2 d0))
  5977. (concat "<" start-time ">--<" end-time ">"))
  5978. ((= d1 d0)
  5979. (concat "<" start-time ">"))
  5980. ((= d2 d0)
  5981. (concat "<" end-time ">")))
  5982. remove-re))))
  5983. (org-add-props txt props
  5984. 'org-marker marker 'org-hd-marker hdmarker
  5985. 'type "block" 'date date
  5986. 'level level
  5987. 'todo-state todo-state
  5988. 'priority (org-get-priority txt) 'org-category category
  5989. 'org-category-position category-pos)
  5990. (push txt ee))))
  5991. (goto-char pos)))
  5992. ;; Sort the entries by expiration date.
  5993. (nreverse ee)))
  5994. ;;; Agenda presentation and sorting
  5995. (defvar org-prefix-has-time nil
  5996. "A flag, set by `org-compile-prefix-format'.
  5997. The flag is set if the currently compiled format contains a `%t'.")
  5998. (defvar org-prefix-has-tag nil
  5999. "A flag, set by `org-compile-prefix-format'.
  6000. The flag is set if the currently compiled format contains a `%T'.")
  6001. (defvar org-prefix-has-effort nil
  6002. "A flag, set by `org-compile-prefix-format'.
  6003. The flag is set if the currently compiled format contains a `%e'.")
  6004. (defvar org-prefix-category-length nil
  6005. "Used by `org-compile-prefix-format' to remember the category field width.")
  6006. (defvar org-prefix-category-max-length nil
  6007. "Used by `org-compile-prefix-format' to remember the category field width.")
  6008. (defun org-agenda-get-category-icon (category)
  6009. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  6010. (dolist (entry org-agenda-category-icon-alist)
  6011. (when (org-string-match-p (car entry) category)
  6012. (if (listp (cadr entry))
  6013. (return (cadr entry))
  6014. (return (apply 'create-image (cdr entry)))))))
  6015. (defun org-agenda-format-item (extra txt &optional level category tags dotime
  6016. remove-re habitp)
  6017. "Format TXT to be inserted into the agenda buffer.
  6018. In particular, add the prefix and corresponding text properties.
  6019. EXTRA must be a string to replace the `%s' specifier in the prefix format.
  6020. LEVEL may be a string to replace the `%l' specifier.
  6021. CATEGORY (a string, a symbol or nil) may be used to overrule the default
  6022. category taken from local variable or file name. It will replace the `%c'
  6023. specifier in the format.
  6024. DOTIME, when non-nil, indicates that a time-of-day should be extracted from
  6025. TXT for sorting of this entry, and for the `%t' specifier in the format.
  6026. When DOTIME is a string, this string is searched for a time before TXT is.
  6027. TAGS can be the tags of the headline.
  6028. Any match of REMOVE-RE will be removed from TXT."
  6029. ;; We keep the org-prefix-* variable values along with a compiled
  6030. ;; formatter, so that multiple agendas existing at the same time do
  6031. ;; not step on each other toes.
  6032. ;;
  6033. ;; It was inconvenient to make these variables buffer local in
  6034. ;; Agenda buffers, because this function expects to be called with
  6035. ;; the buffer where item comes from being current, and not agenda
  6036. ;; buffer
  6037. (let* ((bindings (car org-prefix-format-compiled))
  6038. (formatter (cadr org-prefix-format-compiled)))
  6039. (loop for (var value) in bindings
  6040. do (set var value))
  6041. (save-match-data
  6042. ;; Diary entries sometimes have extra whitespace at the beginning
  6043. (setq txt (org-trim txt))
  6044. ;; Fix the tags part in txt
  6045. (setq txt (org-agenda-fix-displayed-tags
  6046. txt tags
  6047. org-agenda-show-inherited-tags
  6048. org-agenda-hide-tags-regexp))
  6049. (let* ((category (or category
  6050. (if (stringp org-category)
  6051. org-category
  6052. (and org-category (symbol-name org-category)))
  6053. (if buffer-file-name
  6054. (file-name-sans-extension
  6055. (file-name-nondirectory buffer-file-name))
  6056. "")))
  6057. (category-icon (org-agenda-get-category-icon category))
  6058. (category-icon (if category-icon
  6059. (propertize " " 'display category-icon)
  6060. ""))
  6061. ;; time, tag, effort are needed for the eval of the prefix format
  6062. (tag (if tags (nth (1- (length tags)) tags) ""))
  6063. time effort neffort
  6064. (ts (if dotime (concat
  6065. (if (stringp dotime) dotime "")
  6066. (and org-agenda-search-headline-for-time txt))))
  6067. (time-of-day (and dotime (org-get-time-of-day ts)))
  6068. stamp plain s0 s1 s2 rtn srp l
  6069. duration thecategory)
  6070. (and (derived-mode-p 'org-mode) buffer-file-name
  6071. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  6072. (when (and dotime time-of-day)
  6073. ;; Extract starting and ending time and move them to prefix
  6074. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  6075. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  6076. (setq s0 (match-string 0 ts)
  6077. srp (and stamp (match-end 3))
  6078. s1 (match-string (if plain 1 2) ts)
  6079. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  6080. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  6081. ;; them, we might want to remove them there to avoid duplication.
  6082. ;; The user can turn this off with a variable.
  6083. (if (and org-prefix-has-time
  6084. org-agenda-remove-times-when-in-prefix (or stamp plain)
  6085. (string-match (concat (regexp-quote s0) " *") txt)
  6086. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  6087. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  6088. (= (match-beginning 0) 0)
  6089. t))
  6090. (setq txt (replace-match "" nil nil txt))))
  6091. ;; Normalize the time(s) to 24 hour
  6092. (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
  6093. (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
  6094. ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
  6095. (let (org-time-clocksum-use-effort-durations)
  6096. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  6097. (setq s2
  6098. (org-minutes-to-clocksum-string
  6099. (+ (org-hh:mm-string-to-minutes s1)
  6100. org-agenda-default-appointment-duration)))))
  6101. ;; Compute the duration
  6102. (when s2
  6103. (setq duration (- (org-hh:mm-string-to-minutes s2)
  6104. (org-hh:mm-string-to-minutes s1)))))
  6105. (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  6106. txt)
  6107. ;; Tags are in the string
  6108. (if (or (eq org-agenda-remove-tags t)
  6109. (and org-agenda-remove-tags
  6110. org-prefix-has-tag))
  6111. (setq txt (replace-match "" t t txt))
  6112. (setq txt (replace-match
  6113. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  6114. (match-string 2 txt))
  6115. t t txt))))
  6116. (when (derived-mode-p 'org-mode)
  6117. (setq effort (ignore-errors (get-text-property 0 'org-effort txt)))
  6118. (if effort
  6119. (setq neffort (org-duration-string-to-minutes effort)
  6120. effort (setq effort (concat "[" effort "]")))
  6121. ;; prevent erroring out with %e format when there is no effort
  6122. (setq effort "")))
  6123. (when remove-re
  6124. (while (string-match remove-re txt)
  6125. (setq txt (replace-match "" t t txt))))
  6126. ;; Set org-heading property on `txt' to mark the start of the
  6127. ;; heading.
  6128. (add-text-properties 0 (length txt) '(org-heading t) txt)
  6129. ;; Prepare the variables needed in the eval of the compiled format
  6130. (setq time (cond (s2 (concat
  6131. (org-agenda-time-of-day-to-ampm-maybe s1)
  6132. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  6133. (if org-agenda-timegrid-use-ampm " ")))
  6134. (s1 (concat
  6135. (org-agenda-time-of-day-to-ampm-maybe s1)
  6136. (if org-agenda-timegrid-use-ampm
  6137. "........ "
  6138. "......")))
  6139. (t ""))
  6140. extra (or (and (not habitp) extra) "")
  6141. category (if (symbolp category) (symbol-name category) category)
  6142. thecategory (copy-sequence category)
  6143. level (or level ""))
  6144. (if (string-match org-bracket-link-regexp category)
  6145. (progn
  6146. (setq l (if (match-end 3)
  6147. (- (match-end 3) (match-beginning 3))
  6148. (- (match-end 1) (match-beginning 1))))
  6149. (when (< l (or org-prefix-category-length 0))
  6150. (setq category (copy-sequence category))
  6151. (org-add-props category nil
  6152. 'extra-space (make-string
  6153. (- org-prefix-category-length l 1) ?\ ))))
  6154. (if (and org-prefix-category-max-length
  6155. (>= (length category) org-prefix-category-max-length))
  6156. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  6157. ;; Evaluate the compiled format
  6158. (setq rtn (concat (eval formatter) txt))
  6159. ;; And finally add the text properties
  6160. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  6161. (org-add-props rtn nil
  6162. 'org-category (if thecategory (downcase thecategory) category)
  6163. 'tags (mapcar 'org-downcase-keep-props tags)
  6164. 'org-highest-priority org-highest-priority
  6165. 'org-lowest-priority org-lowest-priority
  6166. 'time-of-day time-of-day
  6167. 'duration duration
  6168. 'effort effort
  6169. 'effort-minutes neffort
  6170. 'txt txt
  6171. 'level level
  6172. 'time time
  6173. 'extra extra
  6174. 'format org-prefix-format-compiled
  6175. 'dotime dotime)))))
  6176. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  6177. "Remove tags string from TXT, and add a modified list of tags.
  6178. The modified list may contain inherited tags, and tags matched by
  6179. `org-agenda-hide-tags-regexp' will be removed."
  6180. (when (or add-inherited hide-re)
  6181. (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
  6182. (setq txt (substring txt 0 (match-beginning 0))))
  6183. (setq tags
  6184. (delq nil
  6185. (mapcar (lambda (tg)
  6186. (if (or (and hide-re (string-match hide-re tg))
  6187. (and (not add-inherited)
  6188. (get-text-property 0 'inherited tg)))
  6189. nil
  6190. tg))
  6191. tags)))
  6192. (when tags
  6193. (let ((have-i (get-text-property 0 'inherited (car tags)))
  6194. i)
  6195. (setq txt (concat txt " :"
  6196. (mapconcat
  6197. (lambda (x)
  6198. (setq i (get-text-property 0 'inherited x))
  6199. (if (and have-i (not i))
  6200. (progn
  6201. (setq have-i nil)
  6202. (concat ":" x))
  6203. x))
  6204. tags ":")
  6205. (if have-i "::" ":"))))))
  6206. txt)
  6207. (defun org-downcase-keep-props (s)
  6208. (let ((props (text-properties-at 0 s)))
  6209. (setq s (downcase s))
  6210. (add-text-properties 0 (length s) props s)
  6211. s))
  6212. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  6213. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  6214. "Add a time-grid for agenda items which need it.
  6215. LIST is the list of agenda items formatted by `org-agenda-list'.
  6216. NDAYS is the span of the current agenda view.
  6217. TODAYP is `t' when the current agenda view is on today."
  6218. (catch 'exit
  6219. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  6220. ((and todayp (member 'today (car org-agenda-time-grid))))
  6221. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  6222. ((member 'weekly (car org-agenda-time-grid)))
  6223. (t (throw 'exit list)))
  6224. (let* ((have (delq nil (mapcar
  6225. (lambda (x) (get-text-property 1 'time-of-day x))
  6226. list)))
  6227. (string (nth 1 org-agenda-time-grid))
  6228. (gridtimes (nth 2 org-agenda-time-grid))
  6229. (req (car org-agenda-time-grid))
  6230. (remove (member 'remove-match req))
  6231. new time)
  6232. (if (and (member 'require-timed req) (not have))
  6233. ;; don't show empty grid
  6234. (throw 'exit list))
  6235. (while (setq time (pop gridtimes))
  6236. (unless (and remove (member time have))
  6237. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  6238. (push (org-agenda-format-item
  6239. nil string nil "" nil
  6240. (concat (substring time 0 -2) ":" (substring time -2)))
  6241. new)
  6242. (put-text-property
  6243. 2 (length (car new)) 'face 'org-time-grid (car new))))
  6244. (when (and todayp org-agenda-show-current-time-in-grid)
  6245. (push (org-agenda-format-item
  6246. nil org-agenda-current-time-string nil "" nil
  6247. (format-time-string "%H:%M "))
  6248. new)
  6249. (put-text-property
  6250. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  6251. (if (member 'time-up org-agenda-sorting-strategy-selected)
  6252. (append new list)
  6253. (append list new)))))
  6254. (defun org-compile-prefix-format (key)
  6255. "Compile the prefix format into a Lisp form that can be evaluated.
  6256. The resulting form and associated variable bindings is returned
  6257. and stored in the variable `org-prefix-format-compiled'."
  6258. (setq org-prefix-has-time nil
  6259. org-prefix-has-tag nil
  6260. org-prefix-category-length nil
  6261. org-prefix-has-effort nil)
  6262. (let ((s (cond
  6263. ((stringp org-agenda-prefix-format)
  6264. org-agenda-prefix-format)
  6265. ((assq key org-agenda-prefix-format)
  6266. (cdr (assq key org-agenda-prefix-format)))
  6267. (t " %-12:c%?-12t% s")))
  6268. (start 0)
  6269. varform vars var e c f opt)
  6270. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([cltsei]\\|(.+)\\)"
  6271. s start)
  6272. (setq var (or (cdr (assoc (match-string 4 s)
  6273. '(("c" . category) ("t" . time) ("l" . level) ("s" . extra)
  6274. ("i" . category-icon) ("T" . tag) ("e" . effort))))
  6275. 'eval)
  6276. c (or (match-string 3 s) "")
  6277. opt (match-beginning 1)
  6278. start (1+ (match-beginning 0)))
  6279. (if (equal var 'time) (setq org-prefix-has-time t))
  6280. (if (equal var 'tag) (setq org-prefix-has-tag t))
  6281. (if (equal var 'effort) (setq org-prefix-has-effort t))
  6282. (setq f (concat "%" (match-string 2 s) "s"))
  6283. (when (equal var 'category)
  6284. (setq org-prefix-category-length
  6285. (floor (abs (string-to-number (match-string 2 s)))))
  6286. (setq org-prefix-category-max-length
  6287. (let ((x (match-string 2 s)))
  6288. (save-match-data
  6289. (if (string-match "\\.[0-9]+" x)
  6290. (string-to-number (substring (match-string 0 x) 1)))))))
  6291. (if (eq var 'eval)
  6292. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  6293. (if opt
  6294. (setq varform
  6295. `(if (equal "" ,var)
  6296. ""
  6297. (format ,f (if (equal "" ,var) "" (concat ,var ,c)))))
  6298. (setq varform `(format ,f (if (equal ,var "") "" (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  6299. (setq s (replace-match "%s" t nil s))
  6300. (push varform vars))
  6301. (setq vars (nreverse vars))
  6302. (with-current-buffer (or org-agenda-buffer (current-buffer))
  6303. (setq org-prefix-format-compiled
  6304. (list
  6305. `((org-prefix-has-time ,org-prefix-has-time)
  6306. (org-prefix-has-tag ,org-prefix-has-tag)
  6307. (org-prefix-category-length ,org-prefix-category-length)
  6308. (org-prefix-has-effort ,org-prefix-has-effort))
  6309. `(format ,s ,@vars))))))
  6310. (defun org-set-sorting-strategy (key)
  6311. (if (symbolp (car org-agenda-sorting-strategy))
  6312. ;; the old format
  6313. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  6314. (setq org-agenda-sorting-strategy-selected
  6315. (or (cdr (assq key org-agenda-sorting-strategy))
  6316. (cdr (assq 'agenda org-agenda-sorting-strategy))
  6317. '(time-up category-keep priority-down)))))
  6318. (defun org-get-time-of-day (s &optional string mod24)
  6319. "Check string S for a time of day.
  6320. If found, return it as a military time number between 0 and 2400.
  6321. If not found, return nil.
  6322. The optional STRING argument forces conversion into a 5 character wide string
  6323. HH:MM."
  6324. (save-match-data
  6325. (when
  6326. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  6327. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  6328. (let* ((h (string-to-number (match-string 1 s)))
  6329. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  6330. (ampm (if (match-end 4) (downcase (match-string 4 s))))
  6331. (am-p (equal ampm "am"))
  6332. (h1 (cond ((not ampm) h)
  6333. ((= h 12) (if am-p 0 12))
  6334. (t (+ h (if am-p 0 12)))))
  6335. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  6336. (mod h1 24) h1))
  6337. (t0 (+ (* 100 h2) m))
  6338. (t1 (concat (if (>= h1 24) "+" " ")
  6339. (if (and org-agenda-time-leading-zero
  6340. (< t0 1000)) "0" "")
  6341. (if (< t0 100) "0" "")
  6342. (if (< t0 10) "0" "")
  6343. (int-to-string t0))))
  6344. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  6345. (defvar org-agenda-before-sorting-filter-function nil
  6346. "Function to be applied to agenda items prior to sorting.
  6347. Prior to sorting also means just before they are inserted into the agenda.
  6348. To aid sorting, you may revisit the original entries and add more text
  6349. properties which will later be used by the sorting functions.
  6350. The function should take a string argument, an agenda line.
  6351. It has access to the text properties in that line, which contain among
  6352. other things, the property `org-hd-marker' that points to the entry
  6353. where the line comes from. Note that not all lines going into the agenda
  6354. have this property, only most.
  6355. The function should return the modified string. It is probably best
  6356. to ONLY change text properties.
  6357. You can also use this function as a filter, by returning nil for lines
  6358. you don't want to have in the agenda at all. For this application, you
  6359. could bind the variable in the options section of a custom command.")
  6360. (defun org-agenda-finalize-entries (list &optional type)
  6361. "Sort, limit and concatenate the LIST of agenda items.
  6362. The optional argument TYPE tells the agenda type."
  6363. (let ((max-effort (cond ((listp org-agenda-max-effort)
  6364. (cdr (assoc type org-agenda-max-effort)))
  6365. (t org-agenda-max-effort)))
  6366. (max-todo (cond ((listp org-agenda-max-todos)
  6367. (cdr (assoc type org-agenda-max-todos)))
  6368. (t org-agenda-max-todos)))
  6369. (max-tags (cond ((listp org-agenda-max-tags)
  6370. (cdr (assoc type org-agenda-max-tags)))
  6371. (t org-agenda-max-tags)))
  6372. (max-entries (cond ((listp org-agenda-max-entries)
  6373. (cdr (assoc type org-agenda-max-entries)))
  6374. (t org-agenda-max-entries))) l)
  6375. (when org-agenda-before-sorting-filter-function
  6376. (setq list
  6377. (delq nil
  6378. (mapcar
  6379. org-agenda-before-sorting-filter-function list))))
  6380. (setq list (mapcar 'org-agenda-highlight-todo list)
  6381. list (mapcar 'identity (sort list 'org-entries-lessp))
  6382. list (org-agenda-limit-entries
  6383. list 'effort-minutes max-effort 'identity)
  6384. list (org-agenda-limit-entries list 'todo-state max-todo)
  6385. list (org-agenda-limit-entries list 'tags max-tags)
  6386. list (org-agenda-limit-entries list 'org-hd-marker max-entries)
  6387. list (mapconcat 'identity list "\n"))))
  6388. (defun org-agenda-limit-entries (list prop limit &optional fn)
  6389. "Limit the number of agenda entries."
  6390. (if limit
  6391. (let ((f (or fn (lambda (p) (and p 1)))) (lim 0))
  6392. (delq nil
  6393. (mapcar
  6394. (lambda (e)
  6395. (let ((pval (funcall f (get-text-property 1 prop e))))
  6396. (if pval (setq lim (+ lim pval)))
  6397. (if (or (not pval) (<= lim limit)) e)))
  6398. list)))
  6399. list))
  6400. (defun org-agenda-highlight-todo (x)
  6401. (let ((org-done-keywords org-done-keywords-for-agenda)
  6402. (case-fold-search nil)
  6403. re)
  6404. (if (eq x 'line)
  6405. (save-excursion
  6406. (beginning-of-line 1)
  6407. (setq re (org-get-at-bol 'org-todo-regexp))
  6408. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  6409. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  6410. (add-text-properties (match-beginning 0) (match-end 1)
  6411. (list 'face (org-get-todo-face 1)))
  6412. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  6413. (delete-region (match-beginning 1) (1- (match-end 0)))
  6414. (goto-char (match-beginning 1))
  6415. (insert (format org-agenda-todo-keyword-format s)))))
  6416. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  6417. (setq re (get-text-property 0 'org-todo-regexp x))
  6418. (when (and re
  6419. ;; Test `pl' because if there's no heading content,
  6420. ;; there's no point matching to highlight. Note
  6421. ;; that if we didn't test `pl' first, and there
  6422. ;; happened to be no keyword from `org-todo-regexp'
  6423. ;; on this heading line, then the `equal' comparison
  6424. ;; afterwards would spuriously succeed in the case
  6425. ;; where `pl' is nil -- causing an args-out-of-range
  6426. ;; error when we try to add text properties to text
  6427. ;; that isn't there.
  6428. pl
  6429. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  6430. x pl) pl))
  6431. (add-text-properties
  6432. (or (match-end 1) (match-end 0)) (match-end 0)
  6433. (list 'face (org-get-todo-face (match-string 2 x)))
  6434. x)
  6435. (when (match-end 1)
  6436. (setq x (concat (substring x 0 (match-end 1))
  6437. (format org-agenda-todo-keyword-format
  6438. (match-string 2 x))
  6439. (org-add-props " " (text-properties-at 0 x))
  6440. (substring x (match-end 3)))))))
  6441. x)))
  6442. (defsubst org-cmp-priority (a b)
  6443. "Compare the priorities of string A and B."
  6444. (let ((pa (or (get-text-property 1 'priority a) 0))
  6445. (pb (or (get-text-property 1 'priority b) 0)))
  6446. (cond ((> pa pb) +1)
  6447. ((< pa pb) -1))))
  6448. (defsubst org-cmp-effort (a b)
  6449. "Compare the effort values of string A and B."
  6450. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  6451. (ea (or (get-text-property 1 'effort-minutes a) def))
  6452. (eb (or (get-text-property 1 'effort-minutes b) def)))
  6453. (cond ((> ea eb) +1)
  6454. ((< ea eb) -1))))
  6455. (defsubst org-cmp-category (a b)
  6456. "Compare the string values of categories of strings A and B."
  6457. (let ((ca (or (get-text-property 1 'org-category a) ""))
  6458. (cb (or (get-text-property 1 'org-category b) "")))
  6459. (cond ((string-lessp ca cb) -1)
  6460. ((string-lessp cb ca) +1))))
  6461. (defsubst org-cmp-todo-state (a b)
  6462. "Compare the todo states of strings A and B."
  6463. (let* ((ma (or (get-text-property 1 'org-marker a)
  6464. (get-text-property 1 'org-hd-marker a)))
  6465. (mb (or (get-text-property 1 'org-marker b)
  6466. (get-text-property 1 'org-hd-marker b)))
  6467. (fa (and ma (marker-buffer ma)))
  6468. (fb (and mb (marker-buffer mb)))
  6469. (todo-kwds
  6470. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  6471. (and fb (with-current-buffer fb org-todo-keywords-1))))
  6472. (ta (or (get-text-property 1 'todo-state a) ""))
  6473. (tb (or (get-text-property 1 'todo-state b) ""))
  6474. (la (- (length (member ta todo-kwds))))
  6475. (lb (- (length (member tb todo-kwds))))
  6476. (donepa (member ta org-done-keywords-for-agenda))
  6477. (donepb (member tb org-done-keywords-for-agenda)))
  6478. (cond ((and donepa (not donepb)) -1)
  6479. ((and (not donepa) donepb) +1)
  6480. ((< la lb) -1)
  6481. ((< lb la) +1))))
  6482. (defsubst org-cmp-alpha (a b)
  6483. "Compare the headlines, alphabetically."
  6484. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  6485. (plb (text-property-any 0 (length b) 'org-heading t b))
  6486. (ta (and pla (substring a pla)))
  6487. (tb (and plb (substring b plb))))
  6488. (when pla
  6489. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  6490. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  6491. (setq ta (substring ta (match-end 0))))
  6492. (setq ta (downcase ta)))
  6493. (when plb
  6494. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  6495. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  6496. (setq tb (substring tb (match-end 0))))
  6497. (setq tb (downcase tb)))
  6498. (cond ((not ta) +1)
  6499. ((not tb) -1)
  6500. ((string-lessp ta tb) -1)
  6501. ((string-lessp tb ta) +1))))
  6502. (defsubst org-cmp-tag (a b)
  6503. "Compare the string values of the first tags of A and B."
  6504. (let ((ta (car (last (get-text-property 1 'tags a))))
  6505. (tb (car (last (get-text-property 1 'tags b)))))
  6506. (cond ((not ta) +1)
  6507. ((not tb) -1)
  6508. ((string-lessp ta tb) -1)
  6509. ((string-lessp tb ta) +1))))
  6510. (defsubst org-cmp-time (a b)
  6511. "Compare the time-of-day values of strings A and B."
  6512. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  6513. (ta (or (get-text-property 1 'time-of-day a) def))
  6514. (tb (or (get-text-property 1 'time-of-day b) def)))
  6515. (cond ((< ta tb) -1)
  6516. ((< tb ta) +1))))
  6517. (defsubst org-cmp-ts (a b &optional type)
  6518. "Compare the timestamps values of entries A and B.
  6519. When TYPE is \"scheduled\", \"deadline\", \"timestamp\"
  6520. or \"timestamp_ia\", compare within each of these type.
  6521. When TYPE is the empty string, compare all timestamps
  6522. without respect of their type."
  6523. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  6524. (ta (or (and (string-match type (get-text-property 1 'type a))
  6525. (get-text-property 1 'ts-date a)) def))
  6526. (tb (or (and (string-match type (get-text-property 1 'type b))
  6527. (get-text-property 1 'ts-date b)) def)))
  6528. (cond ((< ta tb) -1)
  6529. ((< tb ta) +1))))
  6530. (defsubst org-cmp-habit-p (a b)
  6531. "Compare the todo states of strings A and B."
  6532. (let ((ha (get-text-property 1 'org-habit-p a))
  6533. (hb (get-text-property 1 'org-habit-p b)))
  6534. (cond ((and ha (not hb)) -1)
  6535. ((and (not ha) hb) +1))))
  6536. (defun org-entries-lessp (a b)
  6537. "Predicate for sorting agenda entries."
  6538. ;; The following variables will be used when the form is evaluated.
  6539. ;; So even though the compiler complains, keep them.
  6540. (let* ((ss org-agenda-sorting-strategy-selected)
  6541. (timestamp-up (and (org-em 'timestamp-up 'timestamp-down ss)
  6542. (org-cmp-ts a b "")))
  6543. (timestamp-down (if timestamp-up (- timestamp-up) nil))
  6544. (scheduled-up (and (org-em 'scheduled-up 'scheduled-down ss)
  6545. (org-cmp-ts a b "scheduled")))
  6546. (scheduled-down (if scheduled-up (- scheduled-up) nil))
  6547. (deadline-up (and (org-em 'deadline-up 'deadline-down ss)
  6548. (org-cmp-ts a b "deadline")))
  6549. (deadline-down (if deadline-up (- deadline-up) nil))
  6550. (tsia-up (and (org-em 'tsia-up 'tsia-down ss)
  6551. (org-cmp-ts a b "iatimestamp_ia")))
  6552. (tsia-down (if tsia-up (- tsia-up) nil))
  6553. (ts-up (and (org-em 'ts-up 'ts-down ss)
  6554. (org-cmp-ts a b "timestamp")))
  6555. (ts-down (if ts-up (- ts-up) nil))
  6556. (time-up (and (org-em 'time-up 'time-down ss)
  6557. (org-cmp-time a b)))
  6558. (time-down (if time-up (- time-up) nil))
  6559. (priority-up (and (org-em 'priority-up 'priority-down ss)
  6560. (org-cmp-priority a b)))
  6561. (priority-down (if priority-up (- priority-up) nil))
  6562. (effort-up (and (org-em 'effort-up 'effort-down ss)
  6563. (org-cmp-effort a b)))
  6564. (effort-down (if effort-up (- effort-up) nil))
  6565. (category-up (and (or (org-em 'category-up 'category-down ss)
  6566. (memq 'category-keep ss))
  6567. (org-cmp-category a b)))
  6568. (category-down (if category-up (- category-up) nil))
  6569. (category-keep (if category-up +1 nil))
  6570. (tag-up (and (org-em 'tag-up 'tag-down ss)
  6571. (org-cmp-tag a b)))
  6572. (tag-down (if tag-up (- tag-up) nil))
  6573. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  6574. (org-cmp-todo-state a b)))
  6575. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  6576. (habit-up (and (org-em 'habit-up 'habit-down ss)
  6577. (org-cmp-habit-p a b)))
  6578. (habit-down (if habit-up (- habit-up) nil))
  6579. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  6580. (org-cmp-alpha a b)))
  6581. (alpha-down (if alpha-up (- alpha-up) nil))
  6582. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  6583. user-defined-up user-defined-down)
  6584. (if (and need-user-cmp org-agenda-cmp-user-defined
  6585. (functionp org-agenda-cmp-user-defined))
  6586. (setq user-defined-up
  6587. (funcall org-agenda-cmp-user-defined a b)
  6588. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  6589. (cdr (assoc
  6590. (eval (cons 'or org-agenda-sorting-strategy-selected))
  6591. '((-1 . t) (1 . nil) (nil . nil))))))
  6592. ;;; Agenda restriction lock
  6593. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  6594. "Overlay to mark the headline to which agenda commands are restricted.")
  6595. (overlay-put org-agenda-restriction-lock-overlay
  6596. 'face 'org-agenda-restriction-lock)
  6597. (overlay-put org-agenda-restriction-lock-overlay
  6598. 'help-echo "Agendas are currently limited to this subtree.")
  6599. (org-detach-overlay org-agenda-restriction-lock-overlay)
  6600. (defun org-agenda-set-restriction-lock (&optional type)
  6601. "Set restriction lock for agenda, to current subtree or file.
  6602. Restriction will be the file if TYPE is `file', or if type is the
  6603. universal prefix '(4), or if the cursor is before the first headline
  6604. in the file. Otherwise, restriction will be to the current subtree."
  6605. (interactive "P")
  6606. (and (equal type '(4)) (setq type 'file))
  6607. (setq type (cond
  6608. (type type)
  6609. ((org-at-heading-p) 'subtree)
  6610. ((condition-case nil (org-back-to-heading t) (error nil))
  6611. 'subtree)
  6612. (t 'file)))
  6613. (if (eq type 'subtree)
  6614. (progn
  6615. (setq org-agenda-restrict t)
  6616. (setq org-agenda-overriding-restriction 'subtree)
  6617. (put 'org-agenda-files 'org-restrict
  6618. (list (buffer-file-name (buffer-base-buffer))))
  6619. (org-back-to-heading t)
  6620. (move-overlay org-agenda-restriction-lock-overlay (point) (point-at-eol))
  6621. (move-marker org-agenda-restrict-begin (point))
  6622. (move-marker org-agenda-restrict-end
  6623. (save-excursion (org-end-of-subtree t)))
  6624. (message "Locking agenda restriction to subtree"))
  6625. (put 'org-agenda-files 'org-restrict
  6626. (list (buffer-file-name (buffer-base-buffer))))
  6627. (setq org-agenda-restrict nil)
  6628. (setq org-agenda-overriding-restriction 'file)
  6629. (move-marker org-agenda-restrict-begin nil)
  6630. (move-marker org-agenda-restrict-end nil)
  6631. (message "Locking agenda restriction to file"))
  6632. (setq current-prefix-arg nil)
  6633. (org-agenda-maybe-redo))
  6634. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6635. "Remove the agenda restriction lock."
  6636. (interactive "P")
  6637. (org-detach-overlay org-agenda-restriction-lock-overlay)
  6638. (org-detach-overlay org-speedbar-restriction-lock-overlay)
  6639. (setq org-agenda-overriding-restriction nil)
  6640. (setq org-agenda-restrict nil)
  6641. (put 'org-agenda-files 'org-restrict nil)
  6642. (move-marker org-agenda-restrict-begin nil)
  6643. (move-marker org-agenda-restrict-end nil)
  6644. (setq current-prefix-arg nil)
  6645. (message "Agenda restriction lock removed")
  6646. (or noupdate (org-agenda-maybe-redo)))
  6647. (defun org-agenda-maybe-redo ()
  6648. "If there is any window showing the agenda view, update it."
  6649. (let ((w (get-buffer-window org-agenda-buffer-name t))
  6650. (w0 (selected-window)))
  6651. (when w
  6652. (select-window w)
  6653. (org-agenda-redo)
  6654. (select-window w0)
  6655. (if org-agenda-overriding-restriction
  6656. (message "Agenda view shifted to new %s restriction"
  6657. org-agenda-overriding-restriction)
  6658. (message "Agenda restriction lock removed")))))
  6659. ;;; Agenda commands
  6660. (defun org-agenda-check-type (error &rest types)
  6661. "Check if agenda buffer is of allowed type.
  6662. If ERROR is non-nil, throw an error, otherwise just return nil.
  6663. Allowed types are 'agenda 'timeline 'todo 'tags 'search."
  6664. (if (not org-agenda-type)
  6665. (error "No Org agenda currently displayed")
  6666. (if (memq org-agenda-type types)
  6667. t
  6668. (if error
  6669. (error "Not allowed in %s-type agenda buffers" org-agenda-type)
  6670. nil))))
  6671. (defun org-agenda-Quit ()
  6672. "Exit the agenda and kill buffers loaded by `org-agenda'.
  6673. Also restore the window configuration."
  6674. (interactive)
  6675. (if org-agenda-columns-active
  6676. (org-columns-quit)
  6677. (let ((buf (current-buffer)))
  6678. (if (eq org-agenda-window-setup 'other-frame)
  6679. (progn
  6680. (org-agenda-reset-markers)
  6681. (kill-buffer buf)
  6682. (org-columns-remove-overlays)
  6683. (setq org-agenda-archives-mode nil)
  6684. (delete-frame))
  6685. (and (not (eq org-agenda-window-setup 'current-window))
  6686. (not (one-window-p))
  6687. (delete-window))
  6688. (org-agenda-reset-markers)
  6689. (kill-buffer buf)
  6690. (org-columns-remove-overlays)
  6691. (setq org-agenda-archives-mode nil)))
  6692. ;; Maybe restore the pre-agenda window configuration.
  6693. (and org-agenda-restore-windows-after-quit
  6694. (not (eq org-agenda-window-setup 'other-frame))
  6695. org-agenda-pre-window-conf
  6696. (set-window-configuration org-agenda-pre-window-conf)
  6697. (setq org-agenda-pre-window-conf nil))))
  6698. (defun org-agenda-quit ()
  6699. "Exit the agenda and restore the window configuration.
  6700. When `org-agenda-sticky' is non-nil, only bury the agenda."
  6701. (interactive)
  6702. (if (and (eq org-indirect-buffer-display 'other-window)
  6703. org-last-indirect-buffer)
  6704. (let ((org-last-indirect-window
  6705. (get-buffer-window org-last-indirect-buffer)))
  6706. (if org-last-indirect-window
  6707. (delete-window org-last-indirect-window))))
  6708. (if org-agenda-columns-active
  6709. (org-columns-quit)
  6710. (if org-agenda-sticky
  6711. (let ((buf (current-buffer)))
  6712. (if (eq org-agenda-window-setup 'other-frame)
  6713. (progn
  6714. (delete-frame))
  6715. (and (not (eq org-agenda-window-setup 'current-window))
  6716. (not (one-window-p))
  6717. (delete-window)))
  6718. (with-current-buffer buf
  6719. (bury-buffer)
  6720. ;; Maybe restore the pre-agenda window configuration.
  6721. (and org-agenda-restore-windows-after-quit
  6722. (not (eq org-agenda-window-setup 'other-frame))
  6723. org-agenda-pre-window-conf
  6724. (set-window-configuration org-agenda-pre-window-conf)
  6725. (setq org-agenda-pre-window-conf nil))))
  6726. (org-agenda-Quit))))
  6727. (defun org-agenda-exit ()
  6728. "Exit the agenda and restore the window configuration.
  6729. Also kill Org-mode buffers loaded by `org-agenda'. Org-mode
  6730. buffers visited directly by the user will not be touched."
  6731. (interactive)
  6732. (org-release-buffers org-agenda-new-buffers)
  6733. (setq org-agenda-new-buffers nil)
  6734. (org-agenda-Quit))
  6735. (defun org-agenda-kill-all-agenda-buffers ()
  6736. "Kill all buffers in `org-agenda-mode'.
  6737. This is used when toggling sticky agendas.
  6738. You can also explicitly invoke it with `C-c a C-k'."
  6739. (interactive)
  6740. (let (blist)
  6741. (dolist (buf (buffer-list))
  6742. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6743. (push buf blist)))
  6744. (mapc 'kill-buffer blist)))
  6745. (defun org-agenda-execute (arg)
  6746. "Execute another agenda command, keeping same window.
  6747. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6748. in the agenda."
  6749. (interactive "P")
  6750. (let ((org-agenda-window-setup 'current-window))
  6751. (org-agenda arg)))
  6752. (defun org-agenda-redo (&optional all)
  6753. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6754. (interactive "P")
  6755. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6756. (cpa (unless (eq all t) current-prefix-arg))
  6757. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6758. (org-agenda-sticky nil)
  6759. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6760. org-agenda-buffer-name))
  6761. (org-agenda-keep-modes t)
  6762. (tag-filter org-agenda-tag-filter)
  6763. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6764. (top-cat-filter org-agenda-top-category-filter)
  6765. (cat-filter org-agenda-category-filter)
  6766. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6767. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6768. (cols org-agenda-columns-active)
  6769. (line (org-current-line))
  6770. (window-line (- line (org-current-line (window-start))))
  6771. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6772. (redo-cmd (get-text-property p 'org-redo-cmd))
  6773. (last-args (get-text-property p 'org-last-args))
  6774. (org-agenda-overriding-cmd (get-text-property p 'org-series-cmd))
  6775. (org-agenda-overriding-cmd-arguments
  6776. (unless (eq all t)
  6777. (cond ((listp last-args)
  6778. (cons (or cpa (car last-args)) (cdr last-args)))
  6779. ((stringp last-args)
  6780. last-args))))
  6781. (series-redo-cmd (get-text-property p 'org-series-redo-cmd)))
  6782. (put 'org-agenda-tag-filter :preset-filter nil)
  6783. (put 'org-agenda-category-filter :preset-filter nil)
  6784. (and cols (org-columns-quit))
  6785. (message "Rebuilding agenda buffer...")
  6786. (if series-redo-cmd
  6787. (eval series-redo-cmd)
  6788. (org-let lprops '(eval redo-cmd)))
  6789. (setq org-agenda-undo-list nil
  6790. org-agenda-pending-undo-list nil)
  6791. (message "Rebuilding agenda buffer...done")
  6792. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6793. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6794. (and (or tag-filter tag-preset) (org-agenda-filter-apply tag-filter 'tag))
  6795. (and (or cat-filter cat-preset) (org-agenda-filter-apply cat-filter 'category))
  6796. (and top-cat-filter (org-agenda-filter-top-category-apply top-cat-filter))
  6797. (and cols (org-called-interactively-p 'any) (org-agenda-columns))
  6798. (org-goto-line line)
  6799. (recenter window-line)))
  6800. (defvar org-global-tags-completion-table nil)
  6801. (defvar org-agenda-filter-form nil)
  6802. (defvar org-agenda-filtered-by-category nil)
  6803. (defun org-agenda-filter-by-category (strip)
  6804. "Keep only those lines in the agenda buffer that have a specific category.
  6805. The category is that of the current line."
  6806. (interactive "P")
  6807. (if (and org-agenda-filtered-by-category
  6808. org-agenda-category-filter)
  6809. (org-agenda-filter-show-all-cat)
  6810. (let ((cat (org-no-properties (get-text-property (point) 'org-category))))
  6811. (if cat (org-agenda-filter-apply
  6812. (list (concat (if strip "-" "+") cat)) 'category)
  6813. (error "No category at point")))))
  6814. (defun org-find-top-category (&optional pos)
  6815. (save-excursion
  6816. (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
  6817. (if pos (goto-char pos))
  6818. ;; Skip up to the topmost parent
  6819. (while (ignore-errors (outline-up-heading 1) t))
  6820. (ignore-errors
  6821. (nth 4 (org-heading-components))))))
  6822. (defvar org-agenda-filtered-by-top-category nil)
  6823. (defun org-agenda-filter-by-top-category (strip)
  6824. "Keep only those lines in the agenda buffer that have a specific category.
  6825. The category is that of the current line."
  6826. (interactive "P")
  6827. (if org-agenda-filtered-by-top-category
  6828. (progn
  6829. (setq org-agenda-filtered-by-top-category nil
  6830. org-agenda-top-category-filter nil)
  6831. (org-agenda-filter-show-all-cat))
  6832. (let ((cat (org-find-top-category (org-get-at-bol 'org-hd-marker))))
  6833. (if cat (org-agenda-filter-top-category-apply cat strip)
  6834. (error "No top-level category at point")))))
  6835. (defun org-agenda-filter-by-tag (strip &optional char narrow)
  6836. "Keep only those lines in the agenda buffer that have a specific tag.
  6837. The tag is selected with its fast selection letter, as configured.
  6838. With prefix argument STRIP, remove all lines that do have the tag.
  6839. A lisp caller can specify CHAR. NARROW means that the new tag should be
  6840. used to narrow the search - the interactive user can also press `-' or `+'
  6841. to switch to narrowing."
  6842. (interactive "P")
  6843. (let* ((alist org-tag-alist-for-agenda)
  6844. (tag-chars (mapconcat
  6845. (lambda (x) (if (and (not (symbolp (car x)))
  6846. (cdr x))
  6847. (char-to-string (cdr x))
  6848. ""))
  6849. alist ""))
  6850. (efforts (org-split-string
  6851. (or (cdr (assoc (concat org-effort-property "_ALL")
  6852. org-global-properties))
  6853. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
  6854. "")))
  6855. (effort-op org-agenda-filter-effort-default-operator)
  6856. (effort-prompt "")
  6857. (inhibit-read-only t)
  6858. (current org-agenda-tag-filter)
  6859. maybe-refresh a n tag)
  6860. (unless char
  6861. (message
  6862. "%s by tag [%s ], [TAB], %s[/]:off, [+-]:narrow, [>=<?]:effort: "
  6863. (if narrow "Narrow" "Filter") tag-chars
  6864. (if org-agenda-auto-exclude-function "[RET], " ""))
  6865. (setq char (read-char-exclusive)))
  6866. (when (member char '(?+ ?-))
  6867. ;; Narrowing down
  6868. (cond ((equal char ?-) (setq strip t narrow t))
  6869. ((equal char ?+) (setq strip nil narrow t)))
  6870. (message
  6871. "Narrow by tag [%s ], [TAB], [/]:off, [>=<]:effort: " tag-chars)
  6872. (setq char (read-char-exclusive)))
  6873. (when (member char '(?< ?> ?= ??))
  6874. ;; An effort operator
  6875. (setq effort-op (char-to-string char))
  6876. (setq alist nil) ; to make sure it will be interpreted as effort.
  6877. (unless (equal char ??)
  6878. (loop for i from 0 to 9 do
  6879. (setq effort-prompt
  6880. (concat
  6881. effort-prompt " ["
  6882. (if (= i 9) "0" (int-to-string (1+ i)))
  6883. "]" (nth i efforts))))
  6884. (message "Effort%s: %s " effort-op effort-prompt)
  6885. (setq char (read-char-exclusive))
  6886. (when (or (< char ?0) (> char ?9))
  6887. (error "Need 1-9,0 to select effort"))))
  6888. (when (equal char ?\t)
  6889. (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
  6890. (org-set-local 'org-global-tags-completion-table
  6891. (org-global-tags-completion-table)))
  6892. (let ((completion-ignore-case t))
  6893. (setq tag (org-icompleting-read
  6894. "Tag: " org-global-tags-completion-table))))
  6895. (cond
  6896. ((equal char ?\r)
  6897. (org-agenda-filter-show-all-tag)
  6898. (when org-agenda-auto-exclude-function
  6899. (setq org-agenda-tag-filter '())
  6900. (dolist (tag (org-agenda-get-represented-tags))
  6901. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  6902. (if modifier
  6903. (push modifier org-agenda-tag-filter))))
  6904. (if (not (null org-agenda-tag-filter))
  6905. (org-agenda-filter-apply org-agenda-tag-filter 'tag)))
  6906. (setq maybe-refresh t))
  6907. ((equal char ?/)
  6908. (org-agenda-filter-show-all-tag)
  6909. (when (get 'org-agenda-tag-filter :preset-filter)
  6910. (org-agenda-filter-apply org-agenda-tag-filter 'tag))
  6911. (setq maybe-refresh t))
  6912. ((equal char ?. )
  6913. (setq org-agenda-tag-filter
  6914. (mapcar (lambda(tag) (concat "+" tag))
  6915. (org-get-at-bol 'tags)))
  6916. (org-agenda-filter-apply org-agenda-tag-filter 'tag)
  6917. (setq maybe-refresh t))
  6918. ((or (equal char ?\ )
  6919. (setq a (rassoc char alist))
  6920. (and (>= char ?0) (<= char ?9)
  6921. (setq n (if (= char ?0) 9 (- char ?0 1))
  6922. tag (concat effort-op (nth n efforts))
  6923. a (cons tag nil)))
  6924. (and (= char ??)
  6925. (setq tag "?eff")
  6926. a (cons tag nil))
  6927. (and tag (setq a (cons tag nil))))
  6928. (org-agenda-filter-show-all-tag)
  6929. (setq tag (car a))
  6930. (setq org-agenda-tag-filter
  6931. (cons (concat (if strip "-" "+") tag)
  6932. (if narrow current nil)))
  6933. (org-agenda-filter-apply org-agenda-tag-filter 'tag)
  6934. (setq maybe-refresh t))
  6935. (t (error "Invalid tag selection character %c" char)))
  6936. (when (and maybe-refresh
  6937. (eq org-agenda-clockreport-mode 'with-filter))
  6938. (org-agenda-redo))))
  6939. (defun org-agenda-get-represented-tags ()
  6940. "Get a list of all tags currently represented in the agenda."
  6941. (let (p tags)
  6942. (save-excursion
  6943. (goto-char (point-min))
  6944. (while (setq p (next-single-property-change (point) 'tags))
  6945. (goto-char p)
  6946. (mapc (lambda (x) (add-to-list 'tags x))
  6947. (get-text-property (point) 'tags))))
  6948. tags))
  6949. (defun org-agenda-filter-by-tag-refine (strip &optional char)
  6950. "Refine the current filter. See `org-agenda-filter-by-tag'."
  6951. (interactive "P")
  6952. (org-agenda-filter-by-tag strip char 'refine))
  6953. (defun org-agenda-filter-make-matcher ()
  6954. "Create the form that tests a line for agenda filter."
  6955. (let (f f1)
  6956. ;; first compute the tag-filter matcher
  6957. (dolist (x (delete-dups
  6958. (append (get 'org-agenda-tag-filter
  6959. :preset-filter) org-agenda-tag-filter)))
  6960. (if (member x '("-" "+"))
  6961. (setq f1 (if (equal x "-") 'tags '(not tags)))
  6962. (if (string-match "[<=>?]" x)
  6963. (setq f1 (org-agenda-filter-effort-form x))
  6964. (setq f1 (list 'member (downcase (substring x 1)) 'tags)))
  6965. (if (equal (string-to-char x) ?-)
  6966. (setq f1 (list 'not f1))))
  6967. (push f1 f))
  6968. ;; then compute the category-filter matcher
  6969. (dolist (x (delete-dups
  6970. (append (get 'org-agenda-category-filter
  6971. :preset-filter) org-agenda-category-filter)))
  6972. (if (equal "-" (substring x 0 1))
  6973. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  6974. (setq f1 (list 'equal (substring x 1) 'cat)))
  6975. (push f1 f))
  6976. (cons 'and (nreverse f))))
  6977. (defun org-agenda-filter-effort-form (e)
  6978. "Return the form to compare the effort of the current line with what E says.
  6979. E looks like \"+<2:25\"."
  6980. (let (op)
  6981. (setq e (substring e 1))
  6982. (setq op (string-to-char e) e (substring e 1))
  6983. (setq op (cond ((equal op ?<) '<=)
  6984. ((equal op ?>) '>=)
  6985. ((equal op ??) op)
  6986. (t '=)))
  6987. (list 'org-agenda-compare-effort (list 'quote op)
  6988. (org-duration-string-to-minutes e))))
  6989. (defun org-agenda-compare-effort (op value)
  6990. "Compare the effort of the current line with VALUE, using OP.
  6991. If the line does not have an effort defined, return nil."
  6992. (let ((eff (org-get-at-bol 'effort-minutes)))
  6993. (if (equal op ??)
  6994. (not eff)
  6995. (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 0))
  6996. value))))
  6997. (defun org-agenda-filter-apply (filter type)
  6998. "Set FILTER as the new agenda filter and apply it."
  6999. (let (tags cat)
  7000. (if (eq type 'tag)
  7001. (setq org-agenda-tag-filter filter)
  7002. (setq org-agenda-category-filter filter))
  7003. (setq org-agenda-filter-form (org-agenda-filter-make-matcher))
  7004. (if (and (eq type 'category)
  7005. (not (equal (substring (car filter) 0 1) "-")))
  7006. ;; Only set `org-agenda-filtered-by-category' to t
  7007. ;; when a unique category is used as the filter
  7008. (setq org-agenda-filtered-by-category t))
  7009. (org-agenda-set-mode-name)
  7010. (save-excursion
  7011. (goto-char (point-min))
  7012. (while (not (eobp))
  7013. (if (org-get-at-bol 'org-marker)
  7014. (progn
  7015. (setq tags (org-get-at-bol 'tags) ; used in eval
  7016. cat (get-text-property (point) 'org-category))
  7017. (if (not (eval org-agenda-filter-form))
  7018. (org-agenda-filter-hide-line type))
  7019. (beginning-of-line 2))
  7020. (beginning-of-line 2))))
  7021. (if (get-char-property (point) 'invisible)
  7022. (ignore-errors (org-agenda-previous-line)))))
  7023. (defun org-agenda-filter-top-category-apply (category &optional negative)
  7024. "Set FILTER as the new agenda filter and apply it."
  7025. (org-agenda-set-mode-name)
  7026. (save-excursion
  7027. (goto-char (point-min))
  7028. (while (not (eobp))
  7029. (let* ((pos (org-get-at-bol 'org-hd-marker))
  7030. (topcat (and pos (org-find-top-category pos))))
  7031. (if (and topcat (funcall (if negative 'identity 'not)
  7032. (string= category topcat)))
  7033. (org-agenda-filter-hide-line 'category)))
  7034. (beginning-of-line 2)))
  7035. (if (get-char-property (point) 'invisible)
  7036. (org-agenda-previous-line))
  7037. (setq org-agenda-top-category-filter category
  7038. org-agenda-filtered-by-top-category t))
  7039. (defun org-agenda-filter-hide-line (type)
  7040. (let (ov)
  7041. (setq ov (make-overlay (max (point-min) (1- (point-at-bol)))
  7042. (point-at-eol)))
  7043. (overlay-put ov 'invisible t)
  7044. (overlay-put ov 'type type)
  7045. (if (eq type 'tag)
  7046. (push ov org-agenda-tag-filter-overlays)
  7047. (push ov org-agenda-cat-filter-overlays))))
  7048. (defun org-agenda-fix-tags-filter-overlays-at (&optional pos)
  7049. (setq pos (or pos (point)))
  7050. (save-excursion
  7051. (dolist (ov (overlays-at pos))
  7052. (when (and (overlay-get ov 'invisible)
  7053. (eq (overlay-get ov 'type) 'tag))
  7054. (goto-char pos)
  7055. (if (< (overlay-start ov) (point-at-eol))
  7056. (move-overlay ov (point-at-eol)
  7057. (overlay-end ov)))))))
  7058. (defun org-agenda-filter-show-all-tag nil
  7059. (mapc 'delete-overlay org-agenda-tag-filter-overlays)
  7060. (setq org-agenda-tag-filter-overlays nil
  7061. org-agenda-tag-filter nil
  7062. org-agenda-filter-form nil)
  7063. (org-agenda-set-mode-name))
  7064. (defun org-agenda-filter-show-all-cat nil
  7065. (mapc 'delete-overlay org-agenda-cat-filter-overlays)
  7066. (setq org-agenda-cat-filter-overlays nil
  7067. org-agenda-filtered-by-category nil
  7068. org-agenda-category-filter nil
  7069. org-agenda-filter-form nil)
  7070. (org-agenda-set-mode-name))
  7071. (defun org-agenda-manipulate-query-add ()
  7072. "Manipulate the query by adding a search term with positive selection.
  7073. Positive selection means the term must be matched for selection of an entry."
  7074. (interactive)
  7075. (org-agenda-manipulate-query ?\[))
  7076. (defun org-agenda-manipulate-query-subtract ()
  7077. "Manipulate the query by adding a search term with negative selection.
  7078. Negative selection means term must not be matched for selection of an entry."
  7079. (interactive)
  7080. (org-agenda-manipulate-query ?\]))
  7081. (defun org-agenda-manipulate-query-add-re ()
  7082. "Manipulate the query by adding a search regexp with positive selection.
  7083. Positive selection means the regexp must match for selection of an entry."
  7084. (interactive)
  7085. (org-agenda-manipulate-query ?\{))
  7086. (defun org-agenda-manipulate-query-subtract-re ()
  7087. "Manipulate the query by adding a search regexp with negative selection.
  7088. Negative selection means regexp must not match for selection of an entry."
  7089. (interactive)
  7090. (org-agenda-manipulate-query ?\}))
  7091. (defun org-agenda-manipulate-query (char)
  7092. (cond
  7093. ((memq org-agenda-type '(timeline agenda))
  7094. (let ((org-agenda-include-inactive-timestamps t))
  7095. (org-agenda-redo))
  7096. (message "Display now includes inactive timestamps as well"))
  7097. ((eq org-agenda-type 'search)
  7098. (org-add-to-string
  7099. 'org-agenda-query-string
  7100. (if org-agenda-last-search-view-search-was-boolean
  7101. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  7102. (?\{ . " +{}") (?\} . " -{}"))))
  7103. " "))
  7104. (setq org-agenda-redo-command
  7105. (list 'org-search-view
  7106. (car (get-text-property (min (1- (point-max)) (point))
  7107. 'org-last-args))
  7108. org-agenda-query-string
  7109. (+ (length org-agenda-query-string)
  7110. (if (member char '(?\{ ?\})) 0 1))))
  7111. (set-register org-agenda-query-register org-agenda-query-string)
  7112. (let ((org-agenda-overriding-arguments
  7113. (cdr org-agenda-redo-command)))
  7114. (org-agenda-redo)))
  7115. (t (error "Cannot manipulate query for %s-type agenda buffers"
  7116. org-agenda-type))))
  7117. (defun org-add-to-string (var string)
  7118. (set var (concat (symbol-value var) string)))
  7119. (defun org-agenda-goto-date (span)
  7120. "Jump to DATE in agenda."
  7121. (interactive "P")
  7122. (let* ((org-read-date-prefer-future
  7123. (eval org-agenda-jump-prefer-future))
  7124. (date (org-read-date))
  7125. (org-agenda-sticky-orig org-agenda-sticky)
  7126. (org-agenda-buffer-tmp-name (buffer-name))
  7127. (args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7128. (0-arg (or current-prefix-arg (car args)))
  7129. (2-arg (nth 2 args))
  7130. (newcmd (list 'org-agenda-list 0-arg date
  7131. (org-agenda-span-to-ndays 2-arg)))
  7132. (newargs (cdr newcmd))
  7133. (inhibit-read-only t)
  7134. org-agenda-sticky)
  7135. (if (not (org-agenda-check-type t 'agenda))
  7136. (error "Not available in non-agenda blocks")
  7137. (add-text-properties (point-min) (point-max)
  7138. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  7139. (org-agenda-redo)
  7140. (setq org-agenda-sticky org-agenda-sticky-orig
  7141. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  7142. (defun org-agenda-goto-today ()
  7143. "Go to today."
  7144. (interactive)
  7145. (org-agenda-check-type t 'timeline 'agenda)
  7146. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7147. (curspan (nth 2 args))
  7148. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  7149. (cond
  7150. (tdpos (goto-char tdpos))
  7151. ((eq org-agenda-type 'agenda)
  7152. (let* ((sd (org-agenda-compute-starting-span
  7153. (org-today) (or curspan org-agenda-ndays org-agenda-span)))
  7154. (org-agenda-overriding-arguments args))
  7155. (setf (nth 1 org-agenda-overriding-arguments) sd)
  7156. (org-agenda-redo)
  7157. (org-agenda-find-same-or-today-or-agenda)))
  7158. (t (error "Cannot find today")))))
  7159. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  7160. (goto-char
  7161. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  7162. (text-property-any (point-min) (point-max) 'org-today t)
  7163. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  7164. (and (get-text-property (min (1- (point-max)) (point)) 'org-series)
  7165. (org-agenda-goto-block-beginning))
  7166. (point-min))))
  7167. (defun org-agenda-goto-block-beginning ()
  7168. "Go the agenda block beginning."
  7169. (interactive)
  7170. (if (not (derived-mode-p 'org-agenda-mode))
  7171. (error "Cannot execute this command outside of org-agenda-mode buffers")
  7172. (let (dest)
  7173. (save-excursion
  7174. (unless (looking-at "\\'")
  7175. (forward-char))
  7176. (let* ((prop 'org-agenda-structural-header)
  7177. (p (previous-single-property-change (point) prop))
  7178. (n (next-single-property-change (or (and (looking-at "\\`") 1)
  7179. (1- (point))) prop)))
  7180. (setq dest (cond ((eq n (point-at-eol)) (1- n)) (p (1- p))))))
  7181. (if (not dest)
  7182. (error "Cannot find the beginning of the blog")
  7183. (goto-char dest)
  7184. (move-beginning-of-line 1)))))
  7185. (defun org-agenda-later (arg)
  7186. "Go forward in time by the current span.
  7187. With prefix ARG, go forward that many times the current span."
  7188. (interactive "p")
  7189. (org-agenda-check-type t 'agenda)
  7190. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7191. (span (or (nth 2 args) org-agenda-current-span))
  7192. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  7193. (greg (calendar-gregorian-from-absolute sd))
  7194. (cnt (org-get-at-bol 'org-day-cnt))
  7195. greg2)
  7196. (cond
  7197. ((numberp span)
  7198. (setq sd (+ (* span arg) sd)))
  7199. ((eq span 'day)
  7200. (setq sd (+ arg sd)))
  7201. ((eq span 'week)
  7202. (setq sd (+ (* 7 arg) sd)))
  7203. ((eq span 'month)
  7204. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  7205. sd (calendar-absolute-from-gregorian greg2))
  7206. (setcar greg2 (1+ (car greg2))))
  7207. ((eq span 'year)
  7208. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  7209. sd (calendar-absolute-from-gregorian greg2))
  7210. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  7211. (t
  7212. (setq sd (+ (* span arg) sd))))
  7213. (let ((org-agenda-overriding-cmd
  7214. ;; `cmd' may have been set by `org-agenda-run-series' which
  7215. ;; uses `org-agenda-overriding-cmd' to decide whether
  7216. ;; overriding is allowed for `cmd'
  7217. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7218. (org-agenda-overriding-arguments
  7219. (list (car args) sd span)))
  7220. (org-agenda-redo)
  7221. (org-agenda-find-same-or-today-or-agenda cnt))))
  7222. (defun org-agenda-earlier (arg)
  7223. "Go backward in time by the current span.
  7224. With prefix ARG, go backward that many times the current span."
  7225. (interactive "p")
  7226. (org-agenda-later (- arg)))
  7227. (defun org-agenda-view-mode-dispatch ()
  7228. "Call one of the view mode commands."
  7229. (interactive)
  7230. (message "View: [d]ay [w]eek [m]onth [y]ear [SPC]reset [q]uit/abort
  7231. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  7232. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  7233. (let ((a (read-char-exclusive)))
  7234. (case a
  7235. (?\ (call-interactively 'org-agenda-reset-view))
  7236. (?d (call-interactively 'org-agenda-day-view))
  7237. (?w (call-interactively 'org-agenda-week-view))
  7238. (?m (call-interactively 'org-agenda-month-view))
  7239. (?y (call-interactively 'org-agenda-year-view))
  7240. (?l (call-interactively 'org-agenda-log-mode))
  7241. (?L (org-agenda-log-mode '(4)))
  7242. (?c (org-agenda-log-mode 'clockcheck))
  7243. ((?F ?f) (call-interactively 'org-agenda-follow-mode))
  7244. (?a (call-interactively 'org-agenda-archives-mode))
  7245. (?A (org-agenda-archives-mode 'files))
  7246. ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  7247. ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  7248. (?G (call-interactively 'org-agenda-toggle-time-grid))
  7249. (?D (call-interactively 'org-agenda-toggle-diary))
  7250. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  7251. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  7252. (org-agenda-check-type t 'timeline 'agenda)
  7253. (org-agenda-redo))
  7254. (message "Display now includes inactive timestamps as well"))
  7255. (?q (message "Abort"))
  7256. (otherwise (error "Invalid key" )))))
  7257. (defun org-agenda-reset-view ()
  7258. "Switch to default view for agenda."
  7259. (interactive)
  7260. (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
  7261. (defun org-agenda-day-view (&optional day-of-year)
  7262. "Switch to daily view for agenda.
  7263. With argument DAY-OF-YEAR, switch to that day of the year."
  7264. (interactive "P")
  7265. (org-agenda-change-time-span 'day day-of-year))
  7266. (defun org-agenda-week-view (&optional iso-week)
  7267. "Switch to daily view for agenda.
  7268. With argument ISO-WEEK, switch to the corresponding ISO week.
  7269. If ISO-WEEK has more then 2 digits, only the last two encode the
  7270. week. Any digits before this encode a year. So 200712 means
  7271. week 12 of year 2007. Years in the range 1938-2037 can also be
  7272. written as 2-digit years."
  7273. (interactive "P")
  7274. (org-agenda-change-time-span 'week iso-week))
  7275. (defun org-agenda-month-view (&optional month)
  7276. "Switch to monthly view for agenda.
  7277. With argument MONTH, switch to that month."
  7278. (interactive "P")
  7279. (org-agenda-change-time-span 'month month))
  7280. (defun org-agenda-year-view (&optional year)
  7281. "Switch to yearly view for agenda.
  7282. With argument YEAR, switch to that year.
  7283. If MONTH has more then 2 digits, only the last two encode the
  7284. month. Any digits before this encode a year. So 200712 means
  7285. December year 2007. Years in the range 1938-2037 can also be
  7286. written as 2-digit years."
  7287. (interactive "P")
  7288. (when year
  7289. (setq year (org-small-year-to-year year)))
  7290. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  7291. (org-agenda-change-time-span 'year year)
  7292. (error "Abort")))
  7293. (defun org-agenda-change-time-span (span &optional n)
  7294. "Change the agenda view to SPAN.
  7295. SPAN may be `day', `week', `month', `year'."
  7296. (org-agenda-check-type t 'agenda)
  7297. (let* ((args (get-text-property (min (1- (point-max)) (point)) 'org-last-args))
  7298. (curspan (nth 2 args)))
  7299. (if (and (not n) (equal curspan span))
  7300. (error "Viewing span is already \"%s\"" span))
  7301. (let* ((sd (or (org-get-at-bol 'day)
  7302. (nth 1 args)
  7303. org-starting-day))
  7304. (sd (org-agenda-compute-starting-span sd span n))
  7305. (org-agenda-overriding-cmd
  7306. (get-text-property (min (1- (point-max)) (point)) 'org-series-cmd))
  7307. (org-agenda-overriding-arguments
  7308. (list (car args) sd span)))
  7309. (org-agenda-redo)
  7310. (org-agenda-find-same-or-today-or-agenda))
  7311. (org-agenda-set-mode-name)
  7312. (message "Switched to %s view" span)))
  7313. (defun org-agenda-compute-starting-span (sd span &optional n)
  7314. "Compute starting date for agenda.
  7315. SPAN may be `day', `week', `month', `year'. The return value
  7316. is a cons cell with the starting date and the number of days,
  7317. so that the date SD will be in that range."
  7318. (let* ((greg (calendar-gregorian-from-absolute sd))
  7319. (dg (nth 1 greg))
  7320. (mg (car greg))
  7321. (yg (nth 2 greg)))
  7322. (cond
  7323. ((eq span 'day)
  7324. (when n
  7325. (setq sd (+ (calendar-absolute-from-gregorian
  7326. (list mg 1 yg))
  7327. n -1))))
  7328. ((eq span 'week)
  7329. (let* ((nt (calendar-day-of-week
  7330. (calendar-gregorian-from-absolute sd)))
  7331. (d (if org-agenda-start-on-weekday
  7332. (- nt org-agenda-start-on-weekday)
  7333. 0))
  7334. y1)
  7335. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  7336. (when n
  7337. (require 'cal-iso)
  7338. (when (> n 99)
  7339. (setq y1 (org-small-year-to-year (/ n 100))
  7340. n (mod n 100)))
  7341. (setq sd
  7342. (calendar-absolute-from-iso
  7343. (list n 1
  7344. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  7345. ((eq span 'month)
  7346. (let (y1)
  7347. (when (and n (> n 99))
  7348. (setq y1 (org-small-year-to-year (/ n 100))
  7349. n (mod n 100)))
  7350. (setq sd (calendar-absolute-from-gregorian
  7351. (list (or n mg) 1 (or y1 yg))))))
  7352. ((eq span 'year)
  7353. (setq sd (calendar-absolute-from-gregorian
  7354. (list 1 1 (or n yg))))))
  7355. sd))
  7356. (defun org-agenda-next-date-line (&optional arg)
  7357. "Jump to the next line indicating a date in agenda buffer."
  7358. (interactive "p")
  7359. (org-agenda-check-type t 'agenda 'timeline)
  7360. (beginning-of-line 1)
  7361. ;; This does not work if user makes date format that starts with a blank
  7362. (if (looking-at "^\\S-") (forward-char 1))
  7363. (if (not (re-search-forward "^\\S-" nil t arg))
  7364. (progn
  7365. (backward-char 1)
  7366. (error "No next date after this line in this buffer")))
  7367. (goto-char (match-beginning 0)))
  7368. (defun org-agenda-previous-date-line (&optional arg)
  7369. "Jump to the previous line indicating a date in agenda buffer."
  7370. (interactive "p")
  7371. (org-agenda-check-type t 'agenda 'timeline)
  7372. (beginning-of-line 1)
  7373. (if (not (re-search-backward "^\\S-" nil t arg))
  7374. (error "No previous date before this line in this buffer")))
  7375. ;; Initialize the highlight
  7376. (defvar org-hl (make-overlay 1 1))
  7377. (overlay-put org-hl 'face 'highlight)
  7378. (defun org-highlight (begin end &optional buffer)
  7379. "Highlight a region with overlay."
  7380. (move-overlay org-hl begin end (or buffer (current-buffer))))
  7381. (defun org-unhighlight ()
  7382. "Detach overlay INDEX."
  7383. (org-detach-overlay org-hl))
  7384. (defun org-unhighlight-once ()
  7385. "Remove the highlight from its position, and this function from the hook."
  7386. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  7387. (org-unhighlight))
  7388. (defvar org-agenda-pre-follow-window-conf nil)
  7389. (defun org-agenda-follow-mode ()
  7390. "Toggle follow mode in an agenda buffer."
  7391. (interactive)
  7392. (unless org-agenda-follow-mode
  7393. (setq org-agenda-pre-follow-window-conf
  7394. (current-window-configuration)))
  7395. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  7396. (unless org-agenda-follow-mode
  7397. (set-window-configuration org-agenda-pre-follow-window-conf))
  7398. (org-agenda-set-mode-name)
  7399. (org-agenda-do-context-action)
  7400. (message "Follow mode is %s"
  7401. (if org-agenda-follow-mode "on" "off")))
  7402. (defun org-agenda-entry-text-mode (&optional arg)
  7403. "Toggle entry text mode in an agenda buffer."
  7404. (interactive "P")
  7405. (setq org-agenda-entry-text-mode (or (integerp arg)
  7406. (not org-agenda-entry-text-mode)))
  7407. (org-agenda-entry-text-hide)
  7408. (and org-agenda-entry-text-mode
  7409. (let ((org-agenda-entry-text-maxlines
  7410. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7411. (org-agenda-entry-text-show)))
  7412. (org-agenda-set-mode-name)
  7413. (message "Entry text mode is %s. Maximum number of lines is %d"
  7414. (if org-agenda-entry-text-mode "on" "off")
  7415. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  7416. (defun org-agenda-clockreport-mode (&optional with-filter)
  7417. "Toggle clocktable mode in an agenda buffer.
  7418. With prefix arg WITH-FILTER, make the clocktable respect the current
  7419. agenda filter."
  7420. (interactive "P")
  7421. (org-agenda-check-type t 'agenda)
  7422. (if with-filter
  7423. (setq org-agenda-clockreport-mode 'with-filter)
  7424. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode)))
  7425. (org-agenda-set-mode-name)
  7426. (org-agenda-redo)
  7427. (message "Clocktable mode is %s"
  7428. (if org-agenda-clockreport-mode "on" "off")))
  7429. (defun org-agenda-log-mode (&optional special)
  7430. "Toggle log mode in an agenda buffer.
  7431. With argument SPECIAL, show all possible log items, not only the ones
  7432. configured in `org-agenda-log-mode-items'.
  7433. With a double `C-u' prefix arg, show *only* log items, nothing else."
  7434. (interactive "P")
  7435. (org-agenda-check-type t 'agenda 'timeline)
  7436. (setq org-agenda-show-log
  7437. (cond
  7438. ((equal special '(16)) 'only)
  7439. ((eq special 'clockcheck)
  7440. (if (eq org-agenda-show-log 'clockcheck)
  7441. nil 'clockcheck))
  7442. (special '(closed clock state))
  7443. (t (not org-agenda-show-log))))
  7444. (org-agenda-set-mode-name)
  7445. (org-agenda-redo)
  7446. (message "Log mode is %s"
  7447. (if org-agenda-show-log "on" "off")))
  7448. (defun org-agenda-archives-mode (&optional with-files)
  7449. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  7450. When called with a prefix argument, include all archive files as well."
  7451. (interactive "P")
  7452. (setq org-agenda-archives-mode
  7453. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  7454. (org-agenda-set-mode-name)
  7455. (org-agenda-redo)
  7456. (message
  7457. "%s"
  7458. (cond
  7459. ((eq org-agenda-archives-mode nil)
  7460. "No archives are included")
  7461. ((eq org-agenda-archives-mode 'trees)
  7462. (format "Trees with :%s: tag are included" org-archive-tag))
  7463. ((eq org-agenda-archives-mode t)
  7464. (format "Trees with :%s: tag and all active archive files are included"
  7465. org-archive-tag)))))
  7466. (defun org-agenda-toggle-diary ()
  7467. "Toggle diary inclusion in an agenda buffer."
  7468. (interactive)
  7469. (org-agenda-check-type t 'agenda)
  7470. (setq org-agenda-include-diary (not org-agenda-include-diary))
  7471. (org-agenda-redo)
  7472. (org-agenda-set-mode-name)
  7473. (message "Diary inclusion turned %s"
  7474. (if org-agenda-include-diary "on" "off")))
  7475. (defun org-agenda-toggle-deadlines ()
  7476. "Toggle inclusion of entries with a deadline in an agenda buffer."
  7477. (interactive)
  7478. (org-agenda-check-type t 'agenda)
  7479. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  7480. (org-agenda-redo)
  7481. (org-agenda-set-mode-name)
  7482. (message "Deadlines inclusion turned %s"
  7483. (if org-agenda-include-deadlines "on" "off")))
  7484. (defun org-agenda-toggle-time-grid ()
  7485. "Toggle time grid in an agenda buffer."
  7486. (interactive)
  7487. (org-agenda-check-type t 'agenda)
  7488. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  7489. (org-agenda-redo)
  7490. (org-agenda-set-mode-name)
  7491. (message "Time-grid turned %s"
  7492. (if org-agenda-use-time-grid "on" "off")))
  7493. (defun org-agenda-set-mode-name ()
  7494. "Set the mode name to indicate all the small mode settings."
  7495. (setq mode-name
  7496. (list "Org-Agenda"
  7497. (if (get 'org-agenda-files 'org-restrict) " []" "")
  7498. " "
  7499. '(:eval (org-agenda-span-name org-agenda-current-span))
  7500. (if org-agenda-follow-mode " Follow" "")
  7501. (if org-agenda-entry-text-mode " ETxt" "")
  7502. (if org-agenda-include-diary " Diary" "")
  7503. (if org-agenda-include-deadlines " Ddl" "")
  7504. (if org-agenda-use-time-grid " Grid" "")
  7505. (if (and (boundp 'org-habit-show-habits)
  7506. org-habit-show-habits) " Habit" "")
  7507. (cond
  7508. ((consp org-agenda-show-log) " LogAll")
  7509. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  7510. (org-agenda-show-log " Log")
  7511. (t ""))
  7512. (if (or org-agenda-category-filter (get 'org-agenda-category-filter
  7513. :preset-filter))
  7514. '(:eval (org-propertize
  7515. (concat " <"
  7516. (mapconcat
  7517. 'identity
  7518. (append
  7519. (get 'org-agenda-category-filter :preset-filter)
  7520. org-agenda-category-filter)
  7521. "")
  7522. ">")
  7523. 'face 'org-agenda-filter-category
  7524. 'help-echo "Category used in filtering"))
  7525. "")
  7526. (if (or org-agenda-tag-filter (get 'org-agenda-tag-filter
  7527. :preset-filter))
  7528. '(:eval (org-propertize
  7529. (concat " {"
  7530. (mapconcat
  7531. 'identity
  7532. (append
  7533. (get 'org-agenda-tag-filter :preset-filter)
  7534. org-agenda-tag-filter)
  7535. "")
  7536. "}")
  7537. 'face 'org-agenda-filter-tags
  7538. 'help-echo "Tags used in filtering"))
  7539. "")
  7540. (if org-agenda-archives-mode
  7541. (if (eq org-agenda-archives-mode t)
  7542. " Archives"
  7543. (format " :%s:" org-archive-tag))
  7544. "")
  7545. (if org-agenda-clockreport-mode
  7546. (if (eq org-agenda-clockreport-mode 'with-filter)
  7547. " Clock{}" " Clock")
  7548. "")))
  7549. (force-mode-line-update))
  7550. (define-obsolete-function-alias
  7551. 'org-agenda-post-command-hook 'org-agenda-update-agenda-type "24.3")
  7552. (defun org-agenda-update-agenda-type ()
  7553. "Update the agenda type after each command."
  7554. (setq org-agenda-type
  7555. (or (get-text-property (point) 'org-agenda-type)
  7556. (get-text-property (max (point-min) (1- (point))) 'org-agenda-type))))
  7557. (defun org-agenda-next-line ()
  7558. "Move cursor to the next line, and show if follow mode is active."
  7559. (interactive)
  7560. (call-interactively 'next-line)
  7561. (org-agenda-do-context-action))
  7562. (defun org-agenda-previous-line ()
  7563. "Move cursor to the previous line, and show if follow-mode is active."
  7564. (interactive)
  7565. (call-interactively 'previous-line)
  7566. (org-agenda-do-context-action))
  7567. (defun org-agenda-next-item (n)
  7568. "Move cursor to next agenda item."
  7569. (interactive "p")
  7570. (let ((col (current-column)))
  7571. (dotimes (c n)
  7572. (when (next-single-property-change (point-at-eol) 'org-marker)
  7573. (move-end-of-line 1)
  7574. (goto-char (next-single-property-change (point) 'org-marker))))
  7575. (org-move-to-column col))
  7576. (org-agenda-do-context-action))
  7577. (defun org-agenda-previous-item (n)
  7578. "Move cursor to next agenda item."
  7579. (interactive "p")
  7580. (dotimes (c n)
  7581. (let ((col (current-column))
  7582. (goto (save-excursion
  7583. (move-end-of-line 0)
  7584. (previous-single-property-change (point) 'org-marker))))
  7585. (if goto (goto-char goto))
  7586. (org-move-to-column col)))
  7587. (org-agenda-do-context-action))
  7588. (defun org-agenda-do-context-action ()
  7589. "Show outline path and, maybe, follow mode window."
  7590. (let ((m (org-get-at-bol 'org-marker)))
  7591. (when (and (markerp m) (marker-buffer m))
  7592. (and org-agenda-follow-mode
  7593. (if org-agenda-follow-indirect
  7594. (org-agenda-tree-to-indirect-buffer nil)
  7595. (org-agenda-show)))
  7596. (and org-agenda-show-outline-path
  7597. (org-with-point-at m (org-display-outline-path t))))))
  7598. (defun org-agenda-show-tags ()
  7599. "Show the tags applicable to the current item."
  7600. (interactive)
  7601. (let* ((tags (org-get-at-bol 'tags)))
  7602. (if tags
  7603. (message "Tags are :%s:"
  7604. (org-no-properties (mapconcat 'identity tags ":")))
  7605. (message "No tags associated with this line"))))
  7606. (defun org-agenda-goto (&optional highlight)
  7607. "Go to the Org-mode file which contains the item at point."
  7608. (interactive)
  7609. (let* ((marker (or (org-get-at-bol 'org-marker)
  7610. (org-agenda-error)))
  7611. (buffer (marker-buffer marker))
  7612. (pos (marker-position marker)))
  7613. (switch-to-buffer-other-window buffer)
  7614. (widen)
  7615. (push-mark)
  7616. (goto-char pos)
  7617. (when (derived-mode-p 'org-mode)
  7618. (org-show-context 'agenda)
  7619. (save-excursion
  7620. (and (outline-next-heading)
  7621. (org-flag-heading nil)))) ; show the next heading
  7622. (when (outline-invisible-p)
  7623. (show-entry)) ; display invisible text
  7624. (recenter (/ (window-height) 2))
  7625. (run-hooks 'org-agenda-after-show-hook)
  7626. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  7627. (defvar org-agenda-after-show-hook nil
  7628. "Normal hook run after an item has been shown from the agenda.
  7629. Point is in the buffer where the item originated.")
  7630. (defun org-agenda-kill ()
  7631. "Kill the entry or subtree belonging to the current agenda entry."
  7632. (interactive)
  7633. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7634. (let* ((bufname-orig (buffer-name))
  7635. (marker (or (org-get-at-bol 'org-marker)
  7636. (org-agenda-error)))
  7637. (buffer (marker-buffer marker))
  7638. (pos (marker-position marker))
  7639. (type (org-get-at-bol 'type))
  7640. dbeg dend (n 0) conf)
  7641. (org-with-remote-undo buffer
  7642. (with-current-buffer buffer
  7643. (save-excursion
  7644. (goto-char pos)
  7645. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  7646. (setq dbeg (progn (org-back-to-heading t) (point))
  7647. dend (org-end-of-subtree t t))
  7648. (setq dbeg (point-at-bol)
  7649. dend (min (point-max) (1+ (point-at-eol)))))
  7650. (goto-char dbeg)
  7651. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  7652. (setq conf (or (eq t org-agenda-confirm-kill)
  7653. (and (numberp org-agenda-confirm-kill)
  7654. (> n org-agenda-confirm-kill))))
  7655. (and conf
  7656. (not (y-or-n-p
  7657. (format "Delete entry with %d lines in buffer \"%s\"? "
  7658. n (buffer-name buffer))))
  7659. (error "Abort"))
  7660. (let ((org-agenda-buffer-name bufname-orig))
  7661. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  7662. (with-current-buffer buffer (delete-region dbeg dend))
  7663. (message "Agenda item and source killed"))))
  7664. (defvar org-archive-default-command) ; defined in org-archive.el
  7665. (defun org-agenda-archive-default ()
  7666. "Archive the entry or subtree belonging to the current agenda entry."
  7667. (interactive)
  7668. (require 'org-archive)
  7669. (org-agenda-archive-with org-archive-default-command))
  7670. (defun org-agenda-archive-default-with-confirmation ()
  7671. "Archive the entry or subtree belonging to the current agenda entry."
  7672. (interactive)
  7673. (require 'org-archive)
  7674. (org-agenda-archive-with org-archive-default-command 'confirm))
  7675. (defun org-agenda-archive ()
  7676. "Archive the entry or subtree belonging to the current agenda entry."
  7677. (interactive)
  7678. (org-agenda-archive-with 'org-archive-subtree))
  7679. (defun org-agenda-archive-to-archive-sibling ()
  7680. "Move the entry to the archive sibling."
  7681. (interactive)
  7682. (org-agenda-archive-with 'org-archive-to-archive-sibling))
  7683. (defun org-agenda-archive-with (cmd &optional confirm)
  7684. "Move the entry to the archive sibling."
  7685. (interactive)
  7686. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7687. (let* ((bufname-orig (buffer-name))
  7688. (marker (or (org-get-at-bol 'org-marker)
  7689. (org-agenda-error)))
  7690. (buffer (marker-buffer marker))
  7691. (pos (marker-position marker)))
  7692. (org-with-remote-undo buffer
  7693. (with-current-buffer buffer
  7694. (if (derived-mode-p 'org-mode)
  7695. (if (and confirm
  7696. (not (y-or-n-p "Archive this subtree or entry? ")))
  7697. (error "Abort")
  7698. (save-excursion
  7699. (goto-char pos)
  7700. (let ((org-agenda-buffer-name bufname-orig))
  7701. (org-remove-subtree-entries-from-agenda))
  7702. (org-back-to-heading t)
  7703. (funcall cmd)))
  7704. (error "Archiving works only in Org-mode files"))))))
  7705. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  7706. "Remove all lines in the agenda that correspond to a given subtree.
  7707. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  7708. If this information is not given, the function uses the tree at point."
  7709. (let ((buf (or buf (current-buffer))) m p)
  7710. (save-excursion
  7711. (unless (and beg end)
  7712. (org-back-to-heading t)
  7713. (setq beg (point))
  7714. (org-end-of-subtree t)
  7715. (setq end (point)))
  7716. (set-buffer (get-buffer org-agenda-buffer-name))
  7717. (save-excursion
  7718. (goto-char (point-max))
  7719. (beginning-of-line 1)
  7720. (while (not (bobp))
  7721. (when (and (setq m (org-get-at-bol 'org-marker))
  7722. (equal buf (marker-buffer m))
  7723. (setq p (marker-position m))
  7724. (>= p beg)
  7725. (< p end))
  7726. (let ((inhibit-read-only t))
  7727. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  7728. (beginning-of-line 0))))))
  7729. (defun org-agenda-refile (&optional goto rfloc no-update)
  7730. "Refile the item at point."
  7731. (interactive "P")
  7732. (if (equal goto '(16))
  7733. (org-refile-goto-last-stored)
  7734. (let* ((buffer-orig (buffer-name))
  7735. (marker (or (org-get-at-bol 'org-hd-marker)
  7736. (org-agenda-error)))
  7737. (buffer (marker-buffer marker))
  7738. (pos (marker-position marker))
  7739. (rfloc (or rfloc
  7740. (org-refile-get-location
  7741. (if goto "Goto" "Refile to") buffer
  7742. org-refile-allow-creating-parent-nodes))))
  7743. (with-current-buffer buffer
  7744. (save-excursion
  7745. (save-restriction
  7746. (widen)
  7747. (goto-char marker)
  7748. (let ((org-agenda-buffer-name buffer-orig))
  7749. (org-remove-subtree-entries-from-agenda))
  7750. (org-refile goto buffer rfloc)))))
  7751. (unless no-update (org-agenda-redo))))
  7752. (defun org-agenda-open-link (&optional arg)
  7753. "Open the link(s) in the current entry, if any.
  7754. This looks for a link in the displayed line in the agenda.
  7755. It also looks at the text of the entry itself."
  7756. (interactive "P")
  7757. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  7758. (org-get-at-bol 'org-marker)))
  7759. (buffer (and marker (marker-buffer marker)))
  7760. (prefix (buffer-substring (point-at-bol) (point-at-eol)))
  7761. (lkall (org-offer-links-in-entry buffer marker arg prefix))
  7762. (lk0 (car lkall))
  7763. (lk (if (stringp lk0) (list lk0) lk0))
  7764. (lkend (cdr lkall))
  7765. trg)
  7766. (cond
  7767. ((and buffer lk)
  7768. (mapcar (lambda(l)
  7769. (with-current-buffer buffer
  7770. (setq trg (and (string-match org-bracket-link-regexp l)
  7771. (match-string 1 l)))
  7772. (if (or (not trg) (string-match org-any-link-re trg))
  7773. (save-excursion
  7774. (save-restriction
  7775. (widen)
  7776. (goto-char marker)
  7777. (when (search-forward l nil lkend)
  7778. (goto-char (match-beginning 0))
  7779. (org-open-at-point))))
  7780. ;; This is an internal link, widen the buffer
  7781. (switch-to-buffer-other-window buffer)
  7782. (widen)
  7783. (goto-char marker)
  7784. (when (search-forward l nil lkend)
  7785. (goto-char (match-beginning 0))
  7786. (org-open-at-point)))))
  7787. lk))
  7788. ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
  7789. (save-excursion
  7790. (beginning-of-line 1)
  7791. (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
  7792. (org-open-link-from-string (match-string 1)))
  7793. (t (message "No link to open here")))))
  7794. (defun org-agenda-copy-local-variable (var)
  7795. "Get a variable from a referenced buffer and install it here."
  7796. (let ((m (org-get-at-bol 'org-marker)))
  7797. (when (and m (buffer-live-p (marker-buffer m)))
  7798. (org-set-local var (with-current-buffer (marker-buffer m)
  7799. (symbol-value var))))))
  7800. (defun org-agenda-switch-to (&optional delete-other-windows)
  7801. "Go to the Org-mode file which contains the item at point."
  7802. (interactive)
  7803. (if (and org-return-follows-link
  7804. (not (org-get-at-bol 'org-marker))
  7805. (org-in-regexp org-bracket-link-regexp))
  7806. (org-open-link-from-string (match-string 0))
  7807. (let* ((marker (or (org-get-at-bol 'org-marker)
  7808. (org-agenda-error)))
  7809. (buffer (marker-buffer marker))
  7810. (pos (marker-position marker)))
  7811. (org-pop-to-buffer-same-window buffer)
  7812. (and delete-other-windows (delete-other-windows))
  7813. (widen)
  7814. (goto-char pos)
  7815. (when (derived-mode-p 'org-mode)
  7816. (org-show-context 'agenda)
  7817. (save-excursion
  7818. (and (outline-next-heading)
  7819. (org-flag-heading nil))) ; show the next heading
  7820. (when (outline-invisible-p)
  7821. (show-entry)) ; display invisible text
  7822. (run-hooks 'org-agenda-after-show-hook)))))
  7823. (defun org-agenda-goto-mouse (ev)
  7824. "Go to the Org-mode file which contains the item at the mouse click."
  7825. (interactive "e")
  7826. (mouse-set-point ev)
  7827. (org-agenda-goto))
  7828. (defun org-agenda-show (&optional full-entry)
  7829. "Display the Org-mode file which contains the item at point.
  7830. With prefix argument FULL-ENTRY, make the entire entry visible
  7831. if it was hidden in the outline."
  7832. (interactive "P")
  7833. (let ((win (selected-window)))
  7834. (if full-entry
  7835. (let ((org-show-entry-below t))
  7836. (org-agenda-goto t))
  7837. (org-agenda-goto t))
  7838. (select-window win)))
  7839. (defvar org-agenda-show-window nil)
  7840. (defun org-agenda-show-and-scroll-up (&optional arg)
  7841. "Display the Org-mode file which contains the item at point.
  7842. When called repeatedly, scroll the window that is displaying the buffer.
  7843. With a \\[universal-argument] prefix, use `org-show-entry' instead of
  7844. `show-subtree' to display the item, so that drawers and logbooks stay
  7845. folded."
  7846. (interactive "P")
  7847. (let ((win (selected-window)))
  7848. (if (and (window-live-p org-agenda-show-window)
  7849. (eq this-command last-command))
  7850. (progn
  7851. (select-window org-agenda-show-window)
  7852. (ignore-errors (scroll-up)))
  7853. (org-agenda-goto t)
  7854. (if arg (org-show-entry) (show-subtree))
  7855. (setq org-agenda-show-window (selected-window)))
  7856. (select-window win)))
  7857. (defun org-agenda-show-scroll-down ()
  7858. "Scroll down the window showing the agenda."
  7859. (interactive)
  7860. (let ((win (selected-window)))
  7861. (when (window-live-p org-agenda-show-window)
  7862. (select-window org-agenda-show-window)
  7863. (ignore-errors (scroll-down))
  7864. (select-window win))))
  7865. (defun org-agenda-show-1 (&optional more)
  7866. "Display the Org-mode file which contains the item at point.
  7867. The prefix arg selects the amount of information to display:
  7868. 0 hide the subtree
  7869. 1 just show the entry according to defaults.
  7870. 2 show the children view
  7871. 3 show the subtree view
  7872. 4 show the entire subtree and any LOGBOOK drawers
  7873. 5 show the entire subtree and any drawers
  7874. With prefix argument FULL-ENTRY, make the entire entry visible
  7875. if it was hidden in the outline."
  7876. (interactive "p")
  7877. (let ((win (selected-window)))
  7878. (org-agenda-goto t)
  7879. (org-recenter-heading 1)
  7880. (cond
  7881. ((= more 0)
  7882. (hide-subtree)
  7883. (save-excursion
  7884. (org-back-to-heading)
  7885. (run-hook-with-args 'org-cycle-hook 'folded))
  7886. (message "Remote: FOLDED"))
  7887. ((and (org-called-interactively-p 'any) (= more 1))
  7888. (message "Remote: show with default settings"))
  7889. ((= more 2)
  7890. (show-entry)
  7891. (show-children)
  7892. (save-excursion
  7893. (org-back-to-heading)
  7894. (run-hook-with-args 'org-cycle-hook 'children))
  7895. (message "Remote: CHILDREN"))
  7896. ((= more 3)
  7897. (show-subtree)
  7898. (save-excursion
  7899. (org-back-to-heading)
  7900. (run-hook-with-args 'org-cycle-hook 'subtree))
  7901. (message "Remote: SUBTREE"))
  7902. ((= more 4)
  7903. (let* ((org-drawers (delete "LOGBOOK" (copy-sequence org-drawers)))
  7904. (org-drawer-regexp
  7905. (concat "^[ \t]*:\\("
  7906. (mapconcat 'regexp-quote org-drawers "\\|")
  7907. "\\):[ \t]*$")))
  7908. (show-subtree)
  7909. (save-excursion
  7910. (org-back-to-heading)
  7911. (org-cycle-hide-drawers 'subtree)))
  7912. (message "Remote: SUBTREE AND LOGBOOK"))
  7913. ((> more 4)
  7914. (show-subtree)
  7915. (message "Remote: SUBTREE AND ALL DRAWERS")))
  7916. (select-window win)))
  7917. (defun org-recenter-heading (n)
  7918. (save-excursion
  7919. (org-back-to-heading)
  7920. (recenter n)))
  7921. (defvar org-agenda-cycle-counter nil)
  7922. (defun org-agenda-cycle-show (&optional n)
  7923. "Show the current entry in another window, with default settings.
  7924. Default settings are taken from `org-show-hierarchy-above' and siblings.
  7925. When use repeatedly in immediate succession, the remote entry will cycle
  7926. through visibility
  7927. children -> subtree -> folded
  7928. When called with a numeric prefix arg, that arg will be passed through to
  7929. `org-agenda-show-1'. For the interpretation of that argument, see the
  7930. docstring of `org-agenda-show-1'."
  7931. (interactive "P")
  7932. (if (integerp n)
  7933. (setq org-agenda-cycle-counter n)
  7934. (if (not (eq last-command this-command))
  7935. (setq org-agenda-cycle-counter 1)
  7936. (if (equal org-agenda-cycle-counter 0)
  7937. (setq org-agenda-cycle-counter 2)
  7938. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  7939. (if (> org-agenda-cycle-counter 3)
  7940. (setq org-agenda-cycle-counter 0)))))
  7941. (org-agenda-show-1 org-agenda-cycle-counter))
  7942. (defun org-agenda-recenter (arg)
  7943. "Display the Org-mode file which contains the item at point and recenter."
  7944. (interactive "P")
  7945. (let ((win (selected-window)))
  7946. (org-agenda-goto t)
  7947. (recenter arg)
  7948. (select-window win)))
  7949. (defun org-agenda-show-mouse (ev)
  7950. "Display the Org-mode file which contains the item at the mouse click."
  7951. (interactive "e")
  7952. (mouse-set-point ev)
  7953. (org-agenda-show))
  7954. (defun org-agenda-check-no-diary ()
  7955. "Check if the entry is a diary link and abort if yes."
  7956. (if (org-get-at-bol 'org-agenda-diary-link)
  7957. (org-agenda-error)))
  7958. (defun org-agenda-error ()
  7959. (error "Command not allowed in this line"))
  7960. (defun org-agenda-tree-to-indirect-buffer (arg)
  7961. "Show the subtree corresponding to the current entry in an indirect buffer.
  7962. This calls the command `org-tree-to-indirect-buffer' from the original buffer.
  7963. With a numerical prefix ARG, go up to this level and then take that tree.
  7964. With a negative numeric ARG, go up by this number of levels.
  7965. With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
  7966. use the dedicated frame)."
  7967. (interactive "P")
  7968. (if current-prefix-arg
  7969. (org-agenda-do-tree-to-indirect-buffer arg)
  7970. (let ((agenda-buffer (buffer-name))
  7971. (agenda-window (selected-window))
  7972. (indirect-window
  7973. (and org-last-indirect-buffer
  7974. (get-buffer-window org-last-indirect-buffer))))
  7975. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer arg))
  7976. (unless (or (eq org-indirect-buffer-display 'new-frame)
  7977. (eq org-indirect-buffer-display 'dedicated-frame))
  7978. (unwind-protect
  7979. (unless (and indirect-window (window-live-p indirect-window))
  7980. (setq indirect-window (split-window agenda-window)))
  7981. (and indirect-window (select-window indirect-window))
  7982. (switch-to-buffer org-last-indirect-buffer :norecord)
  7983. (fit-window-to-buffer indirect-window)))
  7984. (select-window (get-buffer-window agenda-buffer)))))
  7985. (defun org-agenda-do-tree-to-indirect-buffer (arg)
  7986. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  7987. (org-agenda-check-no-diary)
  7988. (let* ((marker (or (org-get-at-bol 'org-marker)
  7989. (org-agenda-error)))
  7990. (buffer (marker-buffer marker))
  7991. (pos (marker-position marker)))
  7992. (with-current-buffer buffer
  7993. (save-excursion
  7994. (goto-char pos)
  7995. (funcall 'org-tree-to-indirect-buffer arg)))))
  7996. (defvar org-last-heading-marker (make-marker)
  7997. "Marker pointing to the headline that last changed its TODO state
  7998. by a remote command from the agenda.")
  7999. (defun org-agenda-todo-nextset ()
  8000. "Switch TODO entry to next sequence."
  8001. (interactive)
  8002. (org-agenda-todo 'nextset))
  8003. (defun org-agenda-todo-previousset ()
  8004. "Switch TODO entry to previous sequence."
  8005. (interactive)
  8006. (org-agenda-todo 'previousset))
  8007. (defun org-agenda-todo (&optional arg)
  8008. "Cycle TODO state of line at point, also in Org-mode file.
  8009. This changes the line at point, all other lines in the agenda referring to
  8010. the same tree node, and the headline of the tree node in the Org-mode file."
  8011. (interactive "P")
  8012. (org-agenda-check-no-diary)
  8013. (let* ((col (current-column))
  8014. (marker (or (org-get-at-bol 'org-marker)
  8015. (org-agenda-error)))
  8016. (buffer (marker-buffer marker))
  8017. (pos (marker-position marker))
  8018. (hdmarker (org-get-at-bol 'org-hd-marker))
  8019. (todayp (org-agenda-todayp (org-get-at-bol 'day)))
  8020. (inhibit-read-only t)
  8021. org-agenda-headline-snapshot-before-repeat newhead just-one)
  8022. (org-with-remote-undo buffer
  8023. (with-current-buffer buffer
  8024. (widen)
  8025. (goto-char pos)
  8026. (org-show-context 'agenda)
  8027. (save-excursion
  8028. (and (outline-next-heading)
  8029. (org-flag-heading nil))) ; show the next heading
  8030. (let ((current-prefix-arg arg))
  8031. (call-interactively 'org-todo))
  8032. (and (bolp) (forward-char 1))
  8033. (setq newhead (org-get-heading))
  8034. (when (and (org-bound-and-true-p
  8035. org-agenda-headline-snapshot-before-repeat)
  8036. (not (equal org-agenda-headline-snapshot-before-repeat
  8037. newhead))
  8038. todayp)
  8039. (setq newhead org-agenda-headline-snapshot-before-repeat
  8040. just-one t))
  8041. (save-excursion
  8042. (org-back-to-heading)
  8043. (move-marker org-last-heading-marker (point))))
  8044. (beginning-of-line 1)
  8045. (save-excursion
  8046. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  8047. (org-move-to-column col))))
  8048. (defun org-agenda-add-note (&optional arg)
  8049. "Add a time-stamped note to the entry at point."
  8050. (interactive "P")
  8051. (org-agenda-check-no-diary)
  8052. (let* ((marker (or (org-get-at-bol 'org-marker)
  8053. (org-agenda-error)))
  8054. (buffer (marker-buffer marker))
  8055. (pos (marker-position marker))
  8056. (hdmarker (org-get-at-bol 'org-hd-marker))
  8057. (inhibit-read-only t))
  8058. (with-current-buffer buffer
  8059. (widen)
  8060. (goto-char pos)
  8061. (org-show-context 'agenda)
  8062. (save-excursion
  8063. (and (outline-next-heading)
  8064. (org-flag-heading nil))) ; show the next heading
  8065. (org-add-note))))
  8066. (defun org-agenda-change-all-lines (newhead hdmarker
  8067. &optional fixface just-this)
  8068. "Change all lines in the agenda buffer which match HDMARKER.
  8069. The new content of the line will be NEWHEAD (as modified by
  8070. `org-agenda-format-item'). HDMARKER is checked with
  8071. `equal' against all `org-hd-marker' text properties in the file.
  8072. If FIXFACE is non-nil, the face of each item is modified according to
  8073. the new TODO state.
  8074. If JUST-THIS is non-nil, change just the current line, not all.
  8075. If FORCE-TAGS is non nil, the car of it returns the new tags."
  8076. (let* ((inhibit-read-only t)
  8077. (line (org-current-line))
  8078. (org-agenda-buffer (current-buffer))
  8079. (thetags (with-current-buffer (marker-buffer hdmarker)
  8080. (save-excursion (save-restriction (widen)
  8081. (goto-char hdmarker)
  8082. (org-get-tags-at)))))
  8083. props m pl undone-face done-face finish new dotime level cat tags)
  8084. (save-excursion
  8085. (goto-char (point-max))
  8086. (beginning-of-line 1)
  8087. (while (not finish)
  8088. (setq finish (bobp))
  8089. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  8090. (or (not just-this) (= (org-current-line) line))
  8091. (equal m hdmarker))
  8092. (setq props (text-properties-at (point))
  8093. dotime (org-get-at-bol 'dotime)
  8094. cat (org-get-at-bol 'org-category)
  8095. level (org-get-at-bol 'level)
  8096. tags thetags
  8097. new
  8098. (let ((org-prefix-format-compiled
  8099. (or (get-text-property (min (1- (point-max)) (point)) 'format)
  8100. org-prefix-format-compiled))
  8101. (extra (org-get-at-bol 'extra)))
  8102. (with-current-buffer (marker-buffer hdmarker)
  8103. (save-excursion
  8104. (save-restriction
  8105. (widen)
  8106. (org-agenda-format-item extra newhead level cat tags dotime)))))
  8107. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  8108. undone-face (org-get-at-bol 'undone-face)
  8109. done-face (org-get-at-bol 'done-face))
  8110. (beginning-of-line 1)
  8111. (cond
  8112. ((equal new "")
  8113. (and (looking-at ".*\n?") (replace-match "")))
  8114. ((looking-at ".*")
  8115. (replace-match new t t)
  8116. (beginning-of-line 1)
  8117. (add-text-properties (point-at-bol) (point-at-eol) props)
  8118. (when fixface
  8119. (add-text-properties
  8120. (point-at-bol) (point-at-eol)
  8121. (list 'face
  8122. (if org-last-todo-state-is-todo
  8123. undone-face done-face))))
  8124. (org-agenda-highlight-todo 'line)
  8125. (beginning-of-line 1))
  8126. (t (error "Line update did not work")))
  8127. (save-restriction
  8128. (narrow-to-region (point-at-bol) (point-at-eol))
  8129. (org-agenda-finalize)))
  8130. (beginning-of-line 0)))))
  8131. (defun org-agenda-align-tags (&optional line)
  8132. "Align all tags in agenda items to `org-agenda-tags-column'."
  8133. (let ((inhibit-read-only t) l c)
  8134. (save-excursion
  8135. (goto-char (if line (point-at-bol) (point-min)))
  8136. (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  8137. (if line (point-at-eol) nil) t)
  8138. (add-text-properties
  8139. (match-beginning 2) (match-end 2)
  8140. (list 'face (delq nil (let ((prop (get-text-property
  8141. (match-beginning 2) 'face)))
  8142. (or (listp prop) (setq prop (list prop)))
  8143. (if (memq 'org-tag prop)
  8144. prop
  8145. (cons 'org-tag prop))))))
  8146. (setq l (- (match-end 2) (match-beginning 2))
  8147. c (if (< org-agenda-tags-column 0)
  8148. (- (abs org-agenda-tags-column) l)
  8149. org-agenda-tags-column))
  8150. (delete-region (match-beginning 1) (match-end 1))
  8151. (goto-char (match-beginning 1))
  8152. (insert (org-add-props
  8153. (make-string (max 1 (- c (current-column))) ?\ )
  8154. (plist-put (copy-sequence (text-properties-at (point)))
  8155. 'face nil))))
  8156. (goto-char (point-min))
  8157. (org-font-lock-add-tag-faces (point-max)))))
  8158. (defun org-agenda-priority-up ()
  8159. "Increase the priority of line at point, also in Org-mode file."
  8160. (interactive)
  8161. (org-agenda-priority 'up))
  8162. (defun org-agenda-priority-down ()
  8163. "Decrease the priority of line at point, also in Org-mode file."
  8164. (interactive)
  8165. (org-agenda-priority 'down))
  8166. (defun org-agenda-priority (&optional force-direction)
  8167. "Set the priority of line at point, also in Org-mode file.
  8168. This changes the line at point, all other lines in the agenda referring to
  8169. the same tree node, and the headline of the tree node in the Org-mode file.
  8170. Called with a universal prefix arg, show the priority instead of setting it."
  8171. (interactive "P")
  8172. (if (equal force-direction '(4))
  8173. (org-show-priority)
  8174. (unless org-enable-priority-commands
  8175. (error "Priority commands are disabled"))
  8176. (org-agenda-check-no-diary)
  8177. (let* ((marker (or (org-get-at-bol 'org-marker)
  8178. (org-agenda-error)))
  8179. (hdmarker (org-get-at-bol 'org-hd-marker))
  8180. (buffer (marker-buffer hdmarker))
  8181. (pos (marker-position hdmarker))
  8182. (inhibit-read-only t)
  8183. newhead)
  8184. (org-with-remote-undo buffer
  8185. (with-current-buffer buffer
  8186. (widen)
  8187. (goto-char pos)
  8188. (org-show-context 'agenda)
  8189. (save-excursion
  8190. (and (outline-next-heading)
  8191. (org-flag-heading nil))) ; show the next heading
  8192. (funcall 'org-priority force-direction)
  8193. (end-of-line 1)
  8194. (setq newhead (org-get-heading)))
  8195. (org-agenda-change-all-lines newhead hdmarker)
  8196. (beginning-of-line 1)))))
  8197. ;; FIXME: should fix the tags property of the agenda line.
  8198. (defun org-agenda-set-tags (&optional tag onoff)
  8199. "Set tags for the current headline."
  8200. (interactive)
  8201. (org-agenda-check-no-diary)
  8202. (if (and (org-region-active-p) (org-called-interactively-p 'any))
  8203. (call-interactively 'org-change-tag-in-region)
  8204. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8205. (org-agenda-error)))
  8206. (buffer (marker-buffer hdmarker))
  8207. (pos (marker-position hdmarker))
  8208. (inhibit-read-only t)
  8209. newhead)
  8210. (org-with-remote-undo buffer
  8211. (with-current-buffer buffer
  8212. (widen)
  8213. (goto-char pos)
  8214. (save-excursion
  8215. (org-show-context 'agenda))
  8216. (save-excursion
  8217. (and (outline-next-heading)
  8218. (org-flag-heading nil))) ; show the next heading
  8219. (goto-char pos)
  8220. (if tag
  8221. (org-toggle-tag tag onoff)
  8222. (call-interactively 'org-set-tags))
  8223. (end-of-line 1)
  8224. (setq newhead (org-get-heading)))
  8225. (org-agenda-change-all-lines newhead hdmarker)
  8226. (beginning-of-line 1)))))
  8227. (defun org-agenda-set-property ()
  8228. "Set a property for the current headline."
  8229. (interactive)
  8230. (org-agenda-check-no-diary)
  8231. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8232. (org-agenda-error)))
  8233. (buffer (marker-buffer hdmarker))
  8234. (pos (marker-position hdmarker))
  8235. (inhibit-read-only t)
  8236. newhead)
  8237. (org-with-remote-undo buffer
  8238. (with-current-buffer buffer
  8239. (widen)
  8240. (goto-char pos)
  8241. (save-excursion
  8242. (org-show-context 'agenda))
  8243. (save-excursion
  8244. (and (outline-next-heading)
  8245. (org-flag-heading nil))) ; show the next heading
  8246. (goto-char pos)
  8247. (call-interactively 'org-set-property)))))
  8248. (defun org-agenda-set-effort ()
  8249. "Set the effort property for the current headline."
  8250. (interactive)
  8251. (org-agenda-check-no-diary)
  8252. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8253. (org-agenda-error)))
  8254. (buffer (marker-buffer hdmarker))
  8255. (pos (marker-position hdmarker))
  8256. (inhibit-read-only t)
  8257. newhead)
  8258. (org-with-remote-undo buffer
  8259. (with-current-buffer buffer
  8260. (widen)
  8261. (goto-char pos)
  8262. (save-excursion
  8263. (org-show-context 'agenda))
  8264. (save-excursion
  8265. (and (outline-next-heading)
  8266. (org-flag-heading nil))) ; show the next heading
  8267. (goto-char pos)
  8268. (call-interactively 'org-set-effort)
  8269. (end-of-line 1)
  8270. (setq newhead (org-get-heading)))
  8271. (org-agenda-change-all-lines newhead hdmarker))))
  8272. (defun org-agenda-toggle-archive-tag ()
  8273. "Toggle the archive tag for the current entry."
  8274. (interactive)
  8275. (org-agenda-check-no-diary)
  8276. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  8277. (org-agenda-error)))
  8278. (buffer (marker-buffer hdmarker))
  8279. (pos (marker-position hdmarker))
  8280. (inhibit-read-only t)
  8281. newhead)
  8282. (org-with-remote-undo buffer
  8283. (with-current-buffer buffer
  8284. (widen)
  8285. (goto-char pos)
  8286. (org-show-context 'agenda)
  8287. (save-excursion
  8288. (and (outline-next-heading)
  8289. (org-flag-heading nil))) ; show the next heading
  8290. (call-interactively 'org-toggle-archive-tag)
  8291. (end-of-line 1)
  8292. (setq newhead (org-get-heading)))
  8293. (org-agenda-change-all-lines newhead hdmarker)
  8294. (beginning-of-line 1))))
  8295. (defun org-agenda-do-date-later (arg)
  8296. (interactive "P")
  8297. (cond
  8298. ((or (equal arg '(16))
  8299. (memq last-command
  8300. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8301. (setq this-command 'org-agenda-date-later-minutes)
  8302. (org-agenda-date-later-minutes 1))
  8303. ((or (equal arg '(4))
  8304. (memq last-command
  8305. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8306. (setq this-command 'org-agenda-date-later-hours)
  8307. (org-agenda-date-later-hours 1))
  8308. (t
  8309. (org-agenda-date-later (prefix-numeric-value arg)))))
  8310. (defun org-agenda-do-date-earlier (arg)
  8311. (interactive "P")
  8312. (cond
  8313. ((or (equal arg '(16))
  8314. (memq last-command
  8315. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  8316. (setq this-command 'org-agenda-date-earlier-minutes)
  8317. (org-agenda-date-earlier-minutes 1))
  8318. ((or (equal arg '(4))
  8319. (memq last-command
  8320. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  8321. (setq this-command 'org-agenda-date-earlier-hours)
  8322. (org-agenda-date-earlier-hours 1))
  8323. (t
  8324. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  8325. (defun org-agenda-date-later (arg &optional what)
  8326. "Change the date of this item to ARG day(s) later."
  8327. (interactive "p")
  8328. (org-agenda-check-type t 'agenda 'timeline)
  8329. (org-agenda-check-no-diary)
  8330. (let* ((marker (or (org-get-at-bol 'org-marker)
  8331. (org-agenda-error)))
  8332. (buffer (marker-buffer marker))
  8333. (pos (marker-position marker))
  8334. cdate today)
  8335. (org-with-remote-undo buffer
  8336. (with-current-buffer buffer
  8337. (widen)
  8338. (goto-char pos)
  8339. (if (not (org-at-timestamp-p))
  8340. (error "Cannot find time stamp"))
  8341. (when (and org-agenda-move-date-from-past-immediately-to-today
  8342. (equal arg 1)
  8343. (or (not what) (eq what 'day))
  8344. (not (save-match-data (org-at-date-range-p))))
  8345. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  8346. cdate (calendar-absolute-from-gregorian
  8347. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  8348. today (org-today))
  8349. (if (> today cdate)
  8350. ;; immediately shift to today
  8351. (setq arg (- today cdate))))
  8352. (org-timestamp-change arg (or what 'day))
  8353. (when (and (org-at-date-range-p)
  8354. (re-search-backward org-tr-regexp-both (point-at-bol)))
  8355. (let ((end org-last-changed-timestamp))
  8356. (org-timestamp-change arg (or what 'day))
  8357. (setq org-last-changed-timestamp
  8358. (concat org-last-changed-timestamp "--" end)))))
  8359. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8360. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8361. (defun org-agenda-date-earlier (arg &optional what)
  8362. "Change the date of this item to ARG day(s) earlier."
  8363. (interactive "p")
  8364. (org-agenda-date-later (- arg) what))
  8365. (defun org-agenda-date-later-minutes (arg)
  8366. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8367. (interactive "p")
  8368. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8369. (org-agenda-date-later arg 'minute))
  8370. (defun org-agenda-date-earlier-minutes (arg)
  8371. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  8372. (interactive "p")
  8373. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  8374. (org-agenda-date-earlier arg 'minute))
  8375. (defun org-agenda-date-later-hours (arg)
  8376. "Change the time of this item, in hour steps."
  8377. (interactive "p")
  8378. (org-agenda-date-later arg 'hour))
  8379. (defun org-agenda-date-earlier-hours (arg)
  8380. "Change the time of this item, in hour steps."
  8381. (interactive "p")
  8382. (org-agenda-date-earlier arg 'hour))
  8383. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  8384. "Show new date stamp via text properties."
  8385. ;; We use text properties to make this undoable
  8386. (let ((inhibit-read-only t))
  8387. (setq stamp (concat prefix " => " stamp " "))
  8388. (save-excursion
  8389. (goto-char (point-max))
  8390. (while (not (bobp))
  8391. (when (equal marker (org-get-at-bol 'org-marker))
  8392. (org-move-to-column (- (window-width) (length stamp)) t)
  8393. (org-agenda-fix-tags-filter-overlays-at (point))
  8394. (if (featurep 'xemacs)
  8395. ;; Use `duplicable' property to trigger undo recording
  8396. (let ((ex (make-extent nil nil))
  8397. (gl (make-glyph stamp)))
  8398. (set-glyph-face gl 'secondary-selection)
  8399. (set-extent-properties
  8400. ex (list 'invisible t 'end-glyph gl 'duplicable t))
  8401. (insert-extent ex (1- (point)) (point-at-eol)))
  8402. (add-text-properties
  8403. (1- (point)) (point-at-eol)
  8404. (list 'display (org-add-props stamp nil
  8405. 'face 'secondary-selection))))
  8406. (beginning-of-line 1))
  8407. (beginning-of-line 0)))))
  8408. (defun org-agenda-date-prompt (arg)
  8409. "Change the date of this item. Date is prompted for, with default today.
  8410. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  8411. be used to request time specification in the time stamp."
  8412. (interactive "P")
  8413. (org-agenda-check-type t 'agenda 'timeline)
  8414. (org-agenda-check-no-diary)
  8415. (let* ((marker (or (org-get-at-bol 'org-marker)
  8416. (org-agenda-error)))
  8417. (buffer (marker-buffer marker))
  8418. (pos (marker-position marker)))
  8419. (org-with-remote-undo buffer
  8420. (with-current-buffer buffer
  8421. (widen)
  8422. (goto-char pos)
  8423. (if (not (org-at-timestamp-p t))
  8424. (error "Cannot find time stamp"))
  8425. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  8426. (org-agenda-show-new-time marker org-last-changed-timestamp))
  8427. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  8428. (defun org-agenda-schedule (arg &optional time)
  8429. "Schedule the item at point.
  8430. ARG is passed through to `org-schedule'."
  8431. (interactive "P")
  8432. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8433. (org-agenda-check-no-diary)
  8434. (let* ((marker (or (org-get-at-bol 'org-marker)
  8435. (org-agenda-error)))
  8436. (type (marker-insertion-type marker))
  8437. (buffer (marker-buffer marker))
  8438. (pos (marker-position marker))
  8439. (org-insert-labeled-timestamps-at-point nil)
  8440. ts)
  8441. (set-marker-insertion-type marker t)
  8442. (org-with-remote-undo buffer
  8443. (with-current-buffer buffer
  8444. (widen)
  8445. (goto-char pos)
  8446. (setq ts (org-schedule arg time)))
  8447. (org-agenda-show-new-time marker ts " S"))
  8448. (message "%s" ts)))
  8449. (defun org-agenda-deadline (arg &optional time)
  8450. "Schedule the item at point.
  8451. ARG is passed through to `org-deadline'."
  8452. (interactive "P")
  8453. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  8454. (org-agenda-check-no-diary)
  8455. (let* ((marker (or (org-get-at-bol 'org-marker)
  8456. (org-agenda-error)))
  8457. (buffer (marker-buffer marker))
  8458. (pos (marker-position marker))
  8459. (org-insert-labeled-timestamps-at-point nil)
  8460. ts)
  8461. (org-with-remote-undo buffer
  8462. (with-current-buffer buffer
  8463. (widen)
  8464. (goto-char pos)
  8465. (setq ts (org-deadline arg time)))
  8466. (org-agenda-show-new-time marker ts " D"))
  8467. (message "%s" ts)))
  8468. (defun org-agenda-clock-in (&optional arg)
  8469. "Start the clock on the currently selected item."
  8470. (interactive "P")
  8471. (org-agenda-check-no-diary)
  8472. (if (equal arg '(4))
  8473. (org-clock-in arg)
  8474. (let* ((marker (or (org-get-at-bol 'org-marker)
  8475. (org-agenda-error)))
  8476. (hdmarker (or (org-get-at-bol 'org-hd-marker)
  8477. marker))
  8478. (pos (marker-position marker))
  8479. newhead)
  8480. (org-with-remote-undo (marker-buffer marker)
  8481. (with-current-buffer (marker-buffer marker)
  8482. (widen)
  8483. (goto-char pos)
  8484. (org-show-context 'agenda)
  8485. (org-show-entry)
  8486. (org-cycle-hide-drawers 'children)
  8487. (org-clock-in arg)
  8488. (setq newhead (org-get-heading)))
  8489. (org-agenda-change-all-lines newhead hdmarker)))))
  8490. (defun org-agenda-clock-out ()
  8491. "Stop the currently running clock."
  8492. (interactive)
  8493. (unless (marker-buffer org-clock-marker)
  8494. (error "No running clock"))
  8495. (let ((marker (make-marker)) newhead)
  8496. (org-with-remote-undo (marker-buffer org-clock-marker)
  8497. (with-current-buffer (marker-buffer org-clock-marker)
  8498. (save-excursion
  8499. (save-restriction
  8500. (widen)
  8501. (goto-char org-clock-marker)
  8502. (org-back-to-heading t)
  8503. (move-marker marker (point))
  8504. (org-clock-out)
  8505. (setq newhead (org-get-heading))))))
  8506. (org-agenda-change-all-lines newhead marker)
  8507. (move-marker marker nil)))
  8508. (defun org-agenda-clock-cancel (&optional arg)
  8509. "Cancel the currently running clock."
  8510. (interactive "P")
  8511. (unless (marker-buffer org-clock-marker)
  8512. (error "No running clock"))
  8513. (org-with-remote-undo (marker-buffer org-clock-marker)
  8514. (org-clock-cancel)))
  8515. (defun org-agenda-clock-goto ()
  8516. "Jump to the currently clocked in task within the agenda.
  8517. If the currently clocked in task is not listed in the agenda
  8518. buffer, display it in another window."
  8519. (interactive)
  8520. (let (pos)
  8521. (mapc (lambda (o)
  8522. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  8523. (setq pos (overlay-start o))))
  8524. (overlays-in (point-min) (point-max)))
  8525. (cond (pos (goto-char pos))
  8526. ;; If the currently clocked entry is not in the agenda
  8527. ;; buffer, we visit it in another window:
  8528. (org-clock-current-task
  8529. (org-switch-to-buffer-other-window (org-clock-goto)))
  8530. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  8531. (defun org-agenda-diary-entry-in-org-file ()
  8532. "Make a diary entry in the file `org-agenda-diary-file'."
  8533. (let (d1 d2 char (text "") dp1 dp2)
  8534. (if (equal (buffer-name) "*Calendar*")
  8535. (setq d1 (calendar-cursor-to-date t)
  8536. d2 (car calendar-mark-ring))
  8537. (setq dp1 (get-text-property (point-at-bol) 'day))
  8538. (unless dp1 (error "No date defined in current line"))
  8539. (setq d1 (calendar-gregorian-from-absolute dp1)
  8540. d2 (and (ignore-errors (mark))
  8541. (save-excursion
  8542. (goto-char (mark))
  8543. (setq dp2 (get-text-property (point-at-bol) 'day)))
  8544. (calendar-gregorian-from-absolute dp2))))
  8545. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  8546. (setq char (read-char-exclusive))
  8547. (cond
  8548. ((equal char ?d)
  8549. (setq text (read-string "Day entry: "))
  8550. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  8551. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8552. ((equal char ?a)
  8553. (setq d1 (list (car d1) (nth 1 d1)
  8554. (read-number (format "Reference year [%d]: " (nth 2 d1))
  8555. (nth 2 d1))))
  8556. (setq text (read-string "Anniversary (use %d to show years): "))
  8557. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  8558. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8559. ((equal char ?b)
  8560. (setq text (read-string "Block entry: "))
  8561. (unless (and d1 d2 (not (equal d1 d2)))
  8562. (error "No block of days selected"))
  8563. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  8564. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  8565. ((equal char ?j)
  8566. (org-switch-to-buffer-other-window
  8567. (find-file-noselect org-agenda-diary-file))
  8568. (require 'org-datetree)
  8569. (org-datetree-find-date-create d1)
  8570. (org-reveal t))
  8571. (t (error "Invalid selection character `%c'" char)))))
  8572. (defcustom org-agenda-insert-diary-strategy 'date-tree
  8573. "Where in `org-agenda-diary-file' should new entries be added?
  8574. Valid values:
  8575. date-tree in the date tree, as child of the date
  8576. top-level as top-level entries at the end of the file."
  8577. :group 'org-agenda
  8578. :type '(choice
  8579. (const :tag "in a date tree" date-tree)
  8580. (const :tag "as top level at end of file" top-level)))
  8581. (defcustom org-agenda-insert-diary-extract-time nil
  8582. "Non-nil means extract any time specification from the diary entry."
  8583. :group 'org-agenda
  8584. :version "24.1"
  8585. :type 'boolean)
  8586. (defcustom org-agenda-bulk-mark-char ">"
  8587. "A single-character string to be used as the bulk mark."
  8588. :group 'org-agenda
  8589. :version "24.1"
  8590. :type 'string)
  8591. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  8592. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  8593. If TEXT is not empty, it will become the headline of the new entry, and
  8594. the resulting entry will not be shown. When TEXT is empty, switch to
  8595. `org-agenda-diary-file' and let the user finish the entry there."
  8596. (let ((cw (current-window-configuration)))
  8597. (org-switch-to-buffer-other-window
  8598. (find-file-noselect org-agenda-diary-file))
  8599. (widen)
  8600. (goto-char (point-min))
  8601. (cond
  8602. ((eq type 'anniversary)
  8603. (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
  8604. (progn
  8605. (or (org-at-heading-p t)
  8606. (progn
  8607. (outline-next-heading)
  8608. (insert "* Anniversaries\n\n")
  8609. (beginning-of-line -1)))))
  8610. (outline-next-heading)
  8611. (org-back-over-empty-lines)
  8612. (backward-char 1)
  8613. (insert "\n")
  8614. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  8615. (nth 2 d1) (car d1) (nth 1 d1) text)))
  8616. ((eq type 'day)
  8617. (let ((org-prefix-has-time t)
  8618. (org-agenda-time-leading-zero t)
  8619. fmt time time2)
  8620. (if org-agenda-insert-diary-extract-time
  8621. ;; Use org-agenda-format-item to parse text for a time-range and
  8622. ;; remove it. FIXME: This is a hack, we should refactor
  8623. ;; that function to make time extraction available separately
  8624. (setq fmt (org-agenda-format-item nil text nil nil nil t)
  8625. time (get-text-property 0 'time fmt)
  8626. time2 (if (> (length time) 0)
  8627. ;; split-string removes trailing ...... if
  8628. ;; no end time given. First space
  8629. ;; separates time from date.
  8630. (concat " " (car (split-string time "\\.")))
  8631. nil)
  8632. text (get-text-property 0 'txt fmt)))
  8633. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8634. (org-agenda-insert-diary-as-top-level text)
  8635. (require 'org-datetree)
  8636. (org-datetree-find-date-create d1)
  8637. (org-agenda-insert-diary-make-new-entry text))
  8638. (org-insert-time-stamp (org-time-from-absolute
  8639. (calendar-absolute-from-gregorian d1))
  8640. nil nil nil nil time2))
  8641. (end-of-line 0))
  8642. ((eq type 'block)
  8643. (if (> (calendar-absolute-from-gregorian d1)
  8644. (calendar-absolute-from-gregorian d2))
  8645. (setq d1 (prog1 d2 (setq d2 d1))))
  8646. (if (eq org-agenda-insert-diary-strategy 'top-level)
  8647. (org-agenda-insert-diary-as-top-level text)
  8648. (require 'org-datetree)
  8649. (org-datetree-find-date-create d1)
  8650. (org-agenda-insert-diary-make-new-entry text))
  8651. (org-insert-time-stamp (org-time-from-absolute
  8652. (calendar-absolute-from-gregorian d1)))
  8653. (insert "--")
  8654. (org-insert-time-stamp (org-time-from-absolute
  8655. (calendar-absolute-from-gregorian d2)))
  8656. (end-of-line 0)))
  8657. (if (string-match "\\S-" text)
  8658. (progn
  8659. (set-window-configuration cw)
  8660. (message "%s entry added to %s"
  8661. (capitalize (symbol-name type))
  8662. (abbreviate-file-name org-agenda-diary-file)))
  8663. (org-reveal t)
  8664. (message "Please finish entry here"))))
  8665. (defun org-agenda-insert-diary-as-top-level (text)
  8666. "Make new entry as a top-level entry at the end of the file.
  8667. Add TEXT as headline, and position the cursor in the second line so that
  8668. a timestamp can be added there."
  8669. (widen)
  8670. (goto-char (point-max))
  8671. (or (bolp) (insert "\n"))
  8672. (insert "* " text "\n")
  8673. (if org-adapt-indentation (org-indent-to-column 2)))
  8674. (defun org-agenda-insert-diary-make-new-entry (text)
  8675. "Make new entry as last child of current entry.
  8676. Add TEXT as headline, and position the cursor in the second line so that
  8677. a timestamp can be added there."
  8678. (let ((org-show-following-heading t)
  8679. (org-show-siblings t)
  8680. (org-show-hierarchy-above t)
  8681. (org-show-entry-below t)
  8682. col)
  8683. (outline-next-heading)
  8684. (org-back-over-empty-lines)
  8685. (or (looking-at "[ \t]*$")
  8686. (progn (insert "\n") (backward-char 1)))
  8687. (org-insert-heading nil t)
  8688. (org-do-demote)
  8689. (setq col (current-column))
  8690. (insert text "\n")
  8691. (if org-adapt-indentation (org-indent-to-column col))
  8692. (let ((org-show-following-heading t)
  8693. (org-show-siblings t)
  8694. (org-show-hierarchy-above t)
  8695. (org-show-entry-below t))
  8696. (org-show-context))))
  8697. (defun org-agenda-diary-entry ()
  8698. "Make a diary entry, like the `i' command from the calendar.
  8699. All the standard commands work: block, weekly etc.
  8700. When `org-agenda-diary-file' points to a file,
  8701. `org-agenda-diary-entry-in-org-file' is called instead to create
  8702. entries in that Org-mode file."
  8703. (interactive)
  8704. (if (not (eq org-agenda-diary-file 'diary-file))
  8705. (org-agenda-diary-entry-in-org-file)
  8706. (require 'diary-lib)
  8707. (let* ((char (progn
  8708. (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
  8709. (read-char-exclusive)))
  8710. (cmd (cdr (assoc char
  8711. '((?d . insert-diary-entry)
  8712. (?w . insert-weekly-diary-entry)
  8713. (?m . insert-monthly-diary-entry)
  8714. (?y . insert-yearly-diary-entry)
  8715. (?a . insert-anniversary-diary-entry)
  8716. (?b . insert-block-diary-entry)
  8717. (?c . insert-cyclic-diary-entry)))))
  8718. (oldf (symbol-function 'calendar-cursor-to-date))
  8719. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  8720. (point (point))
  8721. (mark (or (mark t) (point))))
  8722. (unless cmd
  8723. (error "No command associated with <%c>" char))
  8724. (unless (and (get-text-property point 'day)
  8725. (or (not (equal ?b char))
  8726. (get-text-property mark 'day)))
  8727. (error "Don't know which date to use for diary entry"))
  8728. ;; We implement this by hacking the `calendar-cursor-to-date' function
  8729. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  8730. (let ((calendar-mark-ring
  8731. (list (calendar-gregorian-from-absolute
  8732. (or (get-text-property mark 'day)
  8733. (get-text-property point 'day))))))
  8734. (unwind-protect
  8735. (progn
  8736. (fset 'calendar-cursor-to-date
  8737. (lambda (&optional error dummy)
  8738. (calendar-gregorian-from-absolute
  8739. (get-text-property point 'day))))
  8740. (call-interactively cmd))
  8741. (fset 'calendar-cursor-to-date oldf))))))
  8742. (defun org-agenda-execute-calendar-command (cmd)
  8743. "Execute a calendar command from the agenda with date from cursor."
  8744. (org-agenda-check-type t 'agenda 'timeline)
  8745. (require 'diary-lib)
  8746. (unless (get-text-property (min (1- (point-max)) (point)) 'day)
  8747. (error "Don't know which date to use for the calendar command"))
  8748. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  8749. (point (point))
  8750. (date (calendar-gregorian-from-absolute
  8751. (get-text-property point 'day)))
  8752. ;; the following 2 vars are needed in the calendar
  8753. (displayed-month (car date))
  8754. (displayed-year (nth 2 date)))
  8755. (unwind-protect
  8756. (progn
  8757. (fset 'calendar-cursor-to-date
  8758. (lambda (&optional error dummy)
  8759. (calendar-gregorian-from-absolute
  8760. (get-text-property point 'day))))
  8761. (call-interactively cmd))
  8762. (fset 'calendar-cursor-to-date oldf))))
  8763. (defun org-agenda-phases-of-moon ()
  8764. "Display the phases of the moon for the 3 months around the cursor date."
  8765. (interactive)
  8766. (org-agenda-execute-calendar-command 'calendar-phases-of-moon))
  8767. (defun org-agenda-holidays ()
  8768. "Display the holidays for the 3 months around the cursor date."
  8769. (interactive)
  8770. (org-agenda-execute-calendar-command 'list-calendar-holidays))
  8771. (defvar calendar-longitude) ; defined in calendar.el
  8772. (defvar calendar-latitude) ; defined in calendar.el
  8773. (defvar calendar-location-name) ; defined in calendar.el
  8774. (defun org-agenda-sunrise-sunset (arg)
  8775. "Display sunrise and sunset for the cursor date.
  8776. Latitude and longitude can be specified with the variables
  8777. `calendar-latitude' and `calendar-longitude'. When called with prefix
  8778. argument, latitude and longitude will be prompted for."
  8779. (interactive "P")
  8780. (require 'solar)
  8781. (let ((calendar-longitude (if arg nil calendar-longitude))
  8782. (calendar-latitude (if arg nil calendar-latitude))
  8783. (calendar-location-name
  8784. (if arg "the given coordinates" calendar-location-name)))
  8785. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  8786. (defun org-agenda-goto-calendar ()
  8787. "Open the Emacs calendar with the date at the cursor."
  8788. (interactive)
  8789. (org-agenda-check-type t 'agenda 'timeline)
  8790. (let* ((day (or (get-text-property (min (1- (point-max)) (point)) 'day)
  8791. (error "Don't know which date to open in calendar")))
  8792. (date (calendar-gregorian-from-absolute day))
  8793. (calendar-move-hook nil)
  8794. (calendar-view-holidays-initially-flag nil)
  8795. (calendar-view-diary-initially-flag nil))
  8796. (calendar)
  8797. (calendar-goto-date date)))
  8798. ;;;###autoload
  8799. (defun org-calendar-goto-agenda ()
  8800. "Compute the Org-mode agenda for the calendar date displayed at the cursor.
  8801. This is a command that has to be installed in `calendar-mode-map'."
  8802. (interactive)
  8803. (org-agenda-list nil (calendar-absolute-from-gregorian
  8804. (calendar-cursor-to-date))
  8805. nil))
  8806. (autoload 'org-calendar-goto-agenda "org-agenda" "\
  8807. Compute the Org-mode agenda for the calendar date displayed at the cursor.
  8808. This is a command that has to be installed in `calendar-mode-map'.
  8809. \(fn)" t nil)
  8810. (defun org-agenda-convert-date ()
  8811. (interactive)
  8812. (org-agenda-check-type t 'agenda 'timeline)
  8813. (let ((day (get-text-property (min (1- (point-max)) (point)) 'day))
  8814. date s)
  8815. (unless day
  8816. (error "Don't know which date to convert"))
  8817. (setq date (calendar-gregorian-from-absolute day))
  8818. (setq s (concat
  8819. "Gregorian: " (calendar-date-string date) "\n"
  8820. "ISO: " (calendar-iso-date-string date) "\n"
  8821. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  8822. "Julian: " (calendar-julian-date-string date) "\n"
  8823. "Astron. JD: " (calendar-astro-date-string date)
  8824. " (Julian date number at noon UTC)\n"
  8825. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  8826. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  8827. "French: " (calendar-french-date-string date) "\n"
  8828. "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
  8829. "Mayan: " (calendar-mayan-date-string date) "\n"
  8830. "Coptic: " (calendar-coptic-date-string date) "\n"
  8831. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  8832. "Persian: " (calendar-persian-date-string date) "\n"
  8833. "Chinese: " (calendar-chinese-date-string date) "\n"))
  8834. (with-output-to-temp-buffer "*Dates*"
  8835. (princ s))
  8836. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  8837. ;;; Bulk commands
  8838. (defun org-agenda-bulk-marked-p ()
  8839. (eq (get-char-property (point-at-bol) 'type)
  8840. 'org-marked-entry-overlay))
  8841. (defun org-agenda-bulk-mark (&optional arg)
  8842. "Mark the entry at point for future bulk action."
  8843. (interactive "p")
  8844. (dotimes (i (or arg 1))
  8845. (unless (org-get-at-bol 'org-agenda-diary-link)
  8846. (let* ((m (org-get-at-bol 'org-hd-marker))
  8847. ov)
  8848. (unless (org-agenda-bulk-marked-p)
  8849. (unless m (error "Nothing to mark at point"))
  8850. (push m org-agenda-bulk-marked-entries)
  8851. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  8852. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  8853. (org-get-todo-face "TODO")
  8854. 'evaporate)
  8855. (overlay-put ov 'type 'org-marked-entry-overlay))
  8856. (beginning-of-line 2)
  8857. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  8858. (beginning-of-line 2))
  8859. (message "%d entries marked for bulk action"
  8860. (length org-agenda-bulk-marked-entries))))))
  8861. (defun org-agenda-bulk-mark-all ()
  8862. "Mark all entries for future agenda bulk action."
  8863. (interactive)
  8864. (org-agenda-bulk-mark-regexp "."))
  8865. (defun org-agenda-bulk-mark-regexp (regexp)
  8866. "Mark entries matching REGEXP for future agenda bulk action."
  8867. (interactive "sMark entries matching regexp: ")
  8868. (let ((entries-marked 0))
  8869. (save-excursion
  8870. (goto-char (point-min))
  8871. (goto-char (next-single-property-change (point) 'txt))
  8872. (while (re-search-forward regexp nil t)
  8873. (when (string-match regexp (get-text-property (point) 'txt))
  8874. (setq entries-marked (1+ entries-marked))
  8875. (call-interactively 'org-agenda-bulk-mark))))
  8876. (if (not entries-marked)
  8877. (message "No entry matching this regexp."))))
  8878. (defun org-agenda-bulk-unmark (&optional arg)
  8879. "Unmark the entry at point for future bulk action."
  8880. (interactive "P")
  8881. (if arg
  8882. (org-agenda-bulk-unmark-all)
  8883. (cond ((org-agenda-bulk-marked-p)
  8884. (org-agenda-bulk-remove-overlays
  8885. (point-at-bol) (+ 2 (point-at-bol)))
  8886. (setq org-agenda-bulk-marked-entries
  8887. (delete (org-get-at-bol 'org-hd-marker)
  8888. org-agenda-bulk-marked-entries))
  8889. (beginning-of-line 2)
  8890. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  8891. (beginning-of-line 2))
  8892. (message "%d entries left marked for bulk action"
  8893. (length org-agenda-bulk-marked-entries)))
  8894. (t (message "No entry to unmark here")))))
  8895. (defun org-agenda-bulk-toggle ()
  8896. "Toggle marking the entry at point for bulk action."
  8897. (interactive)
  8898. (if (org-agenda-bulk-marked-p)
  8899. (org-agenda-bulk-unmark)
  8900. (org-agenda-bulk-mark)))
  8901. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  8902. "Remove the mark overlays between BEG and END in the agenda buffer.
  8903. BEG and END default to the buffer limits.
  8904. This only removes the overlays, it does not remove the markers
  8905. from the list in `org-agenda-bulk-marked-entries'."
  8906. (interactive)
  8907. (mapc (lambda (ov)
  8908. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  8909. (delete-overlay ov)))
  8910. (overlays-in (or beg (point-min)) (or end (point-max)))))
  8911. (defun org-agenda-bulk-unmark-all ()
  8912. "Remove all marks in the agenda buffer.
  8913. This will remove the markers and the overlays."
  8914. (interactive)
  8915. (if (null org-agenda-bulk-marked-entries)
  8916. (message "No entry to unmark")
  8917. (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
  8918. (setq org-agenda-bulk-marked-entries nil)
  8919. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  8920. (defcustom org-agenda-persistent-marks nil
  8921. "Non-nil means marked items will stay marked after a bulk action.
  8922. You can toggle this interactively by typing `p' when prompted for a
  8923. bulk action."
  8924. :group 'org-agenda
  8925. :version "24.1"
  8926. :type 'boolean)
  8927. (defun org-agenda-bulk-action (&optional arg)
  8928. "Execute an remote-editing action on all marked entries.
  8929. The prefix arg is passed through to the command if possible."
  8930. (interactive "P")
  8931. ;; Make sure we have markers, and only valid ones
  8932. (unless org-agenda-bulk-marked-entries (error "No entries are marked"))
  8933. (mapc
  8934. (lambda (m)
  8935. (unless (and (markerp m)
  8936. (marker-buffer m)
  8937. (buffer-live-p (marker-buffer m))
  8938. (marker-position m))
  8939. (error "Marker %s for bulk command is invalid" m)))
  8940. org-agenda-bulk-marked-entries)
  8941. ;; Prompt for the bulk command
  8942. (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
  8943. (message (concat msg "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  8944. "[S]catter [f]unction "
  8945. (when org-agenda-bulk-custom-functions
  8946. (concat " Custom: ["
  8947. (mapconcat (lambda(f) (char-to-string (car f)))
  8948. org-agenda-bulk-custom-functions "")
  8949. "]"))))
  8950. (catch 'exit
  8951. (let* ((action (read-char-exclusive))
  8952. (org-log-refile (if org-log-refile 'time nil))
  8953. (entries (reverse org-agenda-bulk-marked-entries))
  8954. (org-overriding-default-time
  8955. (if (get-text-property (point) 'org-agenda-date-header)
  8956. (org-get-cursor-date)))
  8957. redo-at-end
  8958. cmd rfloc state e tag pos (cnt 0) (cntskip 0))
  8959. (cond
  8960. ((equal action ?p)
  8961. (let ((org-agenda-persistent-marks
  8962. (not org-agenda-persistent-marks)))
  8963. (org-agenda-bulk-action)
  8964. (throw 'exit nil)))
  8965. ((equal action ?$)
  8966. (setq cmd '(org-agenda-archive)))
  8967. ((equal action ?A)
  8968. (setq cmd '(org-agenda-archive-to-archive-sibling)))
  8969. ((member action '(?r ?w))
  8970. (setq rfloc (org-refile-get-location
  8971. "Refile to"
  8972. (marker-buffer (car entries))
  8973. org-refile-allow-creating-parent-nodes))
  8974. (if (nth 3 rfloc)
  8975. (setcar (nthcdr 3 rfloc)
  8976. (move-marker (make-marker) (nth 3 rfloc)
  8977. (or (get-file-buffer (nth 1 rfloc))
  8978. (find-buffer-visiting (nth 1 rfloc))
  8979. (error "This should not happen")))))
  8980. (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
  8981. redo-at-end t))
  8982. ((equal action ?t)
  8983. (setq state (org-icompleting-read
  8984. "Todo state: "
  8985. (with-current-buffer (marker-buffer (car entries))
  8986. (mapcar 'list org-todo-keywords-1))))
  8987. (setq cmd `(let ((org-inhibit-blocking t)
  8988. (org-inhibit-logging 'note))
  8989. (org-agenda-todo ,state))))
  8990. ((memq action '(?- ?+))
  8991. (setq tag (org-icompleting-read
  8992. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  8993. (with-current-buffer (marker-buffer (car entries))
  8994. (delq nil
  8995. (mapcar (lambda (x)
  8996. (if (stringp (car x)) x)) org-tag-alist)))))
  8997. (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
  8998. ((memq action '(?s ?d))
  8999. (let* ((time
  9000. (unless arg
  9001. (org-read-date
  9002. nil nil nil
  9003. (if (eq action ?s) "(Re)Schedule to" "(Re)Set Deadline to")
  9004. org-overriding-default-time)))
  9005. (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
  9006. (setq cmd `(eval '(,c1 arg ,time)))))
  9007. ((equal action ?S)
  9008. (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
  9009. (error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
  9010. (let ((days (read-number
  9011. (format "Scatter tasks across how many %sdays: "
  9012. (if arg "week" "")) 7)))
  9013. (setq cmd
  9014. `(let ((distance (1+ (random ,days))))
  9015. (if arg
  9016. (let ((dist distance)
  9017. (day-of-week
  9018. (calendar-day-of-week
  9019. (calendar-gregorian-from-absolute (org-today)))))
  9020. (dotimes (i (1+ dist))
  9021. (while (member day-of-week org-agenda-weekend-days)
  9022. (incf distance)
  9023. (incf day-of-week)
  9024. (if (= day-of-week 7)
  9025. (setq day-of-week 0)))
  9026. (incf day-of-week)
  9027. (if (= day-of-week 7)
  9028. (setq day-of-week 0)))))
  9029. ;; silently fail when try to replan a sexp entry
  9030. (condition-case nil
  9031. (let* ((date (calendar-gregorian-from-absolute
  9032. (+ (org-today) distance)))
  9033. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  9034. (nth 2 date))))
  9035. (org-agenda-schedule nil time))
  9036. (error nil)))))))
  9037. ((assoc action org-agenda-bulk-custom-functions)
  9038. (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
  9039. redo-at-end t))
  9040. ((equal action ?f)
  9041. (setq cmd (list (intern
  9042. (org-icompleting-read "Function: "
  9043. obarray 'fboundp t nil nil)))))
  9044. (t (error "Invalid bulk action")))
  9045. ;; Sort the markers, to make sure that parents are handled before children
  9046. (setq entries (sort entries
  9047. (lambda (a b)
  9048. (cond
  9049. ((equal (marker-buffer a) (marker-buffer b))
  9050. (< (marker-position a) (marker-position b)))
  9051. (t
  9052. (string< (buffer-name (marker-buffer a))
  9053. (buffer-name (marker-buffer b))))))))
  9054. ;; Now loop over all markers and apply cmd
  9055. (while (setq e (pop entries))
  9056. (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
  9057. (if (not pos)
  9058. (progn (message "Skipping removed entry at %s" e)
  9059. (setq cntskip (1+ cntskip)))
  9060. (goto-char pos)
  9061. (let (org-loop-over-headlines-in-active-region)
  9062. (eval cmd))
  9063. (setq cnt (1+ cnt))))
  9064. (when redo-at-end (org-agenda-redo))
  9065. (unless org-agenda-persistent-marks
  9066. (org-agenda-bulk-unmark-all))
  9067. (message "Acted on %d entries%s%s"
  9068. cnt
  9069. (if (= cntskip 0)
  9070. ""
  9071. (format ", skipped %d (disappeared before their turn)"
  9072. cntskip))
  9073. (if (not org-agenda-persistent-marks)
  9074. "" " (kept marked)"))))))
  9075. (defun org-agenda-capture (&optional with-time)
  9076. "Call `org-capture' with the date at point.
  9077. With a `C-1' prefix, use the HH:MM value at point (if any) or the
  9078. current HH:MM time."
  9079. (interactive "P")
  9080. (if (not (eq major-mode 'org-agenda-mode))
  9081. (user-error "You cannot do this outside of agenda buffers")
  9082. (let ((org-overriding-default-time
  9083. (org-get-cursor-date (equal with-time 1))))
  9084. (call-interactively 'org-capture))))
  9085. ;;; Flagging notes
  9086. (defun org-agenda-show-the-flagging-note ()
  9087. "Display the flagging note in the other window.
  9088. When called a second time in direct sequence, offer to remove the FLAGGING
  9089. tag and (if present) the flagging note."
  9090. (interactive)
  9091. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  9092. (win (selected-window))
  9093. note heading newhead)
  9094. (unless hdmarker
  9095. (error "No linked entry at point"))
  9096. (if (and (eq this-command last-command)
  9097. (y-or-n-p "Unflag and remove any flagging note? "))
  9098. (progn
  9099. (org-agenda-remove-flag hdmarker)
  9100. (let ((win (get-buffer-window "*Flagging Note*")))
  9101. (and win (delete-window win)))
  9102. (message "Entry unflagged"))
  9103. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  9104. (unless note
  9105. (error "No flagging note"))
  9106. (org-kill-new note)
  9107. (org-switch-to-buffer-other-window "*Flagging Note*")
  9108. (erase-buffer)
  9109. (insert note)
  9110. (goto-char (point-min))
  9111. (while (re-search-forward "\\\\n" nil t)
  9112. (replace-match "\n" t t))
  9113. (goto-char (point-min))
  9114. (select-window win)
  9115. (message "Flagging note pushed to kill ring. Press [?] again to remove tag and note"))))
  9116. (defun org-agenda-remove-flag (marker)
  9117. "Remove the FLAGGED tag and any flagging note in the entry."
  9118. (let (newhead)
  9119. (org-with-point-at marker
  9120. (org-toggle-tag "FLAGGED" 'off)
  9121. (org-entry-delete nil "THEFLAGGINGNOTE")
  9122. (setq newhead (org-get-heading)))
  9123. (org-agenda-change-all-lines newhead marker)
  9124. (message "Entry unflagged")))
  9125. (defun org-agenda-get-any-marker (&optional pos)
  9126. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  9127. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  9128. ;;; Appointment reminders
  9129. (defvar appt-time-msg-list) ; defined in appt.el
  9130. ;;;###autoload
  9131. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  9132. "Activate appointments found in `org-agenda-files'.
  9133. With a \\[universal-argument] prefix, refresh the list of
  9134. appointments.
  9135. If FILTER is t, interactively prompt the user for a regular
  9136. expression, and filter out entries that don't match it.
  9137. If FILTER is a string, use this string as a regular expression
  9138. for filtering entries out.
  9139. If FILTER is a function, filter out entries against which
  9140. calling the function returns nil. This function takes one
  9141. argument: an entry from `org-agenda-get-day-entries'.
  9142. FILTER can also be an alist with the car of each cell being
  9143. either 'headline or 'category. For example:
  9144. '((headline \"IMPORTANT\")
  9145. (category \"Work\"))
  9146. will only add headlines containing IMPORTANT or headlines
  9147. belonging to the \"Work\" category.
  9148. ARGS are symbols indicating what kind of entries to consider.
  9149. By default `org-agenda-to-appt' will use :deadline, :scheduled
  9150. and :timestamp entries. See the docstring of `org-diary' for
  9151. details and examples.
  9152. If an entry as a APPT_WARNTIME property, its value will be used
  9153. to override `appt-message-warning-time'."
  9154. (interactive "P")
  9155. (if refresh (setq appt-time-msg-list nil))
  9156. (if (eq filter t)
  9157. (setq filter (read-from-minibuffer "Regexp filter: ")))
  9158. (let* ((cnt 0) ; count added events
  9159. (scope (or args '(:deadline :scheduled :timestamp)))
  9160. (org-agenda-new-buffers nil)
  9161. (org-deadline-warning-days 0)
  9162. ;; Do not use `org-today' here because appt only takes
  9163. ;; time and without date as argument, so it may pass wrong
  9164. ;; information otherwise
  9165. (today (org-date-to-gregorian
  9166. (time-to-days (current-time))))
  9167. (org-agenda-restrict nil)
  9168. (files (org-agenda-files 'unrestricted)) entries file
  9169. (org-agenda-buffer nil))
  9170. ;; Get all entries which may contain an appt
  9171. (org-agenda-prepare-buffers files)
  9172. (while (setq file (pop files))
  9173. (setq entries
  9174. (delq nil
  9175. (append entries
  9176. (apply 'org-agenda-get-day-entries
  9177. file today scope)))))
  9178. ;; Map thru entries and find if we should filter them out
  9179. (mapc
  9180. (lambda(x)
  9181. (let* ((evt (org-trim (or (get-text-property 1 'txt x) "")))
  9182. (cat (get-text-property 1 'org-category x))
  9183. (tod (get-text-property 1 'time-of-day x))
  9184. (ok (or (null filter)
  9185. (and (stringp filter) (string-match filter evt))
  9186. (and (functionp filter) (funcall filter x))
  9187. (and (listp filter)
  9188. (let ((cat-filter (cadr (assoc 'category filter)))
  9189. (evt-filter (cadr (assoc 'headline filter))))
  9190. (or (and (stringp cat-filter)
  9191. (string-match cat-filter cat))
  9192. (and (stringp evt-filter)
  9193. (string-match evt-filter evt)))))))
  9194. (wrn (get-text-property 1 'warntime x)))
  9195. ;; FIXME: Shall we remove text-properties for the appt text?
  9196. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  9197. (when (and ok tod)
  9198. (setq tod (concat "00" (number-to-string tod))
  9199. tod (when (string-match
  9200. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  9201. (concat (match-string 1 tod) ":"
  9202. (match-string 2 tod))))
  9203. (if (version< emacs-version "23.3")
  9204. (appt-add tod evt)
  9205. (appt-add tod evt wrn))
  9206. (setq cnt (1+ cnt))))) entries)
  9207. (org-release-buffers org-agenda-new-buffers)
  9208. (if (eq cnt 0)
  9209. (message "No event to add")
  9210. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  9211. (autoload 'org-agenda-to-appt "org-agenda" "\
  9212. Activate appointments found in `org-agenda-files'.
  9213. With a \\[universal-argument] prefix, refresh the list of
  9214. appointments.
  9215. If FILTER is t, interactively prompt the user for a regular
  9216. expression, and filter out entries that don't match it.
  9217. If FILTER is a string, use this string as a regular expression
  9218. for filtering entries out.
  9219. If FILTER is a function, filter out entries against which
  9220. calling the function returns nil. This function takes one
  9221. argument: an entry from `org-agenda-get-day-entries'.
  9222. FILTER can also be an alist with the car of each cell being
  9223. either 'headline or 'category. For example:
  9224. '((headline \"IMPORTANT\")
  9225. (category \"Work\"))
  9226. will only add headlines containing IMPORTANT or headlines
  9227. belonging to the \"Work\" category.
  9228. ARGS are symbols indicating what kind of entries to consider.
  9229. By default `org-agenda-to-appt' will use :deadline, :scheduled
  9230. and :timestamp entries. See the docstring of `org-diary' for
  9231. details and examples.
  9232. If an entry as a APPT_WARNTIME property, its value will be used
  9233. to override `appt-message-warning-time'.
  9234. \(fn &optional REFRESH FILTER &rest ARGS)" t nil)
  9235. (defun org-agenda-todayp (date)
  9236. "Does DATE mean today, when considering `org-extend-today-until'?"
  9237. (let ((today (org-today))
  9238. (date (if (and date (listp date)) (calendar-absolute-from-gregorian date)
  9239. date)))
  9240. (eq date today)))
  9241. (defun org-agenda-todo-yesterday (&optional arg)
  9242. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  9243. (interactive "P")
  9244. (let* ((hour (third (decode-time
  9245. (org-current-time))))
  9246. (org-extend-today-until (1+ hour)))
  9247. (org-agenda-todo arg)))
  9248. (provide 'org-agenda)
  9249. ;;; org-agenda.el ends here