org-agenda.el 354 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221
  1. ;;; org-agenda.el --- Dynamic task and appointment lists for Org
  2. ;; Copyright (C) 2004-2012 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 nil)
  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 temporary buffer before writing it to an export file.
  144. A useful function 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 it is by 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 ""
  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. However,
  200. <style>...</style> is required, if not present the variable will be ignored."
  201. :group 'org-agenda-export
  202. :group 'org-export-html
  203. :type 'string)
  204. (defcustom org-agenda-persistent-filter nil
  205. "When set, keep filters from one agenda view to the next."
  206. :group 'org-agenda
  207. :type 'boolean)
  208. (defgroup org-agenda-custom-commands nil
  209. "Options concerning agenda views in Org-mode."
  210. :tag "Org Agenda Custom Commands"
  211. :group 'org-agenda)
  212. (defconst org-sorting-choice
  213. '(choice
  214. (const time-up) (const time-down)
  215. (const category-keep) (const category-up) (const category-down)
  216. (const tag-down) (const tag-up)
  217. (const priority-up) (const priority-down)
  218. (const todo-state-up) (const todo-state-down)
  219. (const effort-up) (const effort-down)
  220. (const habit-up) (const habit-down)
  221. (const alpha-up) (const alpha-down)
  222. (const user-defined-up) (const user-defined-down))
  223. "Sorting choices.")
  224. ;; Keep custom values for `org-agenda-filter-preset' compatible with
  225. ;; the new variable `org-agenda-tag-filter-preset'.
  226. (if (fboundp 'defvaralias)
  227. (defvaralias 'org-agenda-filter-preset 'org-agenda-tag-filter-preset)
  228. (defvaralias 'org-agenda-filter 'org-agenda-tag-filter))
  229. (defconst org-agenda-custom-commands-local-options
  230. `(repeat :tag "Local settings for this command. Remember to quote values"
  231. (choice :tag "Setting"
  232. (list :tag "Heading for this block"
  233. (const org-agenda-overriding-header)
  234. (string :tag "Headline"))
  235. (list :tag "Files to be searched"
  236. (const org-agenda-files)
  237. (list
  238. (const :format "" quote)
  239. (repeat (file))))
  240. (list :tag "Sorting strategy"
  241. (const org-agenda-sorting-strategy)
  242. (list
  243. (const :format "" quote)
  244. (repeat
  245. ,org-sorting-choice)))
  246. (list :tag "Prefix format"
  247. (const org-agenda-prefix-format :value " %-12:c%?-12t% s")
  248. (string))
  249. (list :tag "Number of days in agenda"
  250. (const org-agenda-span)
  251. (choice (const :tag "Day" 'day)
  252. (const :tag "Week" 'week)
  253. (const :tag "Month" 'month)
  254. (const :tag "Year" 'year)
  255. (integer :tag "Custom")))
  256. (list :tag "Fixed starting date"
  257. (const org-agenda-start-day)
  258. (string :value "2007-11-01"))
  259. (list :tag "Start on day of week"
  260. (const org-agenda-start-on-weekday)
  261. (choice :value 1
  262. (const :tag "Today" nil)
  263. (integer :tag "Weekday No.")))
  264. (list :tag "Include data from diary"
  265. (const org-agenda-include-diary)
  266. (boolean))
  267. (list :tag "Deadline Warning days"
  268. (const org-deadline-warning-days)
  269. (integer :value 1))
  270. (list :tag "Category filter preset"
  271. (const org-agenda-category-filter-preset)
  272. (list
  273. (const :format "" quote)
  274. (repeat
  275. (string :tag "+category or -category"))))
  276. (list :tag "Tags filter preset"
  277. (const org-agenda-tag-filter-preset)
  278. (list
  279. (const :format "" quote)
  280. (repeat
  281. (string :tag "+tag or -tag"))))
  282. (list :tag "Set daily/weekly entry types"
  283. (const org-agenda-entry-types)
  284. (list
  285. (const :format "" quote)
  286. (set :greedy t :value (:deadline :scheduled :timestamp :sexp)
  287. (const :deadline)
  288. (const :scheduled)
  289. (const :timestamp)
  290. (const :sexp))))
  291. (list :tag "Standard skipping condition"
  292. :value (org-agenda-skip-function '(org-agenda-skip-entry-if))
  293. (const org-agenda-skip-function)
  294. (list
  295. (const :format "" quote)
  296. (list
  297. (choice
  298. :tag "Skipping range"
  299. (const :tag "Skip entry" org-agenda-skip-entry-if)
  300. (const :tag "Skip subtree" org-agenda-skip-subtree-if))
  301. (repeat :inline t :tag "Conditions for skipping"
  302. (choice
  303. :tag "Condition type"
  304. (list :tag "Regexp matches" :inline t (const :format "" 'regexp) (regexp))
  305. (list :tag "Regexp does not match" :inline t (const :format "" 'notregexp) (regexp))
  306. (list :tag "TODO state is" :inline t
  307. (const 'todo)
  308. (choice
  309. (const :tag "any not-done state" 'todo)
  310. (const :tag "any done state" 'done)
  311. (const :tag "any state" 'any)
  312. (list :tag "Keyword list"
  313. (const :format "" quote)
  314. (repeat (string :tag "Keyword")))))
  315. (list :tag "TODO state is not" :inline t
  316. (const 'nottodo)
  317. (choice
  318. (const :tag "any not-done state" 'todo)
  319. (const :tag "any done state" 'done)
  320. (const :tag "any state" 'any)
  321. (list :tag "Keyword list"
  322. (const :format "" quote)
  323. (repeat (string :tag "Keyword")))))
  324. (const :tag "scheduled" 'scheduled)
  325. (const :tag "not scheduled" 'notscheduled)
  326. (const :tag "deadline" 'deadline)
  327. (const :tag "no deadline" 'notdeadline)
  328. (const :tag "timestamp" 'timestamp)
  329. (const :tag "no timestamp" 'nottimestamp))))))
  330. (list :tag "Non-standard skipping condition"
  331. :value (org-agenda-skip-function)
  332. (const org-agenda-skip-function)
  333. (sexp :tag "Function or form (quoted!)"))
  334. (list :tag "Any variable"
  335. (variable :tag "Variable")
  336. (sexp :tag "Value (sexp)"))))
  337. "Selection of examples for agenda command settings.
  338. This will be spliced into the custom type of
  339. `org-agenda-custom-commands'.")
  340. (defcustom org-agenda-custom-commands '(("n" "Agenda and all TODO's"
  341. ((agenda "") (alltodo))))
  342. "Custom commands for the agenda.
  343. These commands will be offered on the splash screen displayed by the
  344. agenda dispatcher \\[org-agenda]. Each entry is a list like this:
  345. (key desc type match settings files)
  346. key The key (one or more characters as a string) to be associated
  347. with the command.
  348. desc A description of the command, when omitted or nil, a default
  349. description is built using MATCH.
  350. type The command type, any of the following symbols:
  351. agenda The daily/weekly agenda.
  352. todo Entries with a specific TODO keyword, in all agenda files.
  353. search Entries containing search words entry or headline.
  354. tags Tags/Property/TODO match in all agenda files.
  355. tags-todo Tags/P/T match in all agenda files, TODO entries only.
  356. todo-tree Sparse tree of specific TODO keyword in *current* file.
  357. tags-tree Sparse tree with all tags matches in *current* file.
  358. occur-tree Occur sparse tree for *current* file.
  359. ... A user-defined function.
  360. match What to search for:
  361. - a single keyword for TODO keyword searches
  362. - a tags match expression for tags searches
  363. - a word search expression for text searches.
  364. - a regular expression for occur searches
  365. For all other commands, this should be the empty string.
  366. settings A list of option settings, similar to that in a let form, so like
  367. this: ((opt1 val1) (opt2 val2) ...). The values will be
  368. evaluated at the moment of execution, so quote them when needed.
  369. files A list of files file to write the produced agenda buffer to
  370. with the command `org-store-agenda-views'.
  371. If a file name ends in \".html\", an HTML version of the buffer
  372. is written out. If it ends in \".ps\", a postscript version is
  373. produced. Otherwise, only the plain text is written to the file.
  374. You can also define a set of commands, to create a composite agenda buffer.
  375. In this case, an entry looks like this:
  376. (key desc (cmd1 cmd2 ...) general-settings-for-whole-set files)
  377. where
  378. desc A description string to be displayed in the dispatcher menu.
  379. cmd An agenda command, similar to the above. However, tree commands
  380. are not allowed, but instead you can get agenda and global todo list.
  381. So valid commands for a set are:
  382. (agenda \"\" settings)
  383. (alltodo \"\" settings)
  384. (stuck \"\" settings)
  385. (todo \"match\" settings files)
  386. (search \"match\" settings files)
  387. (tags \"match\" settings files)
  388. (tags-todo \"match\" settings files)
  389. Each command can carry a list of options, and another set of options can be
  390. given for the whole set of commands. Individual command options take
  391. precedence over the general options.
  392. When using several characters as key to a command, the first characters
  393. are prefix commands. For the dispatcher to display useful information, you
  394. should provide a description for the prefix, like
  395. (setq org-agenda-custom-commands
  396. '((\"h\" . \"HOME + Name tag searches\") ; describe prefix \"h\"
  397. (\"hl\" tags \"+HOME+Lisa\")
  398. (\"hp\" tags \"+HOME+Peter\")
  399. (\"hk\" tags \"+HOME+Kim\")))"
  400. :group 'org-agenda-custom-commands
  401. :type `(repeat
  402. (choice :value ("x" "Describe command here" tags "" nil)
  403. (list :tag "Single command"
  404. (string :tag "Access Key(s) ")
  405. (option (string :tag "Description"))
  406. (choice
  407. (const :tag "Agenda" agenda)
  408. (const :tag "TODO list" alltodo)
  409. (const :tag "Search words" search)
  410. (const :tag "Stuck projects" stuck)
  411. (const :tag "Tags/Property match (all agenda files)" tags)
  412. (const :tag "Tags/Property match of TODO entries (all agenda files)" tags-todo)
  413. (const :tag "TODO keyword search (all agenda files)" todo)
  414. (const :tag "Tags sparse tree (current buffer)" tags-tree)
  415. (const :tag "TODO keyword tree (current buffer)" todo-tree)
  416. (const :tag "Occur tree (current buffer)" occur-tree)
  417. (sexp :tag "Other, user-defined function"))
  418. (string :tag "Match (only for some commands)")
  419. ,org-agenda-custom-commands-local-options
  420. (option (repeat :tag "Export" (file :tag "Export to"))))
  421. (list :tag "Command series, all agenda files"
  422. (string :tag "Access Key(s)")
  423. (string :tag "Description ")
  424. (repeat :tag "Component"
  425. (choice
  426. (list :tag "Agenda"
  427. (const :format "" agenda)
  428. (const :tag "" :format "" "")
  429. ,org-agenda-custom-commands-local-options)
  430. (list :tag "TODO list (all keywords)"
  431. (const :format "" alltodo)
  432. (const :tag "" :format "" "")
  433. ,org-agenda-custom-commands-local-options)
  434. (list :tag "Search words"
  435. (const :format "" search)
  436. (string :tag "Match")
  437. ,org-agenda-custom-commands-local-options)
  438. (list :tag "Stuck projects"
  439. (const :format "" stuck)
  440. (const :tag "" :format "" "")
  441. ,org-agenda-custom-commands-local-options)
  442. (list :tag "Tags search"
  443. (const :format "" tags)
  444. (string :tag "Match")
  445. ,org-agenda-custom-commands-local-options)
  446. (list :tag "Tags search, TODO entries only"
  447. (const :format "" tags-todo)
  448. (string :tag "Match")
  449. ,org-agenda-custom-commands-local-options)
  450. (list :tag "TODO keyword search"
  451. (const :format "" todo)
  452. (string :tag "Match")
  453. ,org-agenda-custom-commands-local-options)
  454. (list :tag "Other, user-defined function"
  455. (symbol :tag "function")
  456. (string :tag "Match")
  457. ,org-agenda-custom-commands-local-options)))
  458. (repeat :tag "Settings for entire command set"
  459. (list (variable :tag "Any variable")
  460. (sexp :tag "Value")))
  461. (option (repeat :tag "Export" (file :tag "Export to"))))
  462. (cons :tag "Prefix key documentation"
  463. (string :tag "Access Key(s)")
  464. (string :tag "Description ")))))
  465. (defcustom org-agenda-query-register ?o
  466. "The register holding the current query string.
  467. The purpose of this is that if you construct a query string interactively,
  468. you can then use it to define a custom command."
  469. :group 'org-agenda-custom-commands
  470. :type 'character)
  471. (defcustom org-stuck-projects
  472. '("+LEVEL=2/-DONE" ("TODO" "NEXT" "NEXTACTION") nil "")
  473. "How to identify stuck projects.
  474. This is a list of four items:
  475. 1. A tags/todo/property matcher string that is used to identify a project.
  476. See the manual for a description of tag and property searches.
  477. The entire tree below a headline matched by this is considered one project.
  478. 2. A list of TODO keywords identifying non-stuck projects.
  479. If the project subtree contains any headline with one of these todo
  480. keywords, the project is considered to be not stuck. If you specify
  481. \"*\" as a keyword, any TODO keyword will mark the project unstuck.
  482. 3. A list of tags identifying non-stuck projects.
  483. If the project subtree contains any headline with one of these tags,
  484. the project is considered to be not stuck. If you specify \"*\" as
  485. a tag, any tag will mark the project unstuck. Note that this is about
  486. the explicit presence of a tag somewhere in the subtree, inherited
  487. tags to not count here. If inherited tags make a project not stuck,
  488. use \"-TAG\" in the tags part of the matcher under (1.) above.
  489. 4. An arbitrary regular expression matching non-stuck projects.
  490. If the project turns out to be not stuck, search continues also in the
  491. subtree to see if any of the subtasks have project status.
  492. See also the variable `org-tags-match-list-sublevels' which applies
  493. to projects matched by this search as well.
  494. After defining this variable, you may use \\[org-agenda-list-stuck-projects]
  495. or `C-c a #' to produce the list."
  496. :group 'org-agenda-custom-commands
  497. :type '(list
  498. (string :tag "Tags/TODO match to identify a project")
  499. (repeat :tag "Projects are *not* stuck if they have an entry with TODO keyword any of" (string))
  500. (repeat :tag "Projects are *not* stuck if they have an entry with TAG being any of" (string))
  501. (regexp :tag "Projects are *not* stuck if this regexp matches inside the subtree")))
  502. (defcustom org-agenda-filter-effort-default-operator "<"
  503. "The default operator for effort estimate filtering.
  504. If you select an effort estimate limit without first pressing an operator,
  505. this one will be used."
  506. :group 'org-agenda-custom-commands
  507. :type '(choice (const :tag "less or equal" "<")
  508. (const :tag "greater or equal"">")
  509. (const :tag "equal" "=")))
  510. (defgroup org-agenda-skip nil
  511. "Options concerning skipping parts of agenda files."
  512. :tag "Org Agenda Skip"
  513. :group 'org-agenda)
  514. (defcustom org-agenda-skip-function-global nil
  515. "Function to be called at each match during agenda construction.
  516. If this function returns nil, the current match should not be skipped.
  517. If the function decided to skip an agenda match, is must return the
  518. buffer position from which the search should be continued.
  519. This may also be a Lisp form, which will be evaluated.
  520. This variable will be applied to every agenda match, including
  521. tags/property searches and TODO lists. So try to make the test function
  522. do its checking as efficiently as possible. To implement a skipping
  523. condition just for specific agenda commands, use the variable
  524. `org-agenda-skip-function' which can be set in the options section
  525. of custom agenda commands."
  526. :group 'org-agenda-skip
  527. :type 'sexp)
  528. (defgroup org-agenda-daily/weekly nil
  529. "Options concerning the daily/weekly agenda."
  530. :tag "Org Agenda Daily/Weekly"
  531. :group 'org-agenda)
  532. (defgroup org-agenda-todo-list nil
  533. "Options concerning the global todo list agenda view."
  534. :tag "Org Agenda Todo List"
  535. :group 'org-agenda)
  536. (defgroup org-agenda-match-view nil
  537. "Options concerning the general tags/property/todo match agenda view."
  538. :tag "Org Agenda Match View"
  539. :group 'org-agenda)
  540. (defgroup org-agenda-search-view nil
  541. "Options concerning the general tags/property/todo match agenda view."
  542. :tag "Org Agenda Match View"
  543. :group 'org-agenda)
  544. (defvar org-agenda-archives-mode nil
  545. "Non-nil means the agenda will include archived items.
  546. If this is the symbol `trees', trees in the selected agenda scope
  547. that are marked with the ARCHIVE tag will be included anyway. When this is
  548. t, also all archive files associated with the current selection of agenda
  549. files will be included.")
  550. (defcustom org-agenda-skip-comment-trees t
  551. "Non-nil means skip trees that start with the COMMENT keyword.
  552. When nil, these trees are also scanned by agenda commands."
  553. :group 'org-agenda-skip
  554. :type 'boolean)
  555. (defcustom org-agenda-todo-list-sublevels t
  556. "Non-nil means check also the sublevels of a TODO entry for TODO entries.
  557. When nil, the sublevels of a TODO entry are not checked, resulting in
  558. potentially much shorter TODO lists."
  559. :group 'org-agenda-skip
  560. :group 'org-agenda-todo-list
  561. :type 'boolean)
  562. (defcustom org-agenda-todo-ignore-with-date nil
  563. "Non-nil means don't show entries with a date in the global todo list.
  564. You can use this if you prefer to mark mere appointments with a TODO keyword,
  565. but don't want them to show up in the TODO list.
  566. When this is set, it also covers deadlines and scheduled items, the settings
  567. of `org-agenda-todo-ignore-scheduled' and `org-agenda-todo-ignore-deadlines'
  568. will be ignored.
  569. See also the variable `org-agenda-tags-todo-honor-ignore-options'."
  570. :group 'org-agenda-skip
  571. :group 'org-agenda-todo-list
  572. :type 'boolean)
  573. (defcustom org-agenda-todo-ignore-timestamp nil
  574. "Non-nil means don't show entries with a timestamp.
  575. This applies when creating the global todo list.
  576. Valid values are:
  577. past Don't show entries for today or in the past.
  578. future Don't show entries with a timestamp in the future.
  579. The idea behind this is that if it has a future
  580. timestamp, you don't want to think about it until the
  581. date.
  582. all Don't show any entries with a timestamp in the global todo list.
  583. The idea behind this is that by setting a timestamp, you
  584. have already \"taken care\" of this item.
  585. This variable can also have an integer as a value. If positive (N),
  586. todos with a timestamp N or more days in the future will be ignored. If
  587. negative (-N), todos with a timestamp N or more days in the past will be
  588. ignored. If 0, todos with a timestamp either today or in the future will
  589. be ignored. For example, a value of -1 will exclude todos with a
  590. timestamp in the past (yesterday or earlier), while a value of 7 will
  591. exclude todos with a timestamp a week or more in the future.
  592. See also `org-agenda-todo-ignore-with-date'.
  593. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  594. to make his option also apply to the tags-todo list."
  595. :group 'org-agenda-skip
  596. :group 'org-agenda-todo-list
  597. :version "24.1"
  598. :type '(choice
  599. (const :tag "Ignore future timestamp todos" future)
  600. (const :tag "Ignore past or present timestamp todos" past)
  601. (const :tag "Ignore all timestamp todos" all)
  602. (const :tag "Show timestamp todos" nil)
  603. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  604. (defcustom org-agenda-todo-ignore-scheduled nil
  605. "Non-nil means, ignore some scheduled TODO items when making TODO list.
  606. This applies when creating the global todo list.
  607. Valid values are:
  608. past Don't show entries scheduled today or in the past.
  609. future Don't show entries scheduled in the future.
  610. The idea behind this is that by scheduling it, you don't want to
  611. think about it until the scheduled date.
  612. all Don't show any scheduled entries in the global todo list.
  613. The idea behind this is that by scheduling it, you have already
  614. \"taken care\" of this item.
  615. t Same as `all', for backward compatibility.
  616. This variable can also have an integer as a value. See
  617. `org-agenda-todo-ignore-timestamp' for more details.
  618. See also `org-agenda-todo-ignore-with-date'.
  619. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  620. to make his option also apply to the tags-todo list."
  621. :group 'org-agenda-skip
  622. :group 'org-agenda-todo-list
  623. :type '(choice
  624. (const :tag "Ignore future-scheduled todos" future)
  625. (const :tag "Ignore past- or present-scheduled todos" past)
  626. (const :tag "Ignore all scheduled todos" all)
  627. (const :tag "Ignore all scheduled todos (compatibility)" t)
  628. (const :tag "Show scheduled todos" nil)
  629. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  630. (defcustom org-agenda-todo-ignore-deadlines nil
  631. "Non-nil means ignore some deadlined TODO items when making TODO list.
  632. There are different motivations for using different values, please think
  633. carefully when configuring this variable.
  634. This applies when creating the global todo list.
  635. Valid values are:
  636. near Don't show near deadline entries. A deadline is near when it is
  637. closer than `org-deadline-warning-days' days. The idea behind this
  638. is that such items will appear in the agenda anyway.
  639. far Don't show TODO entries where a deadline has been defined, but
  640. the deadline is not near. This is useful if you don't want to
  641. use the todo list to figure out what to do now.
  642. past Don't show entries with a deadline timestamp for today or in the past.
  643. future Don't show entries with a deadline timestamp in the future, not even
  644. when they become `near' ones. Use it with caution.
  645. all Ignore all TODO entries that do have a deadline.
  646. t Same as `near', for backward compatibility.
  647. This variable can also have an integer as a value. See
  648. `org-agenda-todo-ignore-timestamp' for more details.
  649. See also `org-agenda-todo-ignore-with-date'.
  650. See also the variable `org-agenda-tags-todo-honor-ignore-options' if you want
  651. to make his option also apply to the tags-todo list."
  652. :group 'org-agenda-skip
  653. :group 'org-agenda-todo-list
  654. :type '(choice
  655. (const :tag "Ignore near deadlines" near)
  656. (const :tag "Ignore near deadlines (compatibility)" t)
  657. (const :tag "Ignore far deadlines" far)
  658. (const :tag "Ignore all TODOs with a deadlines" all)
  659. (const :tag "Show all TODOs, even if they have a deadline" nil)
  660. (integer :tag "Ignore if N or more days in past(-) or future(+).")))
  661. (defcustom org-agenda-tags-todo-honor-ignore-options nil
  662. "Non-nil means honor todo-list ...ignore options also in tags-todo search.
  663. The variables
  664. `org-agenda-todo-ignore-with-date',
  665. `org-agenda-todo-ignore-timestamp',
  666. `org-agenda-todo-ignore-scheduled',
  667. `org-agenda-todo-ignore-deadlines'
  668. make the global TODO list skip entries that have time stamps of certain
  669. kinds. If this option is set, the same options will also apply for the
  670. tags-todo search, which is the general tags/property matcher
  671. restricted to unfinished TODO entries only."
  672. :group 'org-agenda-skip
  673. :group 'org-agenda-todo-list
  674. :group 'org-agenda-match-view
  675. :type 'boolean)
  676. (defcustom org-agenda-skip-scheduled-if-done nil
  677. "Non-nil means don't show scheduled items in agenda when they are done.
  678. This is relevant for the daily/weekly agenda, not for the TODO list. And
  679. it applies only to the actual date of the scheduling. Warnings about
  680. an item with a past scheduling dates are always turned off when the item
  681. is DONE."
  682. :group 'org-agenda-skip
  683. :group 'org-agenda-daily/weekly
  684. :type 'boolean)
  685. (defcustom org-agenda-skip-scheduled-if-deadline-is-shown nil
  686. "Non-nil means skip scheduling line if same entry shows because of deadline.
  687. In the agenda of today, an entry can show up multiple times because
  688. it is both scheduled and has a nearby deadline, and maybe a plain time
  689. stamp as well.
  690. When this variable is t, then only the deadline is shown and the fact that
  691. the entry is scheduled today or was scheduled previously is not shown.
  692. When this variable is nil, the entry will be shown several times. When
  693. the variable is the symbol `not-today', then skip scheduled previously,
  694. but not scheduled today."
  695. :group 'org-agenda-skip
  696. :group 'org-agenda-daily/weekly
  697. :type '(choice
  698. (const :tag "Never" nil)
  699. (const :tag "Always" t)
  700. (const :tag "Not when scheduled today" not-today)))
  701. (defcustom org-agenda-skip-timestamp-if-deadline-is-shown nil
  702. "Non-nil means skip timestamp line if same entry shows because of deadline.
  703. In the agenda of today, an entry can show up multiple times
  704. because it has both a plain timestamp and has a nearby deadline.
  705. When this variable is t, then only the deadline is shown and the
  706. fact that the entry has a timestamp for or including today is not
  707. shown. When this variable is nil, the entry will be shown
  708. several times."
  709. :group 'org-agenda-skip
  710. :group 'org-agenda-daily/weekly
  711. :version "24.1"
  712. :type '(choice
  713. (const :tag "Never" nil)
  714. (const :tag "Always" t)))
  715. (defcustom org-agenda-skip-deadline-if-done nil
  716. "Non-nil means don't show deadlines when the corresponding item is done.
  717. When nil, the deadline is still shown and should give you a happy feeling.
  718. This is relevant for the daily/weekly agenda. And it applied only to the
  719. actually date of the deadline. Warnings about approaching and past-due
  720. deadlines are always turned off when the item is DONE."
  721. :group 'org-agenda-skip
  722. :group 'org-agenda-daily/weekly
  723. :type 'boolean)
  724. (defcustom org-agenda-skip-deadline-prewarning-if-scheduled nil
  725. "Non-nil means skip deadline prewarning when entry is also scheduled.
  726. This will apply on all days where a prewarning for the deadline would
  727. be shown, but not at the day when the entry is actually due. On that day,
  728. the deadline will be shown anyway.
  729. This variable may be set to nil, t, or a number which will then give
  730. the number of days before the actual deadline when the prewarnings
  731. should resume.
  732. This can be used in a workflow where the first showing of the deadline will
  733. trigger you to schedule it, and then you don't want to be reminded of it
  734. because you will take care of it on the day when scheduled."
  735. :group 'org-agenda-skip
  736. :group 'org-agenda-daily/weekly
  737. :version "24.1"
  738. :type '(choice
  739. (const :tag "Alwas show prewarning" nil)
  740. (const :tag "Remove prewarning if entry is scheduled" t)
  741. (integer :tag "Restart prewarning N days before deadline")))
  742. (defcustom org-agenda-skip-additional-timestamps-same-entry nil
  743. "When nil, multiple same-day timestamps in entry make multiple agenda lines.
  744. When non-nil, after the search for timestamps has matched once in an
  745. entry, the rest of the entry will not be searched."
  746. :group 'org-agenda-skip
  747. :type 'boolean)
  748. (defcustom org-agenda-skip-timestamp-if-done nil
  749. "Non-nil means don't select item by timestamp or -range if it is DONE."
  750. :group 'org-agenda-skip
  751. :group 'org-agenda-daily/weekly
  752. :type 'boolean)
  753. (defcustom org-agenda-dim-blocked-tasks t
  754. "Non-nil means dim blocked tasks in the agenda display.
  755. This causes some overhead during agenda construction, but if you
  756. have turned on `org-enforce-todo-dependencies',
  757. `org-enforce-todo-checkbox-dependencies', or any other blocking
  758. mechanism, this will create useful feedback in the agenda.
  759. Instead of t, this variable can also have the value `invisible'.
  760. Then blocked tasks will be invisible and only become visible when
  761. they become unblocked. An exemption to this behavior is when a task is
  762. blocked because of unchecked checkboxes below it. Since checkboxes do
  763. not show up in the agenda views, making this task invisible you remove any
  764. trace from agenda views that there is something to do. Therefore, a task
  765. that is blocked because of checkboxes will never be made invisible, it
  766. will only be dimmed."
  767. :group 'org-agenda-daily/weekly
  768. :group 'org-agenda-todo-list
  769. :type '(choice
  770. (const :tag "Do not dim" nil)
  771. (const :tag "Dim to a gray face" t)
  772. (const :tag "Make invisible" invisible)))
  773. (defcustom org-timeline-show-empty-dates 3
  774. "Non-nil means `org-timeline' also shows dates without an entry.
  775. When nil, only the days which actually have entries are shown.
  776. When t, all days between the first and the last date are shown.
  777. When an integer, show also empty dates, but if there is a gap of more than
  778. N days, just insert a special line indicating the size of the gap."
  779. :group 'org-agenda-skip
  780. :type '(choice
  781. (const :tag "None" nil)
  782. (const :tag "All" t)
  783. (integer :tag "at most")))
  784. (defgroup org-agenda-startup nil
  785. "Options concerning initial settings in the Agenda in Org Mode."
  786. :tag "Org Agenda Startup"
  787. :group 'org-agenda)
  788. (defcustom org-agenda-menu-show-matcher t
  789. "Non-nil means show the match string in the agenda dispatcher menu.
  790. When nil, the matcher string is not shown, but is put into the help-echo
  791. property so than moving the mouse over the command shows it.
  792. Setting it to nil is good if matcher strings are very long and/or if
  793. you want to use two-columns display (see `org-agenda-menu-two-columns')."
  794. :group 'org-agenda
  795. :version "24.1"
  796. :type 'boolean)
  797. (make-obsolete-variable 'org-agenda-menu-two-column 'org-agenda-menu-two-columns "24.3")
  798. (defcustom org-agenda-menu-two-columns nil
  799. "Non-nil means, use two columns to show custom commands in the dispatcher.
  800. If you use this, you probably want to set `org-agenda-menu-show-matcher'
  801. to nil."
  802. :group 'org-agenda
  803. :version "24.1"
  804. :type 'boolean)
  805. (make-obsolete-variable 'org-finalize-agenda-hook 'org-agenda-finalize-hook "24.3")
  806. (defcustom org-agenda-finalize-hook nil
  807. "Hook run just before displaying an agenda buffer."
  808. :group 'org-agenda-startup
  809. :type 'hook)
  810. (defcustom org-agenda-mouse-1-follows-link nil
  811. "Non-nil means mouse-1 on a link will follow the link in the agenda.
  812. A longer mouse click will still set point. Does not work on XEmacs.
  813. Needs to be set before org.el is loaded."
  814. :group 'org-agenda-startup
  815. :type 'boolean)
  816. (defcustom org-agenda-start-with-follow-mode nil
  817. "The initial value of follow mode in a newly created agenda window."
  818. :group 'org-agenda-startup
  819. :type 'boolean)
  820. (defcustom org-agenda-follow-indirect nil
  821. "Non-nil means `org-agenda-follow-mode' displays only the
  822. current item's tree, in an indirect buffer."
  823. :group 'org-agenda
  824. :version "24.1"
  825. :type 'boolean)
  826. (defcustom org-agenda-show-outline-path t
  827. "Non-nil means show outline path in echo area after line motion."
  828. :group 'org-agenda-startup
  829. :type 'boolean)
  830. (defcustom org-agenda-start-with-entry-text-mode nil
  831. "The initial value of entry-text-mode in a newly created agenda window."
  832. :group 'org-agenda-startup
  833. :type 'boolean)
  834. (defcustom org-agenda-entry-text-maxlines 5
  835. "Number of text lines to be added when `E' is pressed in the agenda.
  836. Note that this variable only used during agenda display. Add add entry text
  837. when exporting the agenda, configure the variable
  838. `org-agenda-add-entry-ext-maxlines'."
  839. :group 'org-agenda
  840. :type 'integer)
  841. (defcustom org-agenda-entry-text-exclude-regexps nil
  842. "List of regular expressions to clean up entry text.
  843. The complete matches of all regular expressions in this list will be
  844. removed from entry text before it is shown in the agenda."
  845. :group 'org-agenda
  846. :type '(repeat (regexp)))
  847. (defvar org-agenda-entry-text-cleanup-hook nil
  848. "Hook that is run after basic cleanup of entry text to be shown in agenda.
  849. This cleanup is done in a temporary buffer, so the function may inspect and
  850. change the entire buffer.
  851. Some default stuff like drawers and scheduling/deadline dates will already
  852. have been removed when this is called, as will any matches for regular
  853. expressions listed in `org-agenda-entry-text-exclude-regexps'.")
  854. (defvar org-agenda-include-inactive-timestamps nil
  855. "Non-nil means include inactive time stamps in agenda and timeline.
  856. Dynamically scoped.")
  857. (defgroup org-agenda-windows nil
  858. "Options concerning the windows used by the Agenda in Org Mode."
  859. :tag "Org Agenda Windows"
  860. :group 'org-agenda)
  861. (defcustom org-agenda-window-setup 'reorganize-frame
  862. "How the agenda buffer should be displayed.
  863. Possible values for this option are:
  864. current-window Show agenda in the current window, keeping all other windows.
  865. other-window Use `switch-to-buffer-other-window' to display agenda.
  866. reorganize-frame Show only two windows on the current frame, the current
  867. window and the agenda.
  868. other-frame Use `switch-to-buffer-other-frame' to display agenda.
  869. Also, when exiting the agenda, kill that frame.
  870. See also the variable `org-agenda-restore-windows-after-quit'."
  871. :group 'org-agenda-windows
  872. :type '(choice
  873. (const current-window)
  874. (const other-frame)
  875. (const other-window)
  876. (const reorganize-frame)))
  877. (defcustom org-agenda-window-frame-fractions '(0.5 . 0.75)
  878. "The min and max height of the agenda window as a fraction of frame height.
  879. The value of the variable is a cons cell with two numbers between 0 and 1.
  880. It only matters if `org-agenda-window-setup' is `reorganize-frame'."
  881. :group 'org-agenda-windows
  882. :type '(cons (number :tag "Minimum") (number :tag "Maximum")))
  883. (defcustom org-agenda-restore-windows-after-quit nil
  884. "Non-nil means restore window configuration upon exiting agenda.
  885. Before the window configuration is changed for displaying the agenda,
  886. the current status is recorded. When the agenda is exited with
  887. `q' or `x' and this option is set, the old state is restored. If
  888. `org-agenda-window-setup' is `other-frame', the value of this
  889. option will be ignored."
  890. :group 'org-agenda-windows
  891. :type 'boolean)
  892. (defcustom org-agenda-ndays nil
  893. "Number of days to include in overview display.
  894. Should be 1 or 7.
  895. Obsolete, see `org-agenda-span'."
  896. :group 'org-agenda-daily/weekly
  897. :type 'integer)
  898. (make-obsolete-variable 'org-agenda-ndays 'org-agenda-span "24.1")
  899. (defcustom org-agenda-span 'week
  900. "Number of days to include in overview display.
  901. Can be day, week, month, year, or any number of days.
  902. Custom commands can set this variable in the options section."
  903. :group 'org-agenda-daily/weekly
  904. :type '(choice (const :tag "Day" day)
  905. (const :tag "Week" week)
  906. (const :tag "Month" month)
  907. (const :tag "Year" year)
  908. (integer :tag "Custom")))
  909. (defcustom org-agenda-start-on-weekday 1
  910. "Non-nil means start the overview always on the specified weekday.
  911. 0 denotes Sunday, 1 denotes Monday etc.
  912. When nil, always start on the current day.
  913. Custom commands can set this variable in the options section."
  914. :group 'org-agenda-daily/weekly
  915. :type '(choice (const :tag "Today" nil)
  916. (integer :tag "Weekday No.")))
  917. (defcustom org-agenda-show-all-dates t
  918. "Non-nil means `org-agenda' shows every day in the selected range.
  919. When nil, only the days which actually have entries are shown."
  920. :group 'org-agenda-daily/weekly
  921. :type 'boolean)
  922. (defcustom org-agenda-format-date 'org-agenda-format-date-aligned
  923. "Format string for displaying dates in the agenda.
  924. Used by the daily/weekly agenda and by the timeline. This should be
  925. a format string understood by `format-time-string', or a function returning
  926. the formatted date as a string. The function must take a single argument,
  927. a calendar-style date list like (month day year)."
  928. :group 'org-agenda-daily/weekly
  929. :type '(choice
  930. (string :tag "Format string")
  931. (function :tag "Function")))
  932. (defun org-agenda-format-date-aligned (date)
  933. "Format a date string for display in the daily/weekly agenda, or timeline.
  934. This function makes sure that dates are aligned for easy reading."
  935. (require 'cal-iso)
  936. (let* ((dayname (calendar-day-name date))
  937. (day (cadr date))
  938. (day-of-week (calendar-day-of-week date))
  939. (month (car date))
  940. (monthname (calendar-month-name month))
  941. (year (nth 2 date))
  942. (iso-week (org-days-to-iso-week
  943. (calendar-absolute-from-gregorian date)))
  944. (weekyear (cond ((and (= month 1) (>= iso-week 52))
  945. (1- year))
  946. ((and (= month 12) (<= iso-week 1))
  947. (1+ year))
  948. (t year)))
  949. (weekstring (if (= day-of-week 1)
  950. (format " W%02d" iso-week)
  951. "")))
  952. (format "%-10s %2d %s %4d%s"
  953. dayname day monthname year weekstring)))
  954. (defcustom org-agenda-time-leading-zero nil
  955. "Non-nil means use leading zero for military times in agenda.
  956. For example, 9:30am would become 09:30 rather than 9:30."
  957. :group 'org-agenda-daily/weekly
  958. :version "24.1"
  959. :type 'boolean)
  960. (defcustom org-agenda-timegrid-use-ampm nil
  961. "When set, show AM/PM style timestamps on the timegrid."
  962. :group 'org-agenda
  963. :version "24.1"
  964. :type 'boolean)
  965. (defun org-agenda-time-of-day-to-ampm (time)
  966. "Convert TIME of a string like '13:45' to an AM/PM style time string."
  967. (let* ((hour-number (string-to-number (substring time 0 -3)))
  968. (minute (substring time -2))
  969. (ampm "am"))
  970. (cond
  971. ((equal hour-number 12)
  972. (setq ampm "pm"))
  973. ((> hour-number 12)
  974. (setq ampm "pm")
  975. (setq hour-number (- hour-number 12))))
  976. (concat
  977. (if org-agenda-time-leading-zero
  978. (format "%02d" hour-number)
  979. (format "%02s" (number-to-string hour-number)))
  980. ":" minute ampm)))
  981. (defun org-agenda-time-of-day-to-ampm-maybe (time)
  982. "Conditionally convert TIME to AM/PM format
  983. based on `org-agenda-timegrid-use-ampm'"
  984. (if org-agenda-timegrid-use-ampm
  985. (org-agenda-time-of-day-to-ampm time)
  986. time))
  987. (defcustom org-agenda-weekend-days '(6 0)
  988. "Which days are weekend?
  989. These days get the special face `org-agenda-date-weekend' in the agenda
  990. and timeline buffers."
  991. :group 'org-agenda-daily/weekly
  992. :type '(set :greedy t
  993. (const :tag "Monday" 1)
  994. (const :tag "Tuesday" 2)
  995. (const :tag "Wednesday" 3)
  996. (const :tag "Thursday" 4)
  997. (const :tag "Friday" 5)
  998. (const :tag "Saturday" 6)
  999. (const :tag "Sunday" 0)))
  1000. (defcustom org-agenda-move-date-from-past-immediately-to-today t
  1001. "Non-nil means jump to today when moving a past date forward in time.
  1002. When using S-right in the agenda to move a a date forward, and the date
  1003. stamp currently points to the past, the first key press will move it
  1004. to today. WHen nil, just move one day forward even if the date stays
  1005. in the past."
  1006. :group 'org-agenda-daily/weekly
  1007. :version "24.1"
  1008. :type 'boolean)
  1009. (defcustom org-agenda-include-diary nil
  1010. "If non-nil, include in the agenda entries from the Emacs Calendar's diary.
  1011. Custom commands can set this variable in the options section."
  1012. :group 'org-agenda-daily/weekly
  1013. :type 'boolean)
  1014. (defcustom org-agenda-include-deadlines t
  1015. "If non-nil, include entries within their deadline warning period.
  1016. Custom commands can set this variable in the options section."
  1017. :group 'org-agenda-daily/weekly
  1018. :version "24.1"
  1019. :type 'boolean)
  1020. (defcustom org-agenda-repeating-timestamp-show-all t
  1021. "Non-nil means show all occurrences of a repeating stamp in the agenda.
  1022. When set to a list of strings, only show occurrences of repeating
  1023. stamps for these TODO keywords. When nil, only one occurrence is
  1024. shown, either today or the nearest into the future."
  1025. :group 'org-agenda-daily/weekly
  1026. :type '(choice
  1027. (const :tag "Show repeating stamps" t)
  1028. (repeat :tag "Show repeating stamps for these TODO keywords"
  1029. (string :tag "TODO Keyword"))
  1030. (const :tag "Don't show repeating stamps" nil)))
  1031. (defcustom org-scheduled-past-days 10000
  1032. "No. of days to continue listing scheduled items that are not marked DONE.
  1033. When an item is scheduled on a date, it shows up in the agenda on this
  1034. day and will be listed until it is marked done for the number of days
  1035. given here."
  1036. :group 'org-agenda-daily/weekly
  1037. :type 'integer)
  1038. (defcustom org-agenda-log-mode-items '(closed clock)
  1039. "List of items that should be shown in agenda log mode.
  1040. This list may contain the following symbols:
  1041. closed Show entries that have been closed on that day.
  1042. clock Show entries that have received clocked time on that day.
  1043. state Show all logged state changes.
  1044. Note that instead of changing this variable, you can also press `C-u l' in
  1045. the agenda to display all available LOG items temporarily."
  1046. :group 'org-agenda-daily/weekly
  1047. :type '(set :greedy t (const closed) (const clock) (const state)))
  1048. (defcustom org-agenda-clock-consistency-checks
  1049. '(:max-duration "10:00" :min-duration 0 :max-gap "0:05"
  1050. :gap-ok-around ("4:00")
  1051. :default-face ((:background "DarkRed") (:foreground "white"))
  1052. :overlap-face nil :gap-face nil :no-end-time-face nil
  1053. :long-face nil :short-face nil)
  1054. "This is a property list, with the following keys:
  1055. :max-duration Mark clocking chunks that are longer than this time.
  1056. This is a time string like \"HH:MM\", or the number
  1057. of minutes as an integer.
  1058. :min-duration Mark clocking chunks that are shorter that this.
  1059. This is a time string like \"HH:MM\", or the number
  1060. of minutes as an integer.
  1061. :max-gap Mark gaps between clocking chunks that are longer than
  1062. this duration. A number of minutes, or a string
  1063. like \"HH:MM\".
  1064. :gap-ok-around List of times during the day which are usually not working
  1065. times. When a gap is detected, but the gap contains any
  1066. of these times, the gap is *not* reported. For example,
  1067. if this is (\"4:00\" \"13:00\") then gaps that contain
  1068. 4:00 in the morning (i.e. the night) and 13:00
  1069. (i.e. a typical lunch time) do not cause a warning.
  1070. You should have at least one time during the night in this
  1071. list, or otherwise the first task each morning will trigger
  1072. a warning because it follows a long gap.
  1073. Furthermore, the following properties can be used to define faces for
  1074. issue display.
  1075. :default-face the default face, if the specific face is undefined
  1076. :overlap-face face for overlapping clocks
  1077. :gap-face face for gaps between clocks
  1078. :no-end-time-face face for incomplete clocks
  1079. :long-face face for clock intervals that are too long
  1080. :short-face face for clock intervals that are too short"
  1081. :group 'org-agenda-daily/weekly
  1082. :group 'org-clock
  1083. :version "24.1"
  1084. :type 'plist)
  1085. (defcustom org-agenda-log-mode-add-notes t
  1086. "Non-nil means add first line of notes to log entries in agenda views.
  1087. If a log item like a state change or a clock entry is associated with
  1088. notes, the first line of these notes will be added to the entry in the
  1089. agenda display."
  1090. :group 'org-agenda-daily/weekly
  1091. :type 'boolean)
  1092. (defcustom org-agenda-start-with-log-mode nil
  1093. "The initial value of log-mode in a newly created agenda window.
  1094. See `org-agenda-log-mode' and `org-agenda-log-mode-items' for further
  1095. explanations on the possible values."
  1096. :group 'org-agenda-startup
  1097. :group 'org-agenda-daily/weekly
  1098. :type '(choice (const :tag "Don't show log items" nil)
  1099. (const :tag "Show only log items" 'only)
  1100. (const :tag "Show all possible log items" 'clockcheck)
  1101. (repeat :tag "Choose among possible values for `org-agenda-log-mode-items'"
  1102. (choice (const :tag "Show closed log items" 'closed)
  1103. (const :tag "Show clocked log items" 'clock)
  1104. (const :tag "Show all logged state changes" 'state)))))
  1105. (defcustom org-agenda-start-with-clockreport-mode nil
  1106. "The initial value of clockreport-mode in a newly created agenda window."
  1107. :group 'org-agenda-startup
  1108. :group 'org-agenda-daily/weekly
  1109. :type 'boolean)
  1110. (defcustom org-agenda-clockreport-parameter-plist '(:link t :maxlevel 2)
  1111. "Property list with parameters for the clocktable in clockreport mode.
  1112. This is the display mode that shows a clock table in the daily/weekly
  1113. agenda, the properties for this dynamic block can be set here.
  1114. The usual clocktable parameters are allowed here, but you cannot set
  1115. the properties :name, :tstart, :tend, :block, and :scope - these will
  1116. be overwritten to make sure the content accurately reflects the
  1117. current display in the agenda."
  1118. :group 'org-agenda-daily/weekly
  1119. :type 'plist)
  1120. (defcustom org-agenda-search-view-always-boolean nil
  1121. "Non-nil means the search string is interpreted as individual parts.
  1122. The search string for search view can either be interpreted as a phrase,
  1123. or as a list of snippets that define a boolean search for a number of
  1124. strings.
  1125. When this is non-nil, the string will be split on whitespace, and each
  1126. snippet will be searched individually, and all must match in order to
  1127. select an entry. A snippet is then a single string of non-white
  1128. characters, or a string in double quotes, or a regexp in {} braces.
  1129. If a snippet is preceded by \"-\", the snippet must *not* match.
  1130. \"+\" is syntactic sugar for positive selection. Each snippet may
  1131. be found as a full word or a partial word, but see the variable
  1132. `org-agenda-search-view-force-full-words'.
  1133. When this is nil, search will look for the entire search phrase as one,
  1134. with each space character matching any amount of whitespace, including
  1135. line breaks.
  1136. Even when this is nil, you can still switch to Boolean search dynamically
  1137. by preceding the first snippet with \"+\" or \"-\". If the first snippet
  1138. is a regexp marked with braces like \"{abc}\", this will also switch to
  1139. boolean search."
  1140. :group 'org-agenda-search-view
  1141. :version "24.1"
  1142. :type 'boolean)
  1143. (if (fboundp 'defvaralias)
  1144. (defvaralias 'org-agenda-search-view-search-words-only
  1145. 'org-agenda-search-view-always-boolean))
  1146. (defcustom org-agenda-search-view-force-full-words nil
  1147. "Non-nil means, search words must be matches as complete words.
  1148. When nil, they may also match part of a word."
  1149. :group 'org-agenda-search-view
  1150. :version "24.1"
  1151. :type 'boolean)
  1152. (defgroup org-agenda-time-grid nil
  1153. "Options concerning the time grid in the Org-mode Agenda."
  1154. :tag "Org Agenda Time Grid"
  1155. :group 'org-agenda)
  1156. (defcustom org-agenda-search-headline-for-time t
  1157. "Non-nil means search headline for a time-of-day.
  1158. If the headline contains a time-of-day in one format or another, it will
  1159. be used to sort the entry into the time sequence of items for a day.
  1160. Some people have time stamps in the headline that refer to the creation
  1161. time or so, and then this produces an unwanted side effect. If this is
  1162. the case for your, use this variable to turn off searching the headline
  1163. for a time."
  1164. :group 'org-agenda-time-grid
  1165. :type 'boolean)
  1166. (defcustom org-agenda-use-time-grid t
  1167. "Non-nil means show a time grid in the agenda schedule.
  1168. A time grid is a set of lines for specific times (like every two hours between
  1169. 8:00 and 20:00). The items scheduled for a day at specific times are
  1170. sorted in between these lines.
  1171. For details about when the grid will be shown, and what it will look like, see
  1172. the variable `org-agenda-time-grid'."
  1173. :group 'org-agenda-time-grid
  1174. :type 'boolean)
  1175. (defcustom org-agenda-time-grid
  1176. '((daily today require-timed)
  1177. "----------------"
  1178. (800 1000 1200 1400 1600 1800 2000))
  1179. "The settings for time grid for agenda display.
  1180. This is a list of three items. The first item is again a list. It contains
  1181. symbols specifying conditions when the grid should be displayed:
  1182. daily if the agenda shows a single day
  1183. weekly if the agenda shows an entire week
  1184. today show grid on current date, independent of daily/weekly display
  1185. require-timed show grid only if at least one item has a time specification
  1186. The second item is a string which will be placed behind the grid time.
  1187. The third item is a list of integers, indicating the times that should have
  1188. a grid line."
  1189. :group 'org-agenda-time-grid
  1190. :type
  1191. '(list
  1192. (set :greedy t :tag "Grid Display Options"
  1193. (const :tag "Show grid in single day agenda display" daily)
  1194. (const :tag "Show grid in weekly agenda display" weekly)
  1195. (const :tag "Always show grid for today" today)
  1196. (const :tag "Show grid only if any timed entries are present"
  1197. require-timed)
  1198. (const :tag "Skip grid times already present in an entry"
  1199. remove-match))
  1200. (string :tag "Grid String")
  1201. (repeat :tag "Grid Times" (integer :tag "Time"))))
  1202. (defcustom org-agenda-show-current-time-in-grid t
  1203. "Non-nil means show the current time in the time grid."
  1204. :group 'org-agenda-time-grid
  1205. :version "24.1"
  1206. :type 'boolean)
  1207. (defcustom org-agenda-current-time-string
  1208. "now - - - - - - - - - - - - - - - - - - - - - - - - -"
  1209. "The string for the current time marker in the agenda."
  1210. :group 'org-agenda-time-grid
  1211. :version "24.1"
  1212. :type 'string)
  1213. (defgroup org-agenda-sorting nil
  1214. "Options concerning sorting in the Org-mode Agenda."
  1215. :tag "Org Agenda Sorting"
  1216. :group 'org-agenda)
  1217. (defcustom org-agenda-sorting-strategy
  1218. '((agenda habit-down time-up priority-down category-keep)
  1219. (todo priority-down category-keep)
  1220. (tags priority-down category-keep)
  1221. (search category-keep))
  1222. "Sorting structure for the agenda items of a single day.
  1223. This is a list of symbols which will be used in sequence to determine
  1224. if an entry should be listed before another entry. The following
  1225. symbols are recognized:
  1226. time-up Put entries with time-of-day indications first, early first
  1227. time-down Put entries with time-of-day indications first, late first
  1228. category-keep Keep the default order of categories, corresponding to the
  1229. sequence in `org-agenda-files'.
  1230. category-up Sort alphabetically by category, A-Z.
  1231. category-down Sort alphabetically by category, Z-A.
  1232. tag-up Sort alphabetically by last tag, A-Z.
  1233. tag-down Sort alphabetically by last tag, Z-A.
  1234. priority-up Sort numerically by priority, high priority last.
  1235. priority-down Sort numerically by priority, high priority first.
  1236. todo-state-up Sort by todo state, tasks that are done last.
  1237. todo-state-down Sort by todo state, tasks that are done first.
  1238. effort-up Sort numerically by estimated effort, high effort last.
  1239. effort-down Sort numerically by estimated effort, high effort first.
  1240. user-defined-up Sort according to `org-agenda-cmp-user-defined', high last.
  1241. user-defined-down Sort according to `org-agenda-cmp-user-defined', high first.
  1242. habit-up Put entries that are habits first
  1243. habit-down Put entries that are habits last
  1244. alpha-up Sort headlines alphabetically
  1245. alpha-down Sort headlines alphabetically, reversed
  1246. The different possibilities will be tried in sequence, and testing stops
  1247. if one comparison returns a \"not-equal\". For example, the default
  1248. '(time-up category-keep priority-down)
  1249. means: Pull out all entries having a specified time of day and sort them,
  1250. in order to make a time schedule for the current day the first thing in the
  1251. agenda listing for the day. Of the entries without a time indication, keep
  1252. the grouped in categories, don't sort the categories, but keep them in
  1253. the sequence given in `org-agenda-files'. Within each category sort by
  1254. priority.
  1255. Leaving out `category-keep' would mean that items will be sorted across
  1256. categories by priority.
  1257. Instead of a single list, this can also be a set of list for specific
  1258. contents, with a context symbol in the car of the list, any of
  1259. `agenda', `todo', `tags', `search' for the corresponding agenda views.
  1260. Custom commands can bind this variable in the options section."
  1261. :group 'org-agenda-sorting
  1262. :type `(choice
  1263. (repeat :tag "General" ,org-sorting-choice)
  1264. (list :tag "Individually"
  1265. (cons (const :tag "Strategy for Weekly/Daily agenda" agenda)
  1266. (repeat ,org-sorting-choice))
  1267. (cons (const :tag "Strategy for TODO lists" todo)
  1268. (repeat ,org-sorting-choice))
  1269. (cons (const :tag "Strategy for Tags matches" tags)
  1270. (repeat ,org-sorting-choice))
  1271. (cons (const :tag "Strategy for search matches" search)
  1272. (repeat ,org-sorting-choice)))))
  1273. (defcustom org-agenda-cmp-user-defined nil
  1274. "A function to define the comparison `user-defined'.
  1275. This function must receive two arguments, agenda entry a and b.
  1276. If a>b, return +1. If a<b, return -1. If they are equal as seen by
  1277. the user comparison, return nil.
  1278. When this is defined, you can make `user-defined-up' and `user-defined-down'
  1279. part of an agenda sorting strategy."
  1280. :group 'org-agenda-sorting
  1281. :type 'symbol)
  1282. (defcustom org-sort-agenda-notime-is-late t
  1283. "Non-nil means items without time are considered late.
  1284. This is only relevant for sorting. When t, items which have no explicit
  1285. time like 15:30 will be considered as 99:01, i.e. later than any items which
  1286. do have a time. When nil, the default time is before 0:00. You can use this
  1287. option to decide if the schedule for today should come before or after timeless
  1288. agenda entries."
  1289. :group 'org-agenda-sorting
  1290. :type 'boolean)
  1291. (defcustom org-sort-agenda-noeffort-is-high t
  1292. "Non-nil means items without effort estimate are sorted as high effort.
  1293. This also applies when filtering an agenda view with respect to the
  1294. < or > effort operator. Then, tasks with no effort defined will be treated
  1295. as tasks with high effort.
  1296. When nil, such items are sorted as 0 minutes effort."
  1297. :group 'org-agenda-sorting
  1298. :type 'boolean)
  1299. (defgroup org-agenda-line-format nil
  1300. "Options concerning the entry prefix in the Org-mode agenda display."
  1301. :tag "Org Agenda Line Format"
  1302. :group 'org-agenda)
  1303. (defcustom org-agenda-prefix-format
  1304. '((agenda . " %i %-12:c%?-12t% s")
  1305. (timeline . " % s")
  1306. (todo . " %i %-12:c")
  1307. (tags . " %i %-12:c")
  1308. (search . " %i %-12:c"))
  1309. "Format specifications for the prefix of items in the agenda views.
  1310. An alist with five entries, each for the different agenda types. The
  1311. keys of the sublists are `agenda', `timeline', `todo', `search' and `tags'.
  1312. The values are format strings.
  1313. This format works similar to a printf format, with the following meaning:
  1314. %c the category of the item, \"Diary\" for entries from the diary,
  1315. or as given by the CATEGORY keyword or derived from the file name
  1316. %e the effort required by the item
  1317. %i the icon category of the item, see `org-agenda-category-icon-alist'
  1318. %T the last tag of the item (ignore inherited tags, which come first)
  1319. %t the HH:MM time-of-day specification if one applies to the entry
  1320. %s Scheduling/Deadline information, a short string
  1321. %(expression) Eval EXPRESSION and replace the control string
  1322. by the result
  1323. All specifiers work basically like the standard `%s' of printf, but may
  1324. contain two additional characters: a question mark just after the `%'
  1325. and a whitespace/punctuation character just before the final letter.
  1326. If the first character after `%' is a question mark, the entire field
  1327. will only be included if the corresponding value applies to the current
  1328. entry. This is useful for fields which should have fixed width when
  1329. present, but zero width when absent. For example, \"%?-12t\" will
  1330. result in a 12 character time field if a time of the day is specified,
  1331. but will completely disappear in entries which do not contain a time.
  1332. If there is punctuation or whitespace character just before the final
  1333. format letter, this character will be appended to the field value if
  1334. the value is not empty. For example, the format \"%-12:c\" leads to
  1335. \"Diary: \" if the category is \"Diary\". If the category were be
  1336. empty, no additional colon would be inserted.
  1337. The default value for the agenda sublist is \" %-12:c%?-12t% s\",
  1338. which means:
  1339. - Indent the line with two space characters
  1340. - Give the category a 12 chars wide field, padded with whitespace on
  1341. the right (because of `-'). Append a colon if there is a category
  1342. (because of `:').
  1343. - If there is a time-of-day, put it into a 12 chars wide field. If no
  1344. time, don't put in an empty field, just skip it (because of '?').
  1345. - Finally, put the scheduling information.
  1346. See also the variables `org-agenda-remove-times-when-in-prefix' and
  1347. `org-agenda-remove-tags'.
  1348. Custom commands can set this variable in the options section."
  1349. :type '(choice
  1350. (string :tag "General format")
  1351. (list :greedy t :tag "View dependent"
  1352. (cons (const agenda) (string :tag "Format"))
  1353. (cons (const timeline) (string :tag "Format"))
  1354. (cons (const todo) (string :tag "Format"))
  1355. (cons (const tags) (string :tag "Format"))
  1356. (cons (const search) (string :tag "Format"))))
  1357. :group 'org-agenda-line-format)
  1358. (defvar org-prefix-format-compiled nil
  1359. "The compiled prefix format and associated variables.
  1360. This is a list where first element is a list of variable bindings, and second
  1361. element is the compiled format expression. See the variable
  1362. `org-agenda-prefix-format'.")
  1363. (defcustom org-agenda-todo-keyword-format "%-1s"
  1364. "Format for the TODO keyword in agenda lines.
  1365. Set this to something like \"%-12s\" if you want all TODO keywords
  1366. to occupy a fixed space in the agenda display."
  1367. :group 'org-agenda-line-format
  1368. :type 'string)
  1369. (defcustom org-agenda-diary-sexp-prefix nil
  1370. "A regexp that matches part of a diary sexp entry
  1371. which should be treated as scheduling/deadline information in
  1372. `org-agenda'.
  1373. For example, you can use this to extract the `diary-remind-message' from
  1374. `diary-remind' entries."
  1375. :group 'org-agenda-line-format
  1376. :type '(choice (const :tag "None" nil) (regexp :tag "Regexp")))
  1377. (defcustom org-agenda-timerange-leaders '("" "(%d/%d): ")
  1378. "Text preceding timerange entries in the agenda view.
  1379. This is a list with two strings. The first applies when the range
  1380. is entirely on one day. The second applies if the range spans several days.
  1381. The strings may have two \"%d\" format specifiers which will be filled
  1382. with the sequence number of the days, and the total number of days in the
  1383. range, respectively."
  1384. :group 'org-agenda-line-format
  1385. :type '(list
  1386. (string :tag "Deadline today ")
  1387. (choice :tag "Deadline relative"
  1388. (string :tag "Format string")
  1389. (function))))
  1390. (defcustom org-agenda-scheduled-leaders '("Scheduled: " "Sched.%2dx: ")
  1391. "Text preceding scheduled items in the agenda view.
  1392. This is a list with two strings. The first applies when the item is
  1393. scheduled on the current day. The second applies when it has been scheduled
  1394. previously, it may contain a %d indicating that this is the nth time that
  1395. this item is scheduled, due to automatic rescheduling of unfinished items
  1396. for the following day. So this number is one larger than the number of days
  1397. that passed since this item was scheduled first."
  1398. :group 'org-agenda-line-format
  1399. :type '(list
  1400. (string :tag "Scheduled today ")
  1401. (string :tag "Scheduled previously")))
  1402. (defcustom org-agenda-inactive-leader "["
  1403. "Text preceding item pulled into the agenda by inactive time stamps.
  1404. These entries are added to the agenda when pressing \"[\"."
  1405. :group 'org-agenda-line-format
  1406. :version "24.1"
  1407. :type '(list
  1408. (string :tag "Scheduled today ")
  1409. (string :tag "Scheduled previously")))
  1410. (defcustom org-agenda-deadline-leaders '("Deadline: " "In %3d d.: ")
  1411. "Text preceding deadline items in the agenda view.
  1412. This is a list with two strings. The first applies when the item has its
  1413. deadline on the current day. The second applies when it is in the past or
  1414. in the future, it may contain %d to capture how many days away the deadline
  1415. is (was)."
  1416. :group 'org-agenda-line-format
  1417. :type '(list
  1418. (string :tag "Deadline today ")
  1419. (choice :tag "Deadline relative"
  1420. (string :tag "Format string")
  1421. (function))))
  1422. (defcustom org-agenda-remove-times-when-in-prefix t
  1423. "Non-nil means remove duplicate time specifications in agenda items.
  1424. When the format `org-agenda-prefix-format' contains a `%t' specifier, a
  1425. time-of-day specification in a headline or diary entry is extracted and
  1426. placed into the prefix. If this option is non-nil, the original specification
  1427. \(a timestamp or -range, or just a plain time(range) specification like
  1428. 11:30-4pm) will be removed for agenda display. This makes the agenda less
  1429. cluttered.
  1430. The option can be t or nil. It may also be the symbol `beg', indicating
  1431. that the time should only be removed when it is located at the beginning of
  1432. the headline/diary entry."
  1433. :group 'org-agenda-line-format
  1434. :type '(choice
  1435. (const :tag "Always" t)
  1436. (const :tag "Never" nil)
  1437. (const :tag "When at beginning of entry" beg)))
  1438. (defcustom org-agenda-remove-timeranges-from-blocks nil
  1439. "Non-nil means remove time ranges specifications in agenda
  1440. items that span on several days."
  1441. :group 'org-agenda-line-format
  1442. :version "24.1"
  1443. :type 'boolean)
  1444. (defcustom org-agenda-default-appointment-duration nil
  1445. "Default duration for appointments that only have a starting time.
  1446. When nil, no duration is specified in such cases.
  1447. When non-nil, this must be the number of minutes, e.g. 60 for one hour."
  1448. :group 'org-agenda-line-format
  1449. :type '(choice
  1450. (integer :tag "Minutes")
  1451. (const :tag "No default duration")))
  1452. (defcustom org-agenda-show-inherited-tags t
  1453. "Non-nil means show inherited tags in each agenda line."
  1454. :group 'org-agenda-line-format
  1455. :type 'boolean)
  1456. (defcustom org-agenda-hide-tags-regexp nil
  1457. "Regular expression used to filter away specific tags in agenda views.
  1458. This means that these tags will be present, but not be shown in the agenda
  1459. line. Secondary filtering will still work on the hidden tags.
  1460. Nil means don't hide any tags."
  1461. :group 'org-agenda-line-format
  1462. :type '(choice
  1463. (const :tag "Hide none" nil)
  1464. (string :tag "Regexp ")))
  1465. (defcustom org-agenda-remove-tags nil
  1466. "Non-nil means remove the tags from the headline copy in the agenda.
  1467. When this is the symbol `prefix', only remove tags when
  1468. `org-agenda-prefix-format' contains a `%T' specifier."
  1469. :group 'org-agenda-line-format
  1470. :type '(choice
  1471. (const :tag "Always" t)
  1472. (const :tag "Never" nil)
  1473. (const :tag "When prefix format contains %T" prefix)))
  1474. (if (fboundp 'defvaralias)
  1475. (defvaralias 'org-agenda-remove-tags-when-in-prefix
  1476. 'org-agenda-remove-tags))
  1477. (defcustom org-agenda-tags-column (if (featurep 'xemacs) -79 -80)
  1478. "Shift tags in agenda items to this column.
  1479. If this number is positive, it specifies the column. If it is negative,
  1480. it means that the tags should be flushright to that column. For example,
  1481. -80 works well for a normal 80 character screen."
  1482. :group 'org-agenda-line-format
  1483. :type 'integer)
  1484. (if (fboundp 'defvaralias)
  1485. (defvaralias 'org-agenda-align-tags-to-column 'org-agenda-tags-column))
  1486. (defcustom org-agenda-fontify-priorities 'cookies
  1487. "Non-nil means highlight low and high priorities in agenda.
  1488. When t, the highest priority entries are bold, lowest priority italic.
  1489. However, settings in `org-priority-faces' will overrule these faces.
  1490. When this variable is the symbol `cookies', only fontify the
  1491. cookies, not the entire task.
  1492. This may also be an association list of priority faces, whose
  1493. keys are the character values of `org-highest-priority',
  1494. `org-default-priority', and `org-lowest-priority' (the default values
  1495. are ?A, ?B, and ?C, respectively). The face may be a named face, a
  1496. color as a string, or a list like `(:background \"Red\")'.
  1497. If it is a color, the variable `org-faces-easy-properties'
  1498. determines if it is a foreground or a background color."
  1499. :group 'org-agenda-line-format
  1500. :type '(choice
  1501. (const :tag "Never" nil)
  1502. (const :tag "Defaults" t)
  1503. (const :tag "Cookies only" cookies)
  1504. (repeat :tag "Specify"
  1505. (list (character :tag "Priority" :value ?A)
  1506. (choice :tag "Face "
  1507. (string :tag "Color")
  1508. (sexp :tag "Face"))))))
  1509. (defcustom org-agenda-day-face-function nil
  1510. "Function called to determine what face should be used to display a day.
  1511. The only argument passed to that function is the day. It should
  1512. returns a face, or nil if does not want to specify a face and let
  1513. the normal rules apply."
  1514. :group 'org-agenda-line-format
  1515. :version "24.1"
  1516. :type 'function)
  1517. (defcustom org-agenda-category-icon-alist nil
  1518. "Alist of category icon to be displayed in agenda views.
  1519. Each entry should have the following format:
  1520. (CATEGORY-REGEXP FILE-OR-DATA TYPE DATA-P PROPS)
  1521. Where CATEGORY-REGEXP is a regexp matching the categories where
  1522. the icon should be displayed.
  1523. FILE-OR-DATA either a file path or a string containing image data.
  1524. The other fields can be omitted safely if not needed:
  1525. TYPE indicates the image type.
  1526. DATA-P is a boolean indicating whether the FILE-OR-DATA string is
  1527. image data.
  1528. PROPS are additional image attributes to assign to the image,
  1529. like, e.g. `:ascent center'.
  1530. (\"Org\" \"/path/to/icon.png\" nil nil :ascent center)
  1531. If you want to set the display properties yourself, just put a
  1532. list as second element:
  1533. (CATEGORY-REGEXP (MY PROPERTY LIST))
  1534. For example, to display a 16px horizontal space for Emacs
  1535. category, you can use:
  1536. (\"Emacs\" '(space . (:width (16))))"
  1537. :group 'org-agenda-line-format
  1538. :version "24.1"
  1539. :type '(alist :key-type (string :tag "Regexp matching category")
  1540. :value-type (choice (list :tag "Icon"
  1541. (string :tag "File or data")
  1542. (symbol :tag "Type")
  1543. (boolean :tag "Data?")
  1544. (repeat :tag "Extra image properties" :inline t symbol))
  1545. (list :tag "Display properties" sexp))))
  1546. (defgroup org-agenda-column-view nil
  1547. "Options concerning column view in the agenda."
  1548. :tag "Org Agenda Column View"
  1549. :group 'org-agenda)
  1550. (defcustom org-agenda-columns-show-summaries t
  1551. "Non-nil means show summaries for columns displayed in the agenda view."
  1552. :group 'org-agenda-column-view
  1553. :type 'boolean)
  1554. (defcustom org-agenda-columns-compute-summary-properties t
  1555. "Non-nil means recompute all summary properties before column view.
  1556. When column view in the agenda is listing properties that have a summary
  1557. operator, it can go to all relevant buffers and recompute the summaries
  1558. there. This can mean overhead for the agenda column view, but is necessary
  1559. to have thing up to date.
  1560. As a special case, a CLOCKSUM property also makes sure that the clock
  1561. computations are current."
  1562. :group 'org-agenda-column-view
  1563. :type 'boolean)
  1564. (defcustom org-agenda-columns-add-appointments-to-effort-sum nil
  1565. "Non-nil means the duration of an appointment will add to day effort.
  1566. The property to which appointment durations will be added is the one given
  1567. in the option `org-effort-property'. If an appointment does not have
  1568. an end time, `org-agenda-default-appointment-duration' will be used. If that
  1569. is not set, an appointment without end time will not contribute to the time
  1570. estimate."
  1571. :group 'org-agenda-column-view
  1572. :type 'boolean)
  1573. (defcustom org-agenda-auto-exclude-function nil
  1574. "A function called with a tag to decide if it is filtered on '/ RET'.
  1575. The sole argument to the function, which is called once for each
  1576. possible tag, is a string giving the name of the tag. The
  1577. function should return either nil if the tag should be included
  1578. as normal, or \"-<TAG>\" to exclude the tag.
  1579. Note that for the purpose of tag filtering, only the lower-case version of
  1580. all tags will be considered, so that this function will only ever see
  1581. the lower-case version of all tags."
  1582. :group 'org-agenda
  1583. :type 'function)
  1584. (defcustom org-agenda-bulk-custom-functions nil
  1585. "Alist of characters and custom functions for bulk actions.
  1586. For example, this value makes those two functions available:
  1587. '((?R set-category)
  1588. (?C bulk-cut))
  1589. With selected entries in an agenda buffer, `B R' will call
  1590. the custom function `set-category' on the selected entries.
  1591. Note that functions in this alist don't need to be quoted."
  1592. :type 'alist
  1593. :version "24.1"
  1594. :group 'org-agenda)
  1595. (defmacro org-agenda-with-point-at-orig-entry (string &rest body)
  1596. "Execute BODY with point at location given by `org-hd-marker' property.
  1597. If STRING is non-nil, the text property will be fetched from position 0
  1598. in that string. If STRING is nil, it will be fetched from the beginning
  1599. of the current line."
  1600. (org-with-gensyms (marker)
  1601. `(let ((,marker (get-text-property (if string 0 (point-at-bol))
  1602. 'org-hd-marker ,string)))
  1603. (with-current-buffer (marker-buffer ,marker)
  1604. (save-excursion
  1605. (goto-char ,marker)
  1606. ,@body)))))
  1607. (def-edebug-spec org-agenda-with-point-at-orig-entry (form body))
  1608. (defun org-add-agenda-custom-command (entry)
  1609. "Replace or add a command in `org-agenda-custom-commands'.
  1610. This is mostly for hacking and trying a new command - once the command
  1611. works you probably want to add it to `org-agenda-custom-commands' for good."
  1612. (let ((ass (assoc (car entry) org-agenda-custom-commands)))
  1613. (if ass
  1614. (setcdr ass (cdr entry))
  1615. (push entry org-agenda-custom-commands))))
  1616. ;;; Define the org-agenda-mode
  1617. (defvar org-agenda-mode-map (make-sparse-keymap)
  1618. "Keymap for `org-agenda-mode'.")
  1619. (if (fboundp 'defvaralias)
  1620. (defvaralias 'org-agenda-keymap 'org-agenda-mode-map))
  1621. (defvar org-agenda-menu) ; defined later in this file.
  1622. (defvar org-agenda-restrict nil) ; defined later in this file.
  1623. (defvar org-agenda-follow-mode nil)
  1624. (defvar org-agenda-entry-text-mode nil)
  1625. (defvar org-agenda-clockreport-mode nil)
  1626. (defvar org-agenda-show-log nil)
  1627. (defvar org-agenda-redo-command nil)
  1628. (defvar org-agenda-query-string nil)
  1629. (defvar org-agenda-mode-hook nil
  1630. "Hook for `org-agenda-mode', run after the mode is turned on.")
  1631. (defvar org-agenda-type nil)
  1632. (defvar org-agenda-force-single-file nil)
  1633. (defvar org-agenda-bulk-marked-entries nil
  1634. "List of markers that refer to marked entries in the agenda.")
  1635. ;;; Multiple agenda buffers support
  1636. (defcustom org-agenda-sticky nil
  1637. "Non-nil means agenda q key will bury agenda buffers.
  1638. Agenda commands will then show existing buffer instead of generating new ones.
  1639. When nil, `q' will kill the single agenda buffer."
  1640. :group 'org-agenda
  1641. :type 'boolean
  1642. :set (lambda (var val)
  1643. (if (boundp var)
  1644. (org-toggle-sticky-agenda (if val 1 0))
  1645. (set var val))))
  1646. ;;;###autoload
  1647. (defun org-toggle-sticky-agenda (&optional arg)
  1648. "Toggle `org-agenda-sticky'."
  1649. (interactive "P")
  1650. (let ((new-value (if arg
  1651. (> (prefix-numeric-value arg) 0)
  1652. (not org-agenda-sticky))))
  1653. (if (equal new-value org-agenda-sticky)
  1654. (and (org-called-interactively-p 'interactive)
  1655. (message "Sticky agenda was already %s"
  1656. (if org-agenda-sticky "enabled" "disabled")))
  1657. (setq org-agenda-sticky new-value)
  1658. (org-agenda-kill-all-agenda-buffers)
  1659. (and (org-called-interactively-p 'interactive)
  1660. (message "Sticky agenda was %s"
  1661. (if org-agenda-sticky "enabled" "disabled"))))))
  1662. (defvar org-agenda-buffer nil
  1663. "Agenda buffer currently being generated.")
  1664. (defvar org-agenda-last-prefix-arg nil)
  1665. (defvar org-agenda-this-buffer-name nil)
  1666. (defvar org-agenda-doing-sticky-redo nil)
  1667. (defvar org-agenda-this-buffer-is-sticky nil)
  1668. (defconst org-agenda-local-vars
  1669. '(org-agenda-this-buffer-name
  1670. org-agenda-undo-list
  1671. org-agenda-pending-undo-list
  1672. org-agenda-follow-mode
  1673. org-agenda-entry-text-mode
  1674. org-agenda-clockreport-mode
  1675. org-agenda-show-log
  1676. org-agenda-redo-command
  1677. org-agenda-query-string
  1678. org-agenda-type
  1679. org-agenda-bulk-marked-entries
  1680. org-agenda-undo-has-started-in
  1681. org-agenda-info
  1682. org-agenda-tag-filter-overlays
  1683. org-agenda-cat-filter-overlays
  1684. org-agenda-pre-window-conf
  1685. org-agenda-columns-active
  1686. org-agenda-tag-filter
  1687. org-agenda-category-filter
  1688. org-agenda-markers
  1689. org-agenda-last-search-view-search-was-boolean
  1690. org-agenda-filtered-by-category
  1691. org-agenda-filter-form
  1692. org-agenda-show-window
  1693. org-agenda-cycle-counter
  1694. org-agenda-last-prefix-arg)
  1695. "Variables that must be local in agenda buffers to allow multiple buffers.")
  1696. (defun org-agenda-mode ()
  1697. "Mode for time-sorted view on action items in Org-mode files.
  1698. The following commands are available:
  1699. \\{org-agenda-mode-map}"
  1700. (interactive)
  1701. (cond (org-agenda-doing-sticky-redo
  1702. ;; Refreshing sticky agenda-buffer
  1703. ;;
  1704. ;; Preserve the value of `org-agenda-local-vars' variables,
  1705. ;; while letting `kill-all-local-variables' kill the rest
  1706. (let ((save (buffer-local-variables)))
  1707. (kill-all-local-variables)
  1708. (mapc 'make-local-variable org-agenda-local-vars)
  1709. (dolist (elem save)
  1710. (let ((var (car elem))
  1711. (val (cdr elem)))
  1712. (when (and val
  1713. (member var org-agenda-local-vars))
  1714. (set var val)))))
  1715. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
  1716. (org-agenda-sticky
  1717. ;; Creating a sticky Agenda buffer for the first time
  1718. (kill-all-local-variables)
  1719. (mapc 'make-local-variable org-agenda-local-vars)
  1720. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) t))
  1721. (t
  1722. ;; Creating a non-sticky agenda buffer
  1723. (kill-all-local-variables)
  1724. (set (make-local-variable 'org-agenda-this-buffer-is-sticky) nil)))
  1725. (setq org-agenda-undo-list nil
  1726. org-agenda-pending-undo-list nil
  1727. org-agenda-bulk-marked-entries nil)
  1728. (setq major-mode 'org-agenda-mode)
  1729. ;; Keep global-font-lock-mode from turning on font-lock-mode
  1730. (org-set-local 'font-lock-global-modes (list 'not major-mode))
  1731. (setq mode-name "Org-Agenda")
  1732. (use-local-map org-agenda-mode-map)
  1733. (easy-menu-add org-agenda-menu)
  1734. (if org-startup-truncated (setq truncate-lines t))
  1735. (org-set-local 'line-move-visual nil)
  1736. (org-add-hook 'post-command-hook 'org-agenda-post-command-hook nil 'local)
  1737. (org-add-hook 'pre-command-hook 'org-unhighlight nil 'local)
  1738. ;; Make sure properties are removed when copying text
  1739. (make-local-variable 'filter-buffer-substring-functions)
  1740. (add-hook 'filter-buffer-substring-functions
  1741. (lambda (fun start end delete)
  1742. (substring-no-properties (funcall fun start end delete))))
  1743. (unless org-agenda-keep-modes
  1744. (setq org-agenda-follow-mode org-agenda-start-with-follow-mode
  1745. org-agenda-entry-text-mode org-agenda-start-with-entry-text-mode
  1746. org-agenda-clockreport-mode org-agenda-start-with-clockreport-mode
  1747. org-agenda-show-log org-agenda-start-with-log-mode))
  1748. (easy-menu-change
  1749. '("Agenda") "Agenda Files"
  1750. (append
  1751. (list
  1752. (vector
  1753. (if (get 'org-agenda-files 'org-restrict)
  1754. "Restricted to single file"
  1755. "Edit File List")
  1756. '(org-edit-agenda-file-list)
  1757. (not (get 'org-agenda-files 'org-restrict)))
  1758. "--")
  1759. (mapcar 'org-file-menu-entry (org-agenda-files))))
  1760. (org-agenda-set-mode-name)
  1761. (apply
  1762. (if (fboundp 'run-mode-hooks) 'run-mode-hooks 'run-hooks)
  1763. (list 'org-agenda-mode-hook)))
  1764. (substitute-key-definition 'undo 'org-agenda-undo
  1765. org-agenda-mode-map global-map)
  1766. (org-defkey org-agenda-mode-map "\C-i" 'org-agenda-goto)
  1767. (org-defkey org-agenda-mode-map [(tab)] 'org-agenda-goto)
  1768. (org-defkey org-agenda-mode-map "\C-m" 'org-agenda-switch-to)
  1769. (org-defkey org-agenda-mode-map "\C-k" 'org-agenda-kill)
  1770. (org-defkey org-agenda-mode-map "\C-c\C-w" 'org-agenda-refile)
  1771. (org-defkey org-agenda-mode-map "m" 'org-agenda-bulk-mark)
  1772. (org-defkey org-agenda-mode-map "*" 'org-agenda-bulk-mark-all)
  1773. (org-defkey org-agenda-mode-map "%" 'org-agenda-bulk-mark-regexp)
  1774. (org-defkey org-agenda-mode-map "u" 'org-agenda-bulk-unmark)
  1775. (org-defkey org-agenda-mode-map "U" 'org-agenda-bulk-unmark-all)
  1776. (org-defkey org-agenda-mode-map "B" 'org-agenda-bulk-action)
  1777. (org-defkey org-agenda-mode-map "k" 'org-agenda-capture)
  1778. (org-defkey org-agenda-mode-map "A" 'org-agenda-append-agenda)
  1779. (org-defkey org-agenda-mode-map "\C-c\C-x!" 'org-reload)
  1780. (org-defkey org-agenda-mode-map "\C-c\C-x\C-a" 'org-agenda-archive-default)
  1781. (org-defkey org-agenda-mode-map "\C-c\C-xa" 'org-agenda-toggle-archive-tag)
  1782. (org-defkey org-agenda-mode-map "\C-c\C-xA" 'org-agenda-archive-to-archive-sibling)
  1783. (org-defkey org-agenda-mode-map "\C-c\C-x\C-s" 'org-agenda-archive)
  1784. (org-defkey org-agenda-mode-map "\C-c$" 'org-agenda-archive)
  1785. (org-defkey org-agenda-mode-map "$" 'org-agenda-archive)
  1786. (org-defkey org-agenda-mode-map "\C-c\C-o" 'org-agenda-open-link)
  1787. (org-defkey org-agenda-mode-map " " 'org-agenda-show-and-scroll-up)
  1788. (org-defkey org-agenda-mode-map [backspace] 'org-agenda-show-scroll-down)
  1789. (org-defkey org-agenda-mode-map "\d" 'org-agenda-show-scroll-down)
  1790. (org-defkey org-agenda-mode-map [(control shift right)] 'org-agenda-todo-nextset)
  1791. (org-defkey org-agenda-mode-map [(control shift left)] 'org-agenda-todo-previousset)
  1792. (org-defkey org-agenda-mode-map "\C-c\C-xb" 'org-agenda-tree-to-indirect-buffer)
  1793. (org-defkey org-agenda-mode-map "o" 'delete-other-windows)
  1794. (org-defkey org-agenda-mode-map "L" 'org-agenda-recenter)
  1795. (org-defkey org-agenda-mode-map "\C-c\C-t" 'org-agenda-todo)
  1796. (org-defkey org-agenda-mode-map "t" 'org-agenda-todo)
  1797. (org-defkey org-agenda-mode-map "a" 'org-agenda-archive-default-with-confirmation)
  1798. (org-defkey org-agenda-mode-map ":" 'org-agenda-set-tags)
  1799. (org-defkey org-agenda-mode-map "\C-c\C-q" 'org-agenda-set-tags)
  1800. (org-defkey org-agenda-mode-map "." 'org-agenda-goto-today)
  1801. (org-defkey org-agenda-mode-map "j" 'org-agenda-goto-date)
  1802. (org-defkey org-agenda-mode-map "d" 'org-agenda-day-view)
  1803. (org-defkey org-agenda-mode-map "w" 'org-agenda-week-view)
  1804. (org-defkey org-agenda-mode-map "y" 'org-agenda-year-view)
  1805. (org-defkey org-agenda-mode-map "\C-c\C-z" 'org-agenda-add-note)
  1806. (org-defkey org-agenda-mode-map "z" 'org-agenda-add-note)
  1807. (org-defkey org-agenda-mode-map [(shift right)] 'org-agenda-do-date-later)
  1808. (org-defkey org-agenda-mode-map [(shift left)] 'org-agenda-do-date-earlier)
  1809. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (right)] 'org-agenda-do-date-later)
  1810. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (left)] 'org-agenda-do-date-earlier)
  1811. (org-defkey org-agenda-mode-map ">" 'org-agenda-date-prompt)
  1812. (org-defkey org-agenda-mode-map "\C-c\C-s" 'org-agenda-schedule)
  1813. (org-defkey org-agenda-mode-map "\C-c\C-d" 'org-agenda-deadline)
  1814. (let ((l '(1 2 3 4 5 6 7 8 9 0)))
  1815. (while l (org-defkey org-agenda-mode-map
  1816. (int-to-string (pop l)) 'digit-argument)))
  1817. (org-defkey org-agenda-mode-map "F" 'org-agenda-follow-mode)
  1818. (org-defkey org-agenda-mode-map "R" 'org-agenda-clockreport-mode)
  1819. (org-defkey org-agenda-mode-map "E" 'org-agenda-entry-text-mode)
  1820. (org-defkey org-agenda-mode-map "l" 'org-agenda-log-mode)
  1821. (org-defkey org-agenda-mode-map "v" 'org-agenda-view-mode-dispatch)
  1822. (org-defkey org-agenda-mode-map "D" 'org-agenda-toggle-diary)
  1823. (org-defkey org-agenda-mode-map "!" 'org-agenda-toggle-deadlines)
  1824. (org-defkey org-agenda-mode-map "G" 'org-agenda-toggle-time-grid)
  1825. (org-defkey org-agenda-mode-map "r" 'org-agenda-redo)
  1826. (org-defkey org-agenda-mode-map "g" (lambda () (interactive) (org-agenda-redo t)))
  1827. (org-defkey org-agenda-mode-map "e" 'org-agenda-set-effort)
  1828. (org-defkey org-agenda-mode-map "\C-c\C-xe" 'org-agenda-set-effort)
  1829. (org-defkey org-agenda-mode-map "\C-c\C-x\C-e"
  1830. 'org-clock-modify-effort-estimate)
  1831. (org-defkey org-agenda-mode-map "\C-c\C-xp" 'org-agenda-set-property)
  1832. (org-defkey org-agenda-mode-map "q" 'org-agenda-quit)
  1833. (org-defkey org-agenda-mode-map "Q" 'org-agenda-Quit)
  1834. (org-defkey org-agenda-mode-map "x" 'org-agenda-exit)
  1835. (org-defkey org-agenda-mode-map "\C-x\C-w" 'org-agenda-write)
  1836. (org-defkey org-agenda-mode-map "\C-x\C-s" 'org-save-all-org-buffers)
  1837. (org-defkey org-agenda-mode-map "s" 'org-save-all-org-buffers)
  1838. (org-defkey org-agenda-mode-map "T" 'org-agenda-show-tags)
  1839. (org-defkey org-agenda-mode-map "n" 'org-agenda-next-line)
  1840. (org-defkey org-agenda-mode-map "p" 'org-agenda-previous-line)
  1841. (org-defkey org-agenda-mode-map "N" 'org-agenda-next-item)
  1842. (org-defkey org-agenda-mode-map "P" 'org-agenda-previous-item)
  1843. (substitute-key-definition 'next-line 'org-agenda-next-line
  1844. org-agenda-mode-map global-map)
  1845. (substitute-key-definition 'previous-line 'org-agenda-previous-line
  1846. org-agenda-mode-map global-map)
  1847. (org-defkey org-agenda-mode-map "\C-c\C-a" 'org-attach)
  1848. (org-defkey org-agenda-mode-map "\C-c\C-n" 'org-agenda-next-date-line)
  1849. (org-defkey org-agenda-mode-map "\C-c\C-p" 'org-agenda-previous-date-line)
  1850. (org-defkey org-agenda-mode-map "," 'org-agenda-priority)
  1851. (org-defkey org-agenda-mode-map "\C-c," 'org-agenda-show-priority)
  1852. (org-defkey org-agenda-mode-map "i" 'org-agenda-diary-entry)
  1853. (org-defkey org-agenda-mode-map "c" 'org-agenda-goto-calendar)
  1854. (org-defkey org-agenda-mode-map "C" 'org-agenda-convert-date)
  1855. (org-defkey org-agenda-mode-map "M" 'org-agenda-phases-of-moon)
  1856. (org-defkey org-agenda-mode-map "S" 'org-agenda-sunrise-sunset)
  1857. (org-defkey org-agenda-mode-map "h" 'org-agenda-holidays)
  1858. (org-defkey org-agenda-mode-map "H" 'org-agenda-holidays)
  1859. (org-defkey org-agenda-mode-map "\C-c\C-x\C-i" 'org-agenda-clock-in)
  1860. (org-defkey org-agenda-mode-map "I" 'org-agenda-clock-in)
  1861. (org-defkey org-agenda-mode-map "\C-c\C-x\C-o" 'org-agenda-clock-out)
  1862. (org-defkey org-agenda-mode-map "O" 'org-agenda-clock-out)
  1863. (org-defkey org-agenda-mode-map "\C-c\C-x\C-x" 'org-agenda-clock-cancel)
  1864. (org-defkey org-agenda-mode-map "X" 'org-agenda-clock-cancel)
  1865. (org-defkey org-agenda-mode-map "\C-c\C-x\C-j" 'org-clock-goto)
  1866. (org-defkey org-agenda-mode-map "J" 'org-agenda-clock-goto)
  1867. (org-defkey org-agenda-mode-map "+" 'org-agenda-priority-up)
  1868. (org-defkey org-agenda-mode-map "-" 'org-agenda-priority-down)
  1869. (org-defkey org-agenda-mode-map [(shift up)] 'org-agenda-priority-up)
  1870. (org-defkey org-agenda-mode-map [(shift down)] 'org-agenda-priority-down)
  1871. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (up)] 'org-agenda-priority-up)
  1872. (org-defkey org-agenda-mode-map [?\C-c ?\C-x (down)] 'org-agenda-priority-down)
  1873. (org-defkey org-agenda-mode-map "f" 'org-agenda-later)
  1874. (org-defkey org-agenda-mode-map "b" 'org-agenda-earlier)
  1875. (org-defkey org-agenda-mode-map "\C-c\C-x\C-c" 'org-agenda-columns)
  1876. (org-defkey org-agenda-mode-map "\C-c\C-x>" 'org-agenda-remove-restriction-lock)
  1877. (org-defkey org-agenda-mode-map "[" 'org-agenda-manipulate-query-add)
  1878. (org-defkey org-agenda-mode-map "]" 'org-agenda-manipulate-query-subtract)
  1879. (org-defkey org-agenda-mode-map "{" 'org-agenda-manipulate-query-add-re)
  1880. (org-defkey org-agenda-mode-map "}" 'org-agenda-manipulate-query-subtract-re)
  1881. (org-defkey org-agenda-mode-map "/" 'org-agenda-filter-by-tag)
  1882. (org-defkey org-agenda-mode-map "\\" 'org-agenda-filter-by-tag-refine)
  1883. (org-defkey org-agenda-mode-map "<" 'org-agenda-filter-by-category)
  1884. (org-defkey org-agenda-mode-map "^" 'org-agenda-filter-by-top-category)
  1885. (org-defkey org-agenda-mode-map ";" 'org-timer-set-timer)
  1886. (define-key org-agenda-mode-map "?" 'org-agenda-show-the-flagging-note)
  1887. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mg" 'org-mobile-pull)
  1888. (org-defkey org-agenda-mode-map "\C-c\C-x\C-mp" 'org-mobile-push)
  1889. (org-defkey org-agenda-mode-map [mouse-2] 'org-agenda-goto-mouse)
  1890. (org-defkey org-agenda-mode-map [mouse-3] 'org-agenda-show-mouse)
  1891. (when org-agenda-mouse-1-follows-link
  1892. (org-defkey org-agenda-mode-map [follow-link] 'mouse-face))
  1893. (easy-menu-define org-agenda-menu org-agenda-mode-map "Agenda menu"
  1894. '("Agenda"
  1895. ("Agenda Files")
  1896. "--"
  1897. ("Agenda Dates"
  1898. ["Goto Today" org-agenda-goto-today (org-agenda-check-type nil 'agenda 'timeline)]
  1899. ["Next Dates" org-agenda-later (org-agenda-check-type nil 'agenda)]
  1900. ["Previous Dates" org-agenda-earlier (org-agenda-check-type nil 'agenda)]
  1901. ["Jump to date" org-agenda-goto-date (org-agenda-check-type nil 'agenda)])
  1902. "--"
  1903. ("View"
  1904. ["Day View" org-agenda-day-view
  1905. :active (org-agenda-check-type nil 'agenda)
  1906. :style radio :selected (eq org-agenda-current-span 'day)
  1907. :keys "v d (or just d)"]
  1908. ["Week View" org-agenda-week-view
  1909. :active (org-agenda-check-type nil 'agenda)
  1910. :style radio :selected (eq org-agenda-current-span 'week)
  1911. :keys "v w (or just w)"]
  1912. ["Month View" org-agenda-month-view
  1913. :active (org-agenda-check-type nil 'agenda)
  1914. :style radio :selected (eq org-agenda-current-span 'month)
  1915. :keys "v m"]
  1916. ["Year View" org-agenda-year-view
  1917. :active (org-agenda-check-type nil 'agenda)
  1918. :style radio :selected (eq org-agenda-current-span 'year)
  1919. :keys "v y"]
  1920. "--"
  1921. ["Include Diary" org-agenda-toggle-diary
  1922. :style toggle :selected org-agenda-include-diary
  1923. :active (org-agenda-check-type nil 'agenda)]
  1924. ["Include Deadlines" org-agenda-toggle-deadlines
  1925. :style toggle :selected org-agenda-include-deadlines
  1926. :active (org-agenda-check-type nil 'agenda)]
  1927. ["Use Time Grid" org-agenda-toggle-time-grid
  1928. :style toggle :selected org-agenda-use-time-grid
  1929. :active (org-agenda-check-type nil 'agenda)]
  1930. "--"
  1931. ["Show clock report" org-agenda-clockreport-mode
  1932. :style toggle :selected org-agenda-clockreport-mode
  1933. :active (org-agenda-check-type nil 'agenda)]
  1934. ["Show some entry text" org-agenda-entry-text-mode
  1935. :style toggle :selected org-agenda-entry-text-mode
  1936. :active t]
  1937. "--"
  1938. ["Show Logbook entries" org-agenda-log-mode
  1939. :style toggle :selected org-agenda-show-log
  1940. :active (org-agenda-check-type nil 'agenda 'timeline)
  1941. :keys "v l (or just l)"]
  1942. ["Include archived trees" org-agenda-archives-mode
  1943. :style toggle :selected org-agenda-archives-mode :active t
  1944. :keys "v a"]
  1945. ["Include archive files" (org-agenda-archives-mode t)
  1946. :style toggle :selected (eq org-agenda-archives-mode t) :active t
  1947. :keys "v A"]
  1948. "--"
  1949. ["Remove Restriction" org-agenda-remove-restriction-lock org-agenda-restrict])
  1950. ["Write view to file" org-agenda-write t]
  1951. ["Rebuild buffer" org-agenda-redo t]
  1952. ["Save all Org-mode Buffers" org-save-all-org-buffers t]
  1953. "--"
  1954. ["Show original entry" org-agenda-show t]
  1955. ["Go To (other window)" org-agenda-goto t]
  1956. ["Go To (this window)" org-agenda-switch-to t]
  1957. ["Capture with cursor date" org-agenda-capture t]
  1958. ["Follow Mode" org-agenda-follow-mode
  1959. :style toggle :selected org-agenda-follow-mode :active t]
  1960. ; ["Tree to indirect frame" org-agenda-tree-to-indirect-buffer t]
  1961. "--"
  1962. ("TODO"
  1963. ["Cycle TODO" org-agenda-todo t]
  1964. ["Next TODO set" org-agenda-todo-nextset t]
  1965. ["Previous TODO set" org-agenda-todo-previousset t]
  1966. ["Add note" org-agenda-add-note t])
  1967. ("Archive/Refile/Delete"
  1968. ["Archive default" org-agenda-archive-default t]
  1969. ["Archive default" org-agenda-archive-default-with-confirmation t]
  1970. ["Toggle ARCHIVE tag" org-agenda-toggle-archive-tag t]
  1971. ["Move to archive sibling" org-agenda-archive-to-archive-sibling t]
  1972. ["Archive subtree" org-agenda-archive t]
  1973. "--"
  1974. ["Refile" org-agenda-refile t]
  1975. "--"
  1976. ["Delete subtree" org-agenda-kill t])
  1977. ("Bulk action"
  1978. ["Mark entry" org-agenda-bulk-mark t]
  1979. ["Mark all" org-agenda-bulk-mark-all t]
  1980. ["Mark matching regexp" org-agenda-bulk-mark-regexp t]
  1981. ["Unmark entry" org-agenda-bulk-unmark t]
  1982. ["Unmark all entries" org-agenda-bulk-unmark-all :active t :keys "U"])
  1983. ["Act on all marked" org-agenda-bulk-action t]
  1984. "--"
  1985. ("Tags and Properties"
  1986. ["Show all Tags" org-agenda-show-tags t]
  1987. ["Set Tags current line" org-agenda-set-tags (not (org-region-active-p))]
  1988. ["Change tag in region" org-agenda-set-tags (org-region-active-p)]
  1989. "--"
  1990. ["Column View" org-columns t])
  1991. ("Deadline/Schedule"
  1992. ["Schedule" org-agenda-schedule t]
  1993. ["Set Deadline" org-agenda-deadline t]
  1994. "--"
  1995. ["Change Date +1 day" org-agenda-date-later (org-agenda-check-type nil 'agenda 'timeline)]
  1996. ["Change Date -1 day" org-agenda-date-earlier (org-agenda-check-type nil 'agenda 'timeline)]
  1997. ["Change Time +1 hour" org-agenda-do-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-right"]
  1998. ["Change Time -1 hour" org-agenda-do-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u S-left"]
  1999. ["Change Time + min" org-agenda-date-later :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-right"]
  2000. ["Change Time - min" org-agenda-date-earlier :active (org-agenda-check-type nil 'agenda 'timeline) :keys "C-u C-u S-left"]
  2001. ["Change Date to ..." org-agenda-date-prompt (org-agenda-check-type nil 'agenda 'timeline)])
  2002. ("Clock and Effort"
  2003. ["Clock in" org-agenda-clock-in t]
  2004. ["Clock out" org-agenda-clock-out t]
  2005. ["Clock cancel" org-agenda-clock-cancel t]
  2006. ["Goto running clock" org-clock-goto t]
  2007. "--"
  2008. ["Set Effort" org-agenda-set-effort t]
  2009. ["Change clocked effort" org-clock-modify-effort-estimate
  2010. (org-clock-is-active)])
  2011. ("Priority"
  2012. ["Set Priority" org-agenda-priority t]
  2013. ["Increase Priority" org-agenda-priority-up t]
  2014. ["Decrease Priority" org-agenda-priority-down t]
  2015. ["Show Priority" org-agenda-show-priority t])
  2016. ("Calendar/Diary"
  2017. ["New Diary Entry" org-agenda-diary-entry (org-agenda-check-type nil 'agenda 'timeline)]
  2018. ["Goto Calendar" org-agenda-goto-calendar (org-agenda-check-type nil 'agenda 'timeline)]
  2019. ["Phases of the Moon" org-agenda-phases-of-moon (org-agenda-check-type nil 'agenda 'timeline)]
  2020. ["Sunrise/Sunset" org-agenda-sunrise-sunset (org-agenda-check-type nil 'agenda 'timeline)]
  2021. ["Holidays" org-agenda-holidays (org-agenda-check-type nil 'agenda 'timeline)]
  2022. ["Convert" org-agenda-convert-date (org-agenda-check-type nil 'agenda 'timeline)]
  2023. "--"
  2024. ["Create iCalendar File" org-export-icalendar-combine-agenda-files t])
  2025. "--"
  2026. ["Undo Remote Editing" org-agenda-undo org-agenda-undo-list]
  2027. "--"
  2028. ("MobileOrg"
  2029. ["Push Files and Views" org-mobile-push t]
  2030. ["Get Captured and Flagged" org-mobile-pull t]
  2031. ["Find FLAGGED Tasks" (org-agenda nil "?") :active t :keys "C-c a ?"]
  2032. ["Show note / unflag" org-agenda-show-the-flagging-note t]
  2033. "--"
  2034. ["Setup" (progn (require 'org-mobile) (customize-group 'org-mobile)) t])
  2035. "--"
  2036. ["Quit" org-agenda-quit t]
  2037. ["Exit and Release Buffers" org-agenda-exit t]
  2038. ))
  2039. ;;; Agenda undo
  2040. (defvar org-agenda-allow-remote-undo t
  2041. "Non-nil means allow remote undo from the agenda buffer.")
  2042. (defvar org-agenda-undo-has-started-in nil
  2043. "Buffers that have already seen `undo-start' in the current undo sequence.")
  2044. (defun org-agenda-undo ()
  2045. "Undo a remote editing step in the agenda.
  2046. This undoes changes both in the agenda buffer and in the remote buffer
  2047. that have been changed along."
  2048. (interactive)
  2049. (or org-agenda-allow-remote-undo
  2050. (error "Check the variable `org-agenda-allow-remote-undo' to activate remote undo"))
  2051. (if (not (eq this-command last-command))
  2052. (setq org-agenda-undo-has-started-in nil
  2053. org-agenda-pending-undo-list org-agenda-undo-list))
  2054. (if (not org-agenda-pending-undo-list)
  2055. (error "No further undo information"))
  2056. (let* ((entry (pop org-agenda-pending-undo-list))
  2057. buf line cmd rembuf)
  2058. (setq cmd (pop entry) line (pop entry))
  2059. (setq rembuf (nth 2 entry))
  2060. (org-with-remote-undo rembuf
  2061. (while (bufferp (setq buf (pop entry)))
  2062. (if (pop entry)
  2063. (with-current-buffer buf
  2064. (let ((last-undo-buffer buf)
  2065. (inhibit-read-only t))
  2066. (unless (memq buf org-agenda-undo-has-started-in)
  2067. (push buf org-agenda-undo-has-started-in)
  2068. (make-local-variable 'pending-undo-list)
  2069. (undo-start))
  2070. (while (and pending-undo-list
  2071. (listp pending-undo-list)
  2072. (not (car pending-undo-list)))
  2073. (pop pending-undo-list))
  2074. (undo-more 1))))))
  2075. (org-goto-line line)
  2076. (message "`%s' undone (buffer %s)" cmd (buffer-name rembuf))))
  2077. (defun org-verify-change-for-undo (l1 l2)
  2078. "Verify that a real change occurred between the undo lists L1 and L2."
  2079. (while (and l1 (listp l1) (null (car l1))) (pop l1))
  2080. (while (and l2 (listp l2) (null (car l2))) (pop l2))
  2081. (not (eq l1 l2)))
  2082. ;;; Agenda dispatch
  2083. (defvar org-agenda-restrict-begin (make-marker))
  2084. (defvar org-agenda-restrict-end (make-marker))
  2085. (defvar org-agenda-last-dispatch-buffer nil)
  2086. (defvar org-agenda-overriding-restriction nil)
  2087. (defcustom org-agenda-custom-commands-contexts nil
  2088. "Alist of custom agenda keys and contextual rules.
  2089. For example, if you have a custom agenda command \"p\" and you
  2090. want this command to be accessible only from plain text files,
  2091. use this:
  2092. '((\"p\" (in-file . \"\\.txt\")))
  2093. Here are the available contexts definitions:
  2094. in-file: command displayed only in matching files
  2095. in-mode: command displayed only in matching modes
  2096. not-in-file: command not displayed in matching files
  2097. not-in-mode: command not displayed in matching modes
  2098. [function]: a custom function taking no argument
  2099. If you define several checks, the agenda command will be
  2100. accessible if there is at least one valid check.
  2101. You can also bind a key to another agenda custom command
  2102. depending on contextual rules.
  2103. '((\"p\" \"q\" (in-file . \"\\.txt\")))
  2104. Here it means: in .txt files, use \"p\" as the key for the
  2105. agenda command otherwise associated with \"q\". (The command
  2106. originally associated with \"q\" is not displayed to avoid
  2107. duplicates.)"
  2108. ;; :version "24.3"
  2109. :group 'org-agenda-custom-commands
  2110. :type '(repeat (list :tag "Rule"
  2111. (string :tag " Agenda key")
  2112. (string :tag "Replace by command")
  2113. (repeat :tag "Available when"
  2114. (choice
  2115. (cons :tag "Condition"
  2116. (choice
  2117. (const :tag "In file" in-file)
  2118. (const :tag "Not in file" not-in-file)
  2119. (const :tag "In mode" in-mode)
  2120. (const :tag "Not in mode" not-in-mode))
  2121. (regexp))
  2122. (function :tag "Custom function"))))))
  2123. (defvar org-keys nil)
  2124. (defvar org-match nil)
  2125. ;;;###autoload
  2126. (defun org-agenda (&optional arg org-keys restriction)
  2127. "Dispatch agenda commands to collect entries to the agenda buffer.
  2128. Prompts for a command to execute. Any prefix arg will be passed
  2129. on to the selected command. The default selections are:
  2130. a Call `org-agenda-list' to display the agenda for current day or week.
  2131. t Call `org-todo-list' to display the global todo list.
  2132. T Call `org-todo-list' to display the global todo list, select only
  2133. entries with a specific TODO keyword (the user gets a prompt).
  2134. m Call `org-tags-view' to display headlines with tags matching
  2135. a condition (the user is prompted for the condition).
  2136. M Like `m', but select only TODO entries, no ordinary headlines.
  2137. L Create a timeline for the current buffer.
  2138. e Export views to associated files.
  2139. s Search entries for keywords.
  2140. S Search entries for keywords, only with TODO keywords.
  2141. / Multi occur across all agenda files and also files listed
  2142. in `org-agenda-text-search-extra-files'.
  2143. < Restrict agenda commands to buffer, subtree, or region.
  2144. Press several times to get the desired effect.
  2145. > Remove a previous restriction.
  2146. # List \"stuck\" projects.
  2147. ! Configure what \"stuck\" means.
  2148. C Configure custom agenda commands.
  2149. More commands can be added by configuring the variable
  2150. `org-agenda-custom-commands'. In particular, specific tags and TODO keyword
  2151. searches can be pre-defined in this way.
  2152. If the current buffer is in Org-mode and visiting a file, you can also
  2153. first press `<' once to indicate that the agenda should be temporarily
  2154. \(until the next use of \\[org-agenda]) restricted to the current file.
  2155. Pressing `<' twice means to restrict to the current subtree or region
  2156. \(if active)."
  2157. (interactive "P")
  2158. (catch 'exit
  2159. (let* ((prefix-descriptions nil)
  2160. (org-agenda-buffer-name org-agenda-buffer-name)
  2161. (org-agenda-window-setup (if (equal (buffer-name)
  2162. org-agenda-buffer-name)
  2163. 'current-window
  2164. org-agenda-window-setup))
  2165. (org-agenda-custom-commands-orig org-agenda-custom-commands)
  2166. (org-agenda-custom-commands
  2167. ;; normalize different versions
  2168. (delq nil
  2169. (mapcar
  2170. (lambda (x)
  2171. (cond ((stringp (cdr x))
  2172. (push x prefix-descriptions)
  2173. nil)
  2174. ((stringp (nth 1 x)) x)
  2175. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2176. (t (cons (car x) (cons "" (cdr x))))))
  2177. org-agenda-custom-commands)))
  2178. (org-agenda-custom-commands
  2179. (org-contextualize-keys
  2180. org-agenda-custom-commands org-agenda-custom-commands-contexts))
  2181. (buf (current-buffer))
  2182. (bfn (buffer-file-name (buffer-base-buffer)))
  2183. entry key type org-match lprops ans)
  2184. ;; Turn off restriction unless there is an overriding one,
  2185. (unless org-agenda-overriding-restriction
  2186. (unless (org-bound-and-true-p org-agenda-keep-restricted-file-list)
  2187. ;; There is a request to keep the file list in place
  2188. (put 'org-agenda-files 'org-restrict nil))
  2189. (setq org-agenda-restrict nil)
  2190. (move-marker org-agenda-restrict-begin nil)
  2191. (move-marker org-agenda-restrict-end nil))
  2192. ;; Delete old local properties
  2193. (put 'org-agenda-redo-command 'org-lprops nil)
  2194. ;; Delete previously set last-arguments
  2195. (put 'org-agenda-redo-command 'last-args nil)
  2196. ;; Remember where this call originated
  2197. (setq org-agenda-last-dispatch-buffer (current-buffer))
  2198. (unless org-keys
  2199. (setq ans (org-agenda-get-restriction-and-command prefix-descriptions)
  2200. org-keys (car ans)
  2201. restriction (cdr ans)))
  2202. ;; If we have sticky agenda buffers, set a name for the buffer,
  2203. ;; depending on the invoking keys. The user may still set this
  2204. ;; as a command option, which will overwrite what we do here.
  2205. (if org-agenda-sticky
  2206. (setq org-agenda-buffer-name
  2207. (format "*Org Agenda(%s)*" org-keys)))
  2208. ;; Establish the restriction, if any
  2209. (when (and (not org-agenda-overriding-restriction) restriction)
  2210. (put 'org-agenda-files 'org-restrict (list bfn))
  2211. (cond
  2212. ((eq restriction 'region)
  2213. (setq org-agenda-restrict t)
  2214. (move-marker org-agenda-restrict-begin (region-beginning))
  2215. (move-marker org-agenda-restrict-end (region-end)))
  2216. ((eq restriction 'subtree)
  2217. (save-excursion
  2218. (setq org-agenda-restrict t)
  2219. (org-back-to-heading t)
  2220. (move-marker org-agenda-restrict-begin (point))
  2221. (move-marker org-agenda-restrict-end
  2222. (progn (org-end-of-subtree t)))))))
  2223. ;; For example the todo list should not need it (but does...)
  2224. (cond
  2225. ((setq entry (assoc org-keys org-agenda-custom-commands))
  2226. (if (or (symbolp (nth 2 entry)) (functionp (nth 2 entry)))
  2227. (progn
  2228. (setq type (nth 2 entry) org-match (eval (nth 3 entry))
  2229. lprops (nth 4 entry))
  2230. (if org-agenda-sticky
  2231. (setq org-agenda-buffer-name
  2232. (or (and (stringp org-match) (format "*Org Agenda(%s:%s)*" org-keys org-match))
  2233. (format "*Org Agenda(%s)*" org-keys))))
  2234. (put 'org-agenda-redo-command 'org-lprops lprops)
  2235. (cond
  2236. ((eq type 'agenda)
  2237. (org-let lprops '(org-agenda-list current-prefix-arg)))
  2238. ((eq type 'alltodo)
  2239. (org-let lprops '(org-todo-list current-prefix-arg)))
  2240. ((eq type 'search)
  2241. (org-let lprops '(org-search-view current-prefix-arg org-match nil)))
  2242. ((eq type 'stuck)
  2243. (org-let lprops '(org-agenda-list-stuck-projects
  2244. current-prefix-arg)))
  2245. ((eq type 'tags)
  2246. (org-let lprops '(org-tags-view current-prefix-arg org-match)))
  2247. ((eq type 'tags-todo)
  2248. (org-let lprops '(org-tags-view '(4) org-match)))
  2249. ((eq type 'todo)
  2250. (org-let lprops '(org-todo-list org-match)))
  2251. ((eq type 'tags-tree)
  2252. (org-check-for-org-mode)
  2253. (org-let lprops '(org-match-sparse-tree current-prefix-arg org-match)))
  2254. ((eq type 'todo-tree)
  2255. (org-check-for-org-mode)
  2256. (org-let lprops
  2257. '(org-occur (concat "^" org-outline-regexp "[ \t]*"
  2258. (regexp-quote org-match) "\\>"))))
  2259. ((eq type 'occur-tree)
  2260. (org-check-for-org-mode)
  2261. (org-let lprops '(org-occur org-match)))
  2262. ((functionp type)
  2263. (org-let lprops '(funcall type org-match)))
  2264. ((fboundp type)
  2265. (org-let lprops '(funcall type org-match)))
  2266. (t (error "Invalid custom agenda command type %s" type))))
  2267. (org-agenda-run-series (nth 1 entry) (cddr entry))))
  2268. ((equal org-keys "C")
  2269. (setq org-agenda-custom-commands org-agenda-custom-commands-orig)
  2270. (customize-variable 'org-agenda-custom-commands))
  2271. ((equal org-keys "a") (call-interactively 'org-agenda-list))
  2272. ((equal org-keys "s") (call-interactively 'org-search-view))
  2273. ((equal org-keys "S") (org-call-with-arg 'org-search-view (or arg '(4))))
  2274. ((equal org-keys "t") (call-interactively 'org-todo-list))
  2275. ((equal org-keys "T") (org-call-with-arg 'org-todo-list (or arg '(4))))
  2276. ((equal org-keys "m") (call-interactively 'org-tags-view))
  2277. ((equal org-keys "M") (org-call-with-arg 'org-tags-view (or arg '(4))))
  2278. ((equal org-keys "e") (call-interactively 'org-store-agenda-views))
  2279. ((equal org-keys "?") (org-tags-view nil "+FLAGGED")
  2280. (org-add-hook
  2281. 'post-command-hook
  2282. (lambda ()
  2283. (unless (current-message)
  2284. (let* ((m (org-agenda-get-any-marker))
  2285. (note (and m (org-entry-get m "THEFLAGGINGNOTE"))))
  2286. (when note
  2287. (message (concat
  2288. "FLAGGING-NOTE ([?] for more info): "
  2289. (org-add-props
  2290. (replace-regexp-in-string
  2291. "\\\\n" "//"
  2292. (copy-sequence note))
  2293. nil 'face 'org-warning)))))))
  2294. t t))
  2295. ((equal org-keys "L")
  2296. (unless (derived-mode-p 'org-mode)
  2297. (error "This is not an Org-mode file"))
  2298. (unless restriction
  2299. (put 'org-agenda-files 'org-restrict (list bfn))
  2300. (org-call-with-arg 'org-timeline arg)))
  2301. ((equal org-keys "#") (call-interactively 'org-agenda-list-stuck-projects))
  2302. ((equal org-keys "/") (call-interactively 'org-occur-in-agenda-files))
  2303. ((equal org-keys "!") (customize-variable 'org-stuck-projects))
  2304. (t (error "Invalid agenda key"))))))
  2305. (defun org-agenda-append-agenda ()
  2306. "Append another agenda view to the current one.
  2307. This function allows interactive building of block agendas.
  2308. Agenda views are separated by `org-agenda-block-separator'."
  2309. (interactive)
  2310. (unless (derived-mode-p 'org-agenda-mode)
  2311. (error "Can only append from within agenda buffer"))
  2312. (let ((org-agenda-multi t))
  2313. (org-agenda)
  2314. (widen)
  2315. (org-agenda-finalize)
  2316. (org-agenda-fit-window-to-buffer)))
  2317. (defun org-agenda-normalize-custom-commands (cmds)
  2318. (delq nil
  2319. (mapcar
  2320. (lambda (x)
  2321. (cond ((stringp (cdr x)) nil)
  2322. ((stringp (nth 1 x)) x)
  2323. ((not (nth 1 x)) (cons (car x) (cons "" (cddr x))))
  2324. (t (cons (car x) (cons "" (cdr x))))))
  2325. cmds)))
  2326. (defun org-agenda-get-restriction-and-command (prefix-descriptions)
  2327. "The user interface for selecting an agenda command."
  2328. (catch 'exit
  2329. (let* ((bfn (buffer-file-name (buffer-base-buffer)))
  2330. (restrict-ok (and bfn (derived-mode-p 'org-mode)))
  2331. (region-p (org-region-active-p))
  2332. (custom org-agenda-custom-commands)
  2333. (selstring "")
  2334. restriction second-time
  2335. c entry key type match prefixes rmheader header-end custom1 desc
  2336. line lines left right n n1)
  2337. (save-window-excursion
  2338. (delete-other-windows)
  2339. (org-switch-to-buffer-other-window " *Agenda Commands*")
  2340. (erase-buffer)
  2341. (insert (eval-when-compile
  2342. (let ((header
  2343. "Press key for an agenda command: < Buffer, subtree/region restriction
  2344. -------------------------------- > Remove restriction
  2345. a Agenda for current week or day e Export agenda views
  2346. t List of all TODO entries T Entries with special TODO kwd
  2347. m Match a TAGS/PROP/TODO query M Like m, but only TODO entries
  2348. s Search for keywords S Like s, but only TODO entries
  2349. L Timeline for current buffer # List stuck projects (!=configure)
  2350. / Multi-occur C Configure custom agenda commands
  2351. ? Find :FLAGGED: entries * Toggle sticky agenda views
  2352. ")
  2353. (start 0))
  2354. (while (string-match
  2355. "\\(^\\| \\|(\\)\\(\\S-\\)\\( \\|=\\)"
  2356. header start)
  2357. (setq start (match-end 0))
  2358. (add-text-properties (match-beginning 2) (match-end 2)
  2359. '(face bold) header))
  2360. header)))
  2361. (setq header-end (move-marker (make-marker) (point)))
  2362. (while t
  2363. (setq custom1 custom)
  2364. (when (eq rmheader t)
  2365. (org-goto-line 1)
  2366. (re-search-forward ":" nil t)
  2367. (delete-region (match-end 0) (point-at-eol))
  2368. (forward-char 1)
  2369. (looking-at "-+")
  2370. (delete-region (match-end 0) (point-at-eol))
  2371. (move-marker header-end (match-end 0)))
  2372. (goto-char header-end)
  2373. (delete-region (point) (point-max))
  2374. ;; Produce all the lines that describe custom commands and prefixes
  2375. (setq lines nil)
  2376. (while (setq entry (pop custom1))
  2377. (setq key (car entry) desc (nth 1 entry)
  2378. type (nth 2 entry)
  2379. match (nth 3 entry))
  2380. (if (> (length key) 1)
  2381. (add-to-list 'prefixes (string-to-char key))
  2382. (setq line
  2383. (format
  2384. "%-4s%-14s"
  2385. (org-add-props (copy-sequence key)
  2386. '(face bold))
  2387. (cond
  2388. ((string-match "\\S-" desc) desc)
  2389. ((eq type 'agenda) "Agenda for current week or day")
  2390. ((eq type 'alltodo) "List of all TODO entries")
  2391. ((eq type 'search) "Word search")
  2392. ((eq type 'stuck) "List of stuck projects")
  2393. ((eq type 'todo) "TODO keyword")
  2394. ((eq type 'tags) "Tags query")
  2395. ((eq type 'tags-todo) "Tags (TODO)")
  2396. ((eq type 'tags-tree) "Tags tree")
  2397. ((eq type 'todo-tree) "TODO kwd tree")
  2398. ((eq type 'occur-tree) "Occur tree")
  2399. ((functionp type) (if (symbolp type)
  2400. (symbol-name type)
  2401. "Lambda expression"))
  2402. (t "???"))))
  2403. (if org-agenda-menu-show-matcher
  2404. (setq line
  2405. (concat line ": "
  2406. (cond
  2407. ((stringp match)
  2408. (setq match (copy-sequence match))
  2409. (org-add-props match nil 'face 'org-warning))
  2410. (match
  2411. (format "set of %d commands" (length match)))
  2412. (t ""))))
  2413. (if (org-string-nw-p match)
  2414. (add-text-properties
  2415. 0 (length line) (list 'help-echo
  2416. (concat "Matcher: "match)) line)))
  2417. (push line lines)))
  2418. (setq lines (nreverse lines))
  2419. (when prefixes
  2420. (mapc (lambda (x)
  2421. (push
  2422. (format "%s %s"
  2423. (org-add-props (char-to-string x)
  2424. nil 'face 'bold)
  2425. (or (cdr (assoc (concat selstring
  2426. (char-to-string x))
  2427. prefix-descriptions))
  2428. "Prefix key"))
  2429. lines))
  2430. prefixes))
  2431. ;; Check if we should display in two columns
  2432. (if org-agenda-menu-two-columns
  2433. (progn
  2434. (setq n (length lines)
  2435. n1 (+ (/ n 2) (mod n 2))
  2436. right (nthcdr n1 lines)
  2437. left (copy-sequence lines))
  2438. (setcdr (nthcdr (1- n1) left) nil))
  2439. (setq left lines right nil))
  2440. (while left
  2441. (insert "\n" (pop left))
  2442. (when right
  2443. (if (< (current-column) 40)
  2444. (move-to-column 40 t)
  2445. (insert " "))
  2446. (insert (pop right))))
  2447. ;; Make the window the right size
  2448. (goto-char (point-min))
  2449. (if second-time
  2450. (if (not (pos-visible-in-window-p (point-max)))
  2451. (org-fit-window-to-buffer))
  2452. (setq second-time t)
  2453. (org-fit-window-to-buffer))
  2454. ;; Ask for selection
  2455. (message "Press key for agenda command%s:"
  2456. (if (or restrict-ok org-agenda-overriding-restriction)
  2457. (if org-agenda-overriding-restriction
  2458. " (restriction lock active)"
  2459. (if restriction
  2460. (format " (restricted to %s)" restriction)
  2461. " (unrestricted)"))
  2462. ""))
  2463. (setq c (read-char-exclusive))
  2464. (message "")
  2465. (cond
  2466. ((assoc (char-to-string c) custom)
  2467. (setq selstring (concat selstring (char-to-string c)))
  2468. (throw 'exit (cons selstring restriction)))
  2469. ((memq c prefixes)
  2470. (setq selstring (concat selstring (char-to-string c))
  2471. prefixes nil
  2472. rmheader (or rmheader t)
  2473. custom (delq nil (mapcar
  2474. (lambda (x)
  2475. (if (or (= (length (car x)) 1)
  2476. (/= (string-to-char (car x)) c))
  2477. nil
  2478. (cons (substring (car x) 1) (cdr x))))
  2479. custom))))
  2480. ((eq c ?*)
  2481. (call-interactively 'org-toggle-sticky-agenda)
  2482. (sit-for 2))
  2483. ((and (not restrict-ok) (memq c '(?1 ?0 ?<)))
  2484. (message "Restriction is only possible in Org-mode buffers")
  2485. (ding) (sit-for 1))
  2486. ((eq c ?1)
  2487. (org-agenda-remove-restriction-lock 'noupdate)
  2488. (setq restriction 'buffer))
  2489. ((eq c ?0)
  2490. (org-agenda-remove-restriction-lock 'noupdate)
  2491. (setq restriction (if region-p 'region 'subtree)))
  2492. ((eq c ?<)
  2493. (org-agenda-remove-restriction-lock 'noupdate)
  2494. (setq restriction
  2495. (cond
  2496. ((eq restriction 'buffer)
  2497. (if region-p 'region 'subtree))
  2498. ((memq restriction '(subtree region))
  2499. nil)
  2500. (t 'buffer))))
  2501. ((eq c ?>)
  2502. (org-agenda-remove-restriction-lock 'noupdate)
  2503. (setq restriction nil))
  2504. ((and (equal selstring "") (memq c '(?s ?S ?a ?t ?m ?L ?C ?e ?T ?M ?# ?! ?/ ??)))
  2505. (throw 'exit (cons (setq selstring (char-to-string c)) restriction)))
  2506. ((and (> (length selstring) 0) (eq c ?\d))
  2507. (delete-window)
  2508. (org-agenda-get-restriction-and-command prefix-descriptions))
  2509. ((equal c ?q) (error "Abort"))
  2510. (t (error "Invalid key %c" c))))))))
  2511. (defun org-agenda-fit-window-to-buffer ()
  2512. "Fit the window to the buffer size."
  2513. (and (memq org-agenda-window-setup '(reorganize-frame))
  2514. (fboundp 'fit-window-to-buffer)
  2515. (org-fit-window-to-buffer
  2516. nil
  2517. (floor (* (frame-height) (cdr org-agenda-window-frame-fractions)))
  2518. (floor (* (frame-height) (car org-agenda-window-frame-fractions))))))
  2519. (defvar org-cmd nil)
  2520. (defvar org-agenda-overriding-cmd nil)
  2521. (defvar org-agenda-overriding-arguments nil)
  2522. (defvar org-agenda-overriding-cmd-arguments nil)
  2523. (defun org-agenda-run-series (name series)
  2524. (org-let (nth 1 series) '(org-agenda-prepare name))
  2525. ;; We need to reset agenda markers here, because when constructing a
  2526. ;; block agenda, the individual blocks do not do that.
  2527. (org-agenda-reset-markers)
  2528. (let* ((org-agenda-multi t)
  2529. (redo (list 'org-agenda-run-series name (list 'quote series)))
  2530. (cmds (car series))
  2531. (gprops (nth 1 series))
  2532. match ;; The byte compiler incorrectly complains about this. Keep it!
  2533. org-cmd type lprops)
  2534. (while (setq org-cmd (pop cmds))
  2535. (setq type (car org-cmd)
  2536. match (eval (nth 1 org-cmd))
  2537. lprops (nth 2 org-cmd))
  2538. (let ((org-agenda-overriding-arguments
  2539. (if (eq org-agenda-overriding-cmd org-cmd)
  2540. (or org-agenda-overriding-arguments
  2541. org-agenda-overriding-cmd-arguments))))
  2542. (cond
  2543. ((eq type 'agenda)
  2544. (org-let2 gprops lprops
  2545. '(call-interactively 'org-agenda-list)))
  2546. ((eq type 'alltodo)
  2547. (org-let2 gprops lprops
  2548. '(call-interactively 'org-todo-list)))
  2549. ((eq type 'search)
  2550. (org-let2 gprops lprops
  2551. '(org-search-view current-prefix-arg match nil)))
  2552. ((eq type 'stuck)
  2553. (org-let2 gprops lprops
  2554. '(call-interactively 'org-agenda-list-stuck-projects)))
  2555. ((eq type 'tags)
  2556. (org-let2 gprops lprops
  2557. '(org-tags-view current-prefix-arg match)))
  2558. ((eq type 'tags-todo)
  2559. (org-let2 gprops lprops
  2560. '(org-tags-view '(4) match)))
  2561. ((eq type 'todo)
  2562. (org-let2 gprops lprops
  2563. '(org-todo-list match)))
  2564. ((fboundp type)
  2565. (org-let2 gprops lprops
  2566. '(funcall type match)))
  2567. (t (error "Invalid type in command series")))))
  2568. (widen)
  2569. (let ((inhibit-read-only t))
  2570. (add-text-properties (point-min) (point-max)
  2571. `(org-serie t org-serie-redo-cmd ,redo)))
  2572. (setq org-agenda-redo-command redo)
  2573. (goto-char (point-min)))
  2574. (org-agenda-fit-window-to-buffer)
  2575. (org-let (nth 1 series) '(org-agenda-finalize)))
  2576. ;;;###autoload
  2577. (defmacro org-batch-agenda (cmd-key &rest parameters)
  2578. "Run an agenda command in batch mode and send the result to STDOUT.
  2579. If CMD-KEY is a string of length 1, it is used as a key in
  2580. `org-agenda-custom-commands' and triggers this command. If it is a
  2581. longer string it is used as a tags/todo match string.
  2582. Parameters are alternating variable names and values that will be bound
  2583. before running the agenda command."
  2584. (org-eval-in-environment (org-make-parameter-alist parameters)
  2585. (if (> (length cmd-key) 2)
  2586. (org-tags-view nil cmd-key)
  2587. (org-agenda nil cmd-key)))
  2588. (set-buffer org-agenda-buffer-name)
  2589. (princ (buffer-string)))
  2590. (def-edebug-spec org-batch-agenda (form &rest sexp))
  2591. (defvar org-agenda-info nil)
  2592. ;;;###autoload
  2593. (defmacro org-batch-agenda-csv (cmd-key &rest parameters)
  2594. "Run an agenda command in batch mode and send the result to STDOUT.
  2595. If CMD-KEY is a string of length 1, it is used as a key in
  2596. `org-agenda-custom-commands' and triggers this command. If it is a
  2597. longer string it is used as a tags/todo match string.
  2598. Parameters are alternating variable names and values that will be bound
  2599. before running the agenda command.
  2600. The output gives a line for each selected agenda item. Each
  2601. item is a list of comma-separated values, like this:
  2602. category,head,type,todo,tags,date,time,extra,priority-l,priority-n
  2603. category The category of the item
  2604. head The headline, without TODO kwd, TAGS and PRIORITY
  2605. type The type of the agenda entry, can be
  2606. todo selected in TODO match
  2607. tagsmatch selected in tags match
  2608. diary imported from diary
  2609. deadline a deadline on given date
  2610. scheduled scheduled on given date
  2611. timestamp entry has timestamp on given date
  2612. closed entry was closed on given date
  2613. upcoming-deadline warning about deadline
  2614. past-scheduled forwarded scheduled item
  2615. block entry has date block including g. date
  2616. todo The todo keyword, if any
  2617. tags All tags including inherited ones, separated by colons
  2618. date The relevant date, like 2007-2-14
  2619. time The time, like 15:00-16:50
  2620. extra Sting with extra planning info
  2621. priority-l The priority letter if any was given
  2622. priority-n The computed numerical priority
  2623. agenda-day The day in the agenda where this is listed"
  2624. (org-eval-in-environment (append '((org-agenda-remove-tags t))
  2625. (org-make-parameter-alist parameters))
  2626. (if (> (length cmd-key) 2)
  2627. (org-tags-view nil cmd-key)
  2628. (org-agenda nil cmd-key)))
  2629. (set-buffer org-agenda-buffer-name)
  2630. (let* ((lines (org-split-string (buffer-string) "\n"))
  2631. line)
  2632. (while (setq line (pop lines))
  2633. (catch 'next
  2634. (if (not (get-text-property 0 'org-category line)) (throw 'next nil))
  2635. (setq org-agenda-info
  2636. (org-fix-agenda-info (text-properties-at 0 line)))
  2637. (princ
  2638. (mapconcat 'org-agenda-export-csv-mapper
  2639. '(org-category txt type todo tags date time extra
  2640. priority-letter priority agenda-day)
  2641. ","))
  2642. (princ "\n")))))
  2643. (def-edebug-spec org-batch-agenda-csv (form &rest sexp))
  2644. (defun org-fix-agenda-info (props)
  2645. "Make sure all properties on an agenda item have a canonical form.
  2646. This ensures the export commands can easily use it."
  2647. (let (tmp re)
  2648. (when (setq tmp (plist-get props 'tags))
  2649. (setq props (plist-put props 'tags (mapconcat 'identity tmp ":"))))
  2650. (when (setq tmp (plist-get props 'date))
  2651. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2652. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2653. '((format "%4d, %9s %2s, %4s" dayname monthname day year))
  2654. (setq tmp (calendar-date-string tmp)))
  2655. (setq props (plist-put props 'date tmp)))
  2656. (when (setq tmp (plist-get props 'day))
  2657. (if (integerp tmp) (setq tmp (calendar-gregorian-from-absolute tmp)))
  2658. (let ((calendar-date-display-form '(year "-" month "-" day)))
  2659. (setq tmp (calendar-date-string tmp)))
  2660. (setq props (plist-put props 'day tmp))
  2661. (setq props (plist-put props 'agenda-day tmp)))
  2662. (when (setq tmp (plist-get props 'txt))
  2663. (when (string-match "\\[#\\([A-Z0-9]\\)\\] ?" tmp)
  2664. (plist-put props 'priority-letter (match-string 1 tmp))
  2665. (setq tmp (replace-match "" t t tmp)))
  2666. (when (and (setq re (plist-get props 'org-todo-regexp))
  2667. (setq re (concat "\\`\\.*" re " ?"))
  2668. (string-match re tmp))
  2669. (plist-put props 'todo (match-string 1 tmp))
  2670. (setq tmp (replace-match "" t t tmp)))
  2671. (plist-put props 'txt tmp)))
  2672. props)
  2673. (defun org-agenda-export-csv-mapper (prop)
  2674. (let ((res (plist-get org-agenda-info prop)))
  2675. (setq res
  2676. (cond
  2677. ((not res) "")
  2678. ((stringp res) res)
  2679. (t (prin1-to-string res))))
  2680. (while (string-match "," res)
  2681. (setq res (replace-match ";" t t res)))
  2682. (org-trim res)))
  2683. ;;;###autoload
  2684. (defun org-store-agenda-views (&rest parameters)
  2685. (interactive)
  2686. (eval (list 'org-batch-store-agenda-views)))
  2687. ;;;###autoload
  2688. (defmacro org-batch-store-agenda-views (&rest parameters)
  2689. "Run all custom agenda commands that have a file argument."
  2690. (let ((cmds (org-agenda-normalize-custom-commands org-agenda-custom-commands))
  2691. (pop-up-frames nil)
  2692. (dir default-directory)
  2693. (pars (org-make-parameter-alist parameters))
  2694. cmd thiscmdkey thiscmdcmd match files opts cmd-or-set bufname)
  2695. (save-window-excursion
  2696. (while cmds
  2697. (setq cmd (pop cmds)
  2698. thiscmdkey (car cmd)
  2699. thiscmdcmd (cdr cmd)
  2700. match (nth 2 thiscmdcmd)
  2701. bufname (if org-agenda-sticky
  2702. (or (and (stringp match)
  2703. (format "*Org Agenda(%s:%s)*" thiscmdkey match))
  2704. (format "*Org Agenda(%s)*" thiscmdkey))
  2705. org-agenda-buffer-name)
  2706. cmd-or-set (nth 2 cmd)
  2707. opts (nth (if (listp cmd-or-set) 3 4) cmd)
  2708. files (nth (if (listp cmd-or-set) 4 5) cmd))
  2709. (if (stringp files) (setq files (list files)))
  2710. (when files
  2711. (org-eval-in-environment (append org-agenda-exporter-settings
  2712. opts pars)
  2713. (org-agenda nil thiscmdkey))
  2714. (set-buffer bufname)
  2715. (while files
  2716. (org-eval-in-environment (append org-agenda-exporter-settings
  2717. opts pars)
  2718. (org-agenda-write (expand-file-name (pop files) dir) nil t bufname)))
  2719. (and (get-buffer bufname)
  2720. (kill-buffer bufname)))))))
  2721. (def-edebug-spec org-batch-store-agenda-views (&rest sexp))
  2722. (defvar org-agenda-current-span nil
  2723. "The current span used in the agenda view.") ; local variable in the agenda buffer
  2724. (defun org-agenda-mark-header-line (pos)
  2725. "Mark the line at POS as an agenda structure header."
  2726. (save-excursion
  2727. (goto-char pos)
  2728. (put-text-property (point-at-bol) (point-at-eol)
  2729. 'org-agenda-structural-header t)
  2730. (when org-agenda-title-append
  2731. (put-text-property (point-at-bol) (point-at-eol)
  2732. 'org-agenda-title-append org-agenda-title-append))))
  2733. (defvar org-mobile-creating-agendas) ; defined in org-mobile.el
  2734. (defvar org-agenda-write-buffer-name "Agenda View")
  2735. (defun org-agenda-write (file &optional open nosettings agenda-bufname)
  2736. "Write the current buffer (an agenda view) as a file.
  2737. Depending on the extension of the file name, plain text (.txt),
  2738. HTML (.html or .htm) or Postscript (.ps) is produced.
  2739. If the extension is .ics, run icalendar export over all files used
  2740. to construct the agenda and limit the export to entries listed in the
  2741. agenda now.
  2742. With prefix argument OPEN, open the new file immediately.
  2743. If NOSETTINGS is given, do not scope the settings of
  2744. `org-agenda-exporter-settings' into the export commands. This is used when
  2745. the settings have already been scoped and we do not wish to overrule other,
  2746. higher priority settings.
  2747. If AGENDA-BUFFER-NAME, use this as the buffer name for the agenda to write."
  2748. (interactive "FWrite agenda to file: \nP")
  2749. (if (not (file-writable-p file))
  2750. (error "Cannot write agenda to file %s" file))
  2751. (org-let (if nosettings nil org-agenda-exporter-settings)
  2752. '(save-excursion
  2753. (save-window-excursion
  2754. (org-agenda-mark-filtered-text)
  2755. (let ((bs (copy-sequence (buffer-string))) beg)
  2756. (org-agenda-unmark-filtered-text)
  2757. (with-temp-buffer
  2758. (rename-buffer org-agenda-write-buffer-name t)
  2759. (set-buffer-modified-p nil)
  2760. (insert bs)
  2761. (org-agenda-remove-marked-text 'org-filtered)
  2762. (while (setq beg (text-property-any (point-min) (point-max)
  2763. 'org-filtered t))
  2764. (delete-region
  2765. beg (or (next-single-property-change beg 'org-filtered)
  2766. (point-max))))
  2767. (run-hooks 'org-agenda-before-write-hook)
  2768. (cond
  2769. ((org-bound-and-true-p org-mobile-creating-agendas)
  2770. (org-mobile-write-agenda-for-mobile file))
  2771. ((string-match "\\.html?\\'" file)
  2772. (require 'htmlize)
  2773. (set-buffer (htmlize-buffer (current-buffer)))
  2774. (when (and org-agenda-export-html-style
  2775. (string-match "<style>" org-agenda-export-html-style))
  2776. ;; replace <style> section with org-agenda-export-html-style
  2777. (goto-char (point-min))
  2778. (kill-region (- (search-forward "<style") 6)
  2779. (search-forward "</style>"))
  2780. (insert org-agenda-export-html-style))
  2781. (write-file file)
  2782. (kill-buffer (current-buffer))
  2783. (message "HTML written to %s" file))
  2784. ((string-match "\\.ps\\'" file)
  2785. (require 'ps-print)
  2786. (ps-print-buffer-with-faces file)
  2787. (message "Postscript written to %s" file))
  2788. ((string-match "\\.pdf\\'" file)
  2789. (require 'ps-print)
  2790. (ps-print-buffer-with-faces
  2791. (concat (file-name-sans-extension file) ".ps"))
  2792. (call-process "ps2pdf" nil nil nil
  2793. (expand-file-name
  2794. (concat (file-name-sans-extension file) ".ps"))
  2795. (expand-file-name file))
  2796. (delete-file (concat (file-name-sans-extension file) ".ps"))
  2797. (message "PDF written to %s" file))
  2798. ((string-match "\\.ics\\'" file)
  2799. (require 'org-icalendar)
  2800. (let ((org-agenda-marker-table
  2801. (org-create-marker-find-array
  2802. (org-agenda-collect-markers)))
  2803. (org-icalendar-verify-function 'org-check-agenda-marker-table)
  2804. (org-combined-agenda-icalendar-file file))
  2805. (apply 'org-export-icalendar 'combine
  2806. (org-agenda-files nil 'ifmode))))
  2807. (t
  2808. (let ((bs (buffer-string)))
  2809. (find-file file)
  2810. (erase-buffer)
  2811. (insert bs)
  2812. (save-buffer 0)
  2813. (kill-buffer (current-buffer))
  2814. (message "Plain text written to %s" file))))))))
  2815. (set-buffer (or agenda-bufname
  2816. (and (called-interactively-p 'any) (buffer-name))
  2817. org-agenda-buffer-name)))
  2818. (when open (org-open-file file)))
  2819. (defvar org-agenda-tag-filter-overlays nil)
  2820. (defvar org-agenda-cat-filter-overlays nil)
  2821. (defun org-agenda-mark-filtered-text ()
  2822. "Mark all text hidden by filtering with a text property."
  2823. (let ((inhibit-read-only t))
  2824. (mapc
  2825. (lambda (o)
  2826. (when (equal (overlay-buffer o) (current-buffer))
  2827. (put-text-property
  2828. (overlay-start o) (overlay-end o)
  2829. 'org-filtered t)))
  2830. (append org-agenda-tag-filter-overlays
  2831. org-agenda-cat-filter-overlays))))
  2832. (defun org-agenda-unmark-filtered-text ()
  2833. "Remove the filtering text property."
  2834. (let ((inhibit-read-only t))
  2835. (remove-text-properties (point-min) (point-max) '(org-filtered t))))
  2836. (defun org-agenda-remove-marked-text (property &optional value)
  2837. "Delete all text marked with VALUE of PROPERTY.
  2838. VALUE defaults to t."
  2839. (let (beg)
  2840. (setq value (or value t))
  2841. (while (setq beg (text-property-any (point-min) (point-max)
  2842. property value))
  2843. (delete-region
  2844. beg (or (next-single-property-change beg 'org-filtered)
  2845. (point-max))))))
  2846. (defun org-agenda-add-entry-text ()
  2847. "Add entry text to agenda lines.
  2848. This will add a maximum of `org-agenda-add-entry-text-maxlines' lines of the
  2849. entry text following headings shown in the agenda.
  2850. Drawers will be excluded, also the line with scheduling/deadline info."
  2851. (when (and (> org-agenda-add-entry-text-maxlines 0)
  2852. (not (org-bound-and-true-p org-mobile-creating-agendas)))
  2853. (let (m txt)
  2854. (goto-char (point-min))
  2855. (while (not (eobp))
  2856. (if (not (setq m (org-get-at-bol 'org-hd-marker)))
  2857. (beginning-of-line 2)
  2858. (setq txt (org-agenda-get-some-entry-text
  2859. m org-agenda-add-entry-text-maxlines " > "))
  2860. (end-of-line 1)
  2861. (if (string-match "\\S-" txt)
  2862. (insert "\n" txt)
  2863. (or (eobp) (forward-char 1))))))))
  2864. (defun org-agenda-get-some-entry-text (marker n-lines &optional indent
  2865. &rest keep)
  2866. "Extract entry text from MARKER, at most N-LINES lines.
  2867. This will ignore drawers etc, just get the text.
  2868. If INDENT is given, prefix every line with this string. If KEEP is
  2869. given, it is a list of symbols, defining stuff that should not be
  2870. removed from the entry content. Currently only `planning' is allowed here."
  2871. (let (txt drawer-re kwd-time-re ind)
  2872. (save-excursion
  2873. (with-current-buffer (marker-buffer marker)
  2874. (if (not (derived-mode-p 'org-mode))
  2875. (setq txt "")
  2876. (save-excursion
  2877. (save-restriction
  2878. (widen)
  2879. (goto-char marker)
  2880. (end-of-line 1)
  2881. (setq txt (buffer-substring
  2882. (min (1+ (point)) (point-max))
  2883. (progn (outline-next-heading) (point)))
  2884. drawer-re org-drawer-regexp
  2885. kwd-time-re (concat "^[ \t]*" org-keyword-time-regexp
  2886. ".*\n?"))
  2887. (with-temp-buffer
  2888. (insert txt)
  2889. (when org-agenda-add-entry-text-descriptive-links
  2890. (goto-char (point-min))
  2891. (while (org-activate-bracket-links (point-max))
  2892. (add-text-properties (match-beginning 0) (match-end 0)
  2893. '(face org-link))))
  2894. (goto-char (point-min))
  2895. (while (re-search-forward org-bracket-link-regexp (point-max) t)
  2896. (set-text-properties (match-beginning 0) (match-end 0)
  2897. nil))
  2898. (goto-char (point-min))
  2899. (while (re-search-forward drawer-re nil t)
  2900. (delete-region
  2901. (match-beginning 0)
  2902. (progn (re-search-forward
  2903. "^[ \t]*:END:.*\n?" nil 'move)
  2904. (point))))
  2905. (unless (member 'planning keep)
  2906. (goto-char (point-min))
  2907. (while (re-search-forward kwd-time-re nil t)
  2908. (replace-match "")))
  2909. (goto-char (point-min))
  2910. (when org-agenda-entry-text-exclude-regexps
  2911. (let ((re-list org-agenda-entry-text-exclude-regexps) re)
  2912. (while (setq re (pop re-list))
  2913. (goto-char (point-min))
  2914. (while (re-search-forward re nil t)
  2915. (replace-match "")))))
  2916. (goto-char (point-max))
  2917. (skip-chars-backward " \t\n")
  2918. (if (looking-at "[ \t\n]+\\'") (replace-match ""))
  2919. ;; find and remove min common indentation
  2920. (goto-char (point-min))
  2921. (untabify (point-min) (point-max))
  2922. (setq ind (org-get-indentation))
  2923. (while (not (eobp))
  2924. (unless (looking-at "[ \t]*$")
  2925. (setq ind (min ind (org-get-indentation))))
  2926. (beginning-of-line 2))
  2927. (goto-char (point-min))
  2928. (while (not (eobp))
  2929. (unless (looking-at "[ \t]*$")
  2930. (move-to-column ind)
  2931. (delete-region (point-at-bol) (point)))
  2932. (beginning-of-line 2))
  2933. (run-hooks 'org-agenda-entry-text-cleanup-hook)
  2934. (goto-char (point-min))
  2935. (when indent
  2936. (while (and (not (eobp)) (re-search-forward "^" nil t))
  2937. (replace-match indent t t)))
  2938. (goto-char (point-min))
  2939. (while (looking-at "[ \t]*\n") (replace-match ""))
  2940. (goto-char (point-max))
  2941. (when (> (org-current-line)
  2942. n-lines)
  2943. (org-goto-line (1+ n-lines))
  2944. (backward-char 1))
  2945. (setq txt (buffer-substring (point-min) (point)))))))))
  2946. txt))
  2947. (defun org-agenda-collect-markers ()
  2948. "Collect the markers pointing to entries in the agenda buffer."
  2949. (let (m markers)
  2950. (save-excursion
  2951. (goto-char (point-min))
  2952. (while (not (eobp))
  2953. (when (setq m (or (org-get-at-bol 'org-hd-marker)
  2954. (org-get-at-bol 'org-marker)))
  2955. (push m markers))
  2956. (beginning-of-line 2)))
  2957. (nreverse markers)))
  2958. (defun org-create-marker-find-array (marker-list)
  2959. "Create a alist of files names with all marker positions in that file."
  2960. (let (f tbl m a p)
  2961. (while (setq m (pop marker-list))
  2962. (setq p (marker-position m)
  2963. f (buffer-file-name (or (buffer-base-buffer
  2964. (marker-buffer m))
  2965. (marker-buffer m))))
  2966. (if (setq a (assoc f tbl))
  2967. (push (marker-position m) (cdr a))
  2968. (push (list f p) tbl)))
  2969. (mapcar (lambda (x) (setcdr x (sort (copy-sequence (cdr x)) '<)) x)
  2970. tbl)))
  2971. (defvar org-agenda-marker-table nil) ; dynamically scoped parameter
  2972. (defun org-check-agenda-marker-table ()
  2973. "Check of the current entry is on the marker list."
  2974. (let ((file (buffer-file-name (or (buffer-base-buffer) (current-buffer))))
  2975. a)
  2976. (and (setq a (assoc file org-agenda-marker-table))
  2977. (save-match-data
  2978. (save-excursion
  2979. (org-back-to-heading t)
  2980. (member (point) (cdr a)))))))
  2981. (defun org-check-for-org-mode ()
  2982. "Make sure current buffer is in org-mode. Error if not."
  2983. (or (derived-mode-p 'org-mode)
  2984. (error "Cannot execute org-mode agenda command on buffer in %s"
  2985. major-mode)))
  2986. ;;; Agenda prepare and finalize
  2987. (defvar org-agenda-multi nil) ; dynamically scoped
  2988. (defvar org-agenda-pre-window-conf nil)
  2989. (defvar org-agenda-columns-active nil)
  2990. (defvar org-agenda-name nil)
  2991. (defvar org-agenda-tag-filter nil)
  2992. (defvar org-agenda-category-filter nil)
  2993. (defvar org-agenda-top-category-filter nil)
  2994. (defvar org-agenda-tag-filter-while-redo nil)
  2995. (defvar org-agenda-tag-filter-preset nil
  2996. "A preset of the tags filter used for secondary agenda filtering.
  2997. This must be a list of strings, each string must be a single tag preceded
  2998. by \"+\" or \"-\".
  2999. This variable should not be set directly, but agenda custom commands can
  3000. bind it in the options section. The preset filter is a global property of
  3001. the entire agenda view. In a block agenda, it will not work reliably to
  3002. define a filter for one of the individual blocks. You need to set it in
  3003. the global options and expect it to be applied to the entire view.")
  3004. (defvar org-agenda-category-filter-preset nil
  3005. "A preset of the category filter used for secondary agenda filtering.
  3006. This must be a list of strings, each string must be a single category
  3007. preceded by \"+\" or \"-\".
  3008. This variable should not be set directly, but agenda custom commands can
  3009. bind it in the options section. The preset filter is a global property of
  3010. the entire agenda view. In a block agenda, it will not work reliably to
  3011. define a filter for one of the individual blocks. You need to set it in
  3012. the global options and expect it to be applied to the entire view.")
  3013. (defun org-agenda-use-sticky-p ()
  3014. "Return non-nil if an agenda buffer named
  3015. `org-agenda-buffer-name' exists and should be shown instead of
  3016. generating a new one."
  3017. (and
  3018. ;; turned off by user
  3019. org-agenda-sticky
  3020. ;; For multi-agenda buffer already exists
  3021. (not org-agenda-multi)
  3022. ;; buffer found
  3023. (get-buffer org-agenda-buffer-name)
  3024. ;; C-u parameter is same as last call
  3025. (with-current-buffer (get-buffer org-agenda-buffer-name)
  3026. (and
  3027. (equal current-prefix-arg
  3028. org-agenda-last-prefix-arg)
  3029. ;; In case user turned stickiness on, while having existing
  3030. ;; Agenda buffer active, don't reuse that buffer, because it
  3031. ;; does not have org variables local
  3032. org-agenda-this-buffer-is-sticky))))
  3033. (defun org-agenda-prepare-window (abuf)
  3034. "Setup agenda buffer in the window."
  3035. (let* ((awin (get-buffer-window abuf))
  3036. wconf)
  3037. (cond
  3038. ((equal (current-buffer) abuf) nil)
  3039. (awin (select-window awin))
  3040. ((not (setq wconf (current-window-configuration))))
  3041. ((equal org-agenda-window-setup 'current-window)
  3042. (org-pop-to-buffer-same-window abuf))
  3043. ((equal org-agenda-window-setup 'other-window)
  3044. (org-switch-to-buffer-other-window abuf))
  3045. ((equal org-agenda-window-setup 'other-frame)
  3046. (switch-to-buffer-other-frame abuf))
  3047. ((equal org-agenda-window-setup 'reorganize-frame)
  3048. (delete-other-windows)
  3049. (org-switch-to-buffer-other-window abuf)))
  3050. ;; additional test in case agenda is invoked from within agenda
  3051. ;; buffer via elisp link
  3052. (unless (equal (current-buffer) abuf)
  3053. (org-pop-to-buffer-same-window abuf))
  3054. (setq org-agenda-pre-window-conf
  3055. (or org-agenda-pre-window-conf wconf))))
  3056. (defun org-agenda-prepare (&optional name)
  3057. (if (org-agenda-use-sticky-p)
  3058. (progn
  3059. ;; Popup existing buffer
  3060. (org-agenda-prepare-window (get-buffer org-agenda-buffer-name))
  3061. (message "Sticky Agenda buffer, use `r' to refresh")
  3062. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3063. (throw 'exit "Sticky Agenda buffer, use `r' to refresh"))
  3064. (setq org-todo-keywords-for-agenda nil)
  3065. (setq org-drawers-for-agenda nil)
  3066. (unless org-agenda-persistent-filter
  3067. (setq org-agenda-tag-filter nil
  3068. org-agenda-category-filter nil))
  3069. (put 'org-agenda-tag-filter :preset-filter
  3070. org-agenda-tag-filter-preset)
  3071. (put 'org-agenda-category-filter :preset-filter
  3072. org-agenda-category-filter-preset)
  3073. (if org-agenda-multi
  3074. (progn
  3075. (setq buffer-read-only nil)
  3076. (goto-char (point-max))
  3077. (unless (or (bobp) org-agenda-compact-blocks
  3078. (not org-agenda-block-separator))
  3079. (insert "\n"
  3080. (if (stringp org-agenda-block-separator)
  3081. org-agenda-block-separator
  3082. (make-string (window-width) org-agenda-block-separator))
  3083. "\n"))
  3084. (narrow-to-region (point) (point-max)))
  3085. (setq org-done-keywords-for-agenda nil)
  3086. ;; Setting any org variables that are in org-agenda-local-vars
  3087. ;; list need to be done after the prepare call
  3088. (org-agenda-prepare-window (get-buffer-create org-agenda-buffer-name))
  3089. (setq buffer-read-only nil)
  3090. (org-agenda-reset-markers)
  3091. (let ((inhibit-read-only t)) (erase-buffer))
  3092. (org-agenda-mode)
  3093. (setq org-agenda-buffer (current-buffer))
  3094. (setq org-agenda-contributing-files nil)
  3095. (setq org-agenda-columns-active nil)
  3096. (org-agenda-prepare-buffers (org-agenda-files nil 'ifmode))
  3097. (setq org-todo-keywords-for-agenda
  3098. (org-uniquify org-todo-keywords-for-agenda))
  3099. (setq org-done-keywords-for-agenda
  3100. (org-uniquify org-done-keywords-for-agenda))
  3101. (setq org-drawers-for-agenda (org-uniquify org-drawers-for-agenda))
  3102. (setq org-agenda-last-prefix-arg current-prefix-arg)
  3103. (setq org-agenda-this-buffer-name org-agenda-buffer-name)
  3104. (and name (not org-agenda-name)
  3105. (org-set-local 'org-agenda-name name)))
  3106. (setq buffer-read-only nil)))
  3107. (defvar org-agenda-overriding-columns-format) ; From org-colview.el
  3108. (defun org-agenda-finalize ()
  3109. "Finishing touch for the agenda buffer, called just before displaying it."
  3110. (unless org-agenda-multi
  3111. (save-excursion
  3112. (let ((inhibit-read-only t))
  3113. (goto-char (point-min))
  3114. (while (org-activate-bracket-links (point-max))
  3115. (add-text-properties (match-beginning 0) (match-end 0)
  3116. '(face org-link)))
  3117. (org-agenda-align-tags)
  3118. (unless org-agenda-with-colors
  3119. (remove-text-properties (point-min) (point-max) '(face nil))))
  3120. (if (and (boundp 'org-agenda-overriding-columns-format)
  3121. org-agenda-overriding-columns-format)
  3122. (org-set-local 'org-agenda-overriding-columns-format
  3123. org-agenda-overriding-columns-format))
  3124. (if (and (boundp 'org-agenda-view-columns-initially)
  3125. org-agenda-view-columns-initially)
  3126. (org-agenda-columns))
  3127. (when org-agenda-fontify-priorities
  3128. (org-agenda-fontify-priorities))
  3129. (when (and org-agenda-dim-blocked-tasks org-blocker-hook)
  3130. (org-agenda-dim-blocked-tasks))
  3131. (org-agenda-mark-clocking-task)
  3132. (when org-agenda-entry-text-mode
  3133. (org-agenda-entry-text-hide)
  3134. (org-agenda-entry-text-show))
  3135. (if (functionp 'org-habit-insert-consistency-graphs)
  3136. (org-habit-insert-consistency-graphs))
  3137. (run-hooks 'org-agenda-finalize-hook)
  3138. (setq org-agenda-type (org-get-at-bol 'org-agenda-type))
  3139. (when (or org-agenda-tag-filter (get 'org-agenda-tag-filter :preset-filter))
  3140. (org-agenda-filter-apply org-agenda-tag-filter 'tag))
  3141. (when (or org-agenda-category-filter (get 'org-agenda-category-filter :preset-filter))
  3142. (org-agenda-filter-apply org-agenda-category-filter 'category))
  3143. (org-add-hook 'kill-buffer-hook 'org-agenda-reset-markers 'append 'local)
  3144. )))
  3145. (defun org-agenda-mark-clocking-task ()
  3146. "Mark the current clock entry in the agenda if it is present."
  3147. (mapc (lambda (o)
  3148. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  3149. (delete-overlay o)))
  3150. (overlays-in (point-min) (point-max)))
  3151. (when (marker-buffer org-clock-hd-marker)
  3152. (save-excursion
  3153. (goto-char (point-min))
  3154. (let (s ov)
  3155. (while (setq s (next-single-property-change (point) 'org-hd-marker))
  3156. (goto-char s)
  3157. (when (equal (org-get-at-bol 'org-hd-marker)
  3158. org-clock-hd-marker)
  3159. (setq ov (make-overlay (point-at-bol) (1+ (point-at-eol))))
  3160. (overlay-put ov 'type 'org-agenda-clocking)
  3161. (overlay-put ov 'face 'org-agenda-clocking)
  3162. (overlay-put ov 'help-echo
  3163. "The clock is running in this item")))))))
  3164. (defun org-agenda-fontify-priorities ()
  3165. "Make highest priority lines bold, and lowest italic."
  3166. (interactive)
  3167. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-priority)
  3168. (delete-overlay o)))
  3169. (overlays-in (point-min) (point-max)))
  3170. (save-excursion
  3171. (let ((inhibit-read-only t)
  3172. b e p ov h l)
  3173. (goto-char (point-min))
  3174. (while (re-search-forward "\\[#\\(.\\)\\]" nil t)
  3175. (setq h (or (get-char-property (point) 'org-highest-priority)
  3176. org-highest-priority)
  3177. l (or (get-char-property (point) 'org-lowest-priority)
  3178. org-lowest-priority)
  3179. p (string-to-char (match-string 1))
  3180. b (match-beginning 0)
  3181. e (if (eq org-agenda-fontify-priorities 'cookies)
  3182. (match-end 0)
  3183. (point-at-eol))
  3184. ov (make-overlay b e))
  3185. (overlay-put
  3186. ov 'face
  3187. (cond ((org-face-from-face-or-color
  3188. 'priority nil
  3189. (cdr (assoc p org-priority-faces))))
  3190. ((and (listp org-agenda-fontify-priorities)
  3191. (org-face-from-face-or-color
  3192. 'priority nil
  3193. (cdr (assoc p org-agenda-fontify-priorities)))))
  3194. ((equal p l) 'italic)
  3195. ((equal p h) 'bold)))
  3196. (overlay-put ov 'org-type 'org-priority)))))
  3197. (defun org-agenda-dim-blocked-tasks ()
  3198. "Dim currently blocked TODO's in the agenda display."
  3199. (mapc (lambda (o) (if (eq (overlay-get o 'org-type) 'org-blocked-todo)
  3200. (delete-overlay o)))
  3201. (overlays-in (point-min) (point-max)))
  3202. (save-excursion
  3203. (let ((inhibit-read-only t)
  3204. (org-depend-tag-blocked nil)
  3205. (invis (eq org-agenda-dim-blocked-tasks 'invisible))
  3206. org-blocked-by-checkboxes
  3207. invis1 b e p ov h l)
  3208. (goto-char (point-min))
  3209. (while (let ((pos (next-single-property-change (point) 'todo-state)))
  3210. (and pos (goto-char (1+ pos))))
  3211. (setq org-blocked-by-checkboxes nil invis1 invis)
  3212. (let ((marker (org-get-at-bol 'org-hd-marker)))
  3213. (when (and marker
  3214. (with-current-buffer (marker-buffer marker)
  3215. (save-excursion (goto-char marker)
  3216. (org-entry-blocked-p))))
  3217. (if org-blocked-by-checkboxes (setq invis1 nil))
  3218. (setq b (if invis1
  3219. (max (point-min) (1- (point-at-bol)))
  3220. (point-at-bol))
  3221. e (point-at-eol)
  3222. ov (make-overlay b e))
  3223. (if invis1
  3224. (overlay-put ov 'invisible t)
  3225. (overlay-put ov 'face 'org-agenda-dimmed-todo-face))
  3226. (overlay-put ov 'org-type 'org-blocked-todo)))))))
  3227. (defvar org-agenda-skip-function nil
  3228. "Function to be called at each match during agenda construction.
  3229. If this function returns nil, the current match should not be skipped.
  3230. Otherwise, the function must return a position from where the search
  3231. should be continued.
  3232. This may also be a Lisp form, it will be evaluated.
  3233. Never set this variable using `setq' or so, because then it will apply
  3234. to all future agenda commands. If you do want a global skipping condition,
  3235. use the option `org-agenda-skip-function-global' instead.
  3236. The correct usage for `org-agenda-skip-function' is to bind it with
  3237. `let' to scope it dynamically into the agenda-constructing command.
  3238. A good way to set it is through options in `org-agenda-custom-commands'.")
  3239. (defun org-agenda-skip ()
  3240. "Throw to `:skip' in places that should be skipped.
  3241. Also moves point to the end of the skipped region, so that search can
  3242. continue from there."
  3243. (let ((p (point-at-bol)) to)
  3244. (and org-agenda-skip-archived-trees (not org-agenda-archives-mode)
  3245. (get-text-property p :org-archived)
  3246. (org-end-of-subtree t)
  3247. (throw :skip t))
  3248. (and org-agenda-skip-comment-trees
  3249. (get-text-property p :org-comment)
  3250. (org-end-of-subtree t)
  3251. (throw :skip t))
  3252. (if (equal (char-after p) ?#) (throw :skip t))
  3253. (when (setq to (or (org-agenda-skip-eval org-agenda-skip-function-global)
  3254. (org-agenda-skip-eval org-agenda-skip-function)))
  3255. (goto-char to)
  3256. (throw :skip t))))
  3257. (defun org-agenda-skip-eval (form)
  3258. "If FORM is a function or a list, call (or eval) is and return result.
  3259. `save-excursion' and `save-match-data' are wrapped around the call, so point
  3260. and match data are returned to the previous state no matter what these
  3261. functions do."
  3262. (let (fp)
  3263. (and form
  3264. (or (setq fp (functionp form))
  3265. (consp form))
  3266. (save-excursion
  3267. (save-match-data
  3268. (if fp
  3269. (funcall form)
  3270. (eval form)))))))
  3271. (defvar org-agenda-markers nil
  3272. "List of all currently active markers created by `org-agenda'.")
  3273. (defvar org-agenda-last-marker-time (org-float-time)
  3274. "Creation time of the last agenda marker.")
  3275. (defun org-agenda-new-marker (&optional pos)
  3276. "Return a new agenda marker.
  3277. Org-mode keeps a list of these markers and resets them when they are
  3278. no longer in use."
  3279. (let ((m (copy-marker (or pos (point)))))
  3280. (setq org-agenda-last-marker-time (org-float-time))
  3281. (if org-agenda-buffer
  3282. (with-current-buffer org-agenda-buffer
  3283. (push m org-agenda-markers))
  3284. (push m org-agenda-markers))
  3285. m))
  3286. (defun org-agenda-reset-markers ()
  3287. "Reset markers created by `org-agenda'."
  3288. (while org-agenda-markers
  3289. (move-marker (pop org-agenda-markers) nil)))
  3290. (defun org-agenda-save-markers-for-cut-and-paste (beg end)
  3291. "Save relative positions of markers in region.
  3292. This check for agenda markers in all agenda buffers currently active."
  3293. (dolist (buf (buffer-list))
  3294. (with-current-buffer buf
  3295. (when (eq major-mode 'org-agenda-mode)
  3296. (mapc (lambda (m) (org-check-and-save-marker m beg end))
  3297. org-agenda-markers)))))
  3298. ;;; Entry text mode
  3299. (defun org-agenda-entry-text-show-here ()
  3300. "Add some text from the entry as context to the current line."
  3301. (let (m txt o)
  3302. (setq m (org-get-at-bol 'org-hd-marker))
  3303. (unless (marker-buffer m)
  3304. (error "No marker points to an entry here"))
  3305. (setq txt (concat "\n" (org-no-properties
  3306. (org-agenda-get-some-entry-text
  3307. m org-agenda-entry-text-maxlines " > "))))
  3308. (when (string-match "\\S-" txt)
  3309. (setq o (make-overlay (point-at-bol) (point-at-eol)))
  3310. (overlay-put o 'evaporate t)
  3311. (overlay-put o 'org-overlay-type 'agenda-entry-content)
  3312. (overlay-put o 'after-string txt))))
  3313. (defun org-agenda-entry-text-show ()
  3314. "Add entry context for all agenda lines."
  3315. (interactive)
  3316. (save-excursion
  3317. (goto-char (point-max))
  3318. (beginning-of-line 1)
  3319. (while (not (bobp))
  3320. (when (org-get-at-bol 'org-hd-marker)
  3321. (org-agenda-entry-text-show-here))
  3322. (beginning-of-line 0))))
  3323. (defun org-agenda-entry-text-hide ()
  3324. "Remove any shown entry context."
  3325. (delq nil
  3326. (mapcar (lambda (o)
  3327. (if (eq (overlay-get o 'org-overlay-type)
  3328. 'agenda-entry-content)
  3329. (progn (delete-overlay o) t)))
  3330. (overlays-in (point-min) (point-max)))))
  3331. (defun org-agenda-get-day-face (date)
  3332. "Return the face DATE should be displayed with."
  3333. (or (and (functionp org-agenda-day-face-function)
  3334. (funcall org-agenda-day-face-function date))
  3335. (cond ((org-agenda-todayp date)
  3336. 'org-agenda-date-today)
  3337. ((member (calendar-day-of-week date) org-agenda-weekend-days)
  3338. 'org-agenda-date-weekend)
  3339. (t 'org-agenda-date))))
  3340. ;;; Agenda timeline
  3341. (defvar org-agenda-only-exact-dates nil) ; dynamically scoped
  3342. (defun org-timeline (&optional dotodo)
  3343. "Show a time-sorted view of the entries in the current org file.
  3344. Only entries with a time stamp of today or later will be listed. With
  3345. \\[universal-argument] prefix, all unfinished TODO items will also be shown,
  3346. under the current date.
  3347. If the buffer contains an active region, only check the region for
  3348. dates."
  3349. (interactive "P")
  3350. (let* ((dopast t)
  3351. (org-agenda-show-log-scoped org-agenda-show-log)
  3352. (entry (buffer-file-name (or (buffer-base-buffer (current-buffer))
  3353. (current-buffer))))
  3354. (date (calendar-current-date))
  3355. (beg (if (org-region-active-p) (region-beginning) (point-min)))
  3356. (end (if (org-region-active-p) (region-end) (point-max)))
  3357. (day-numbers (org-get-all-dates
  3358. beg end 'no-ranges
  3359. t org-agenda-show-log-scoped ; always include today
  3360. org-timeline-show-empty-dates))
  3361. (org-deadline-warning-days 0)
  3362. (org-agenda-only-exact-dates t)
  3363. (today (org-today))
  3364. (past t)
  3365. args
  3366. s e rtn d emptyp)
  3367. (setq org-agenda-redo-command
  3368. (list 'progn
  3369. (list 'org-switch-to-buffer-other-window (current-buffer))
  3370. (list 'org-timeline (list 'quote dotodo))))
  3371. (if (not dopast)
  3372. ;; Remove past dates from the list of dates.
  3373. (setq day-numbers (delq nil (mapcar (lambda(x)
  3374. (if (>= x today) x nil))
  3375. day-numbers))))
  3376. (org-agenda-prepare (concat "Timeline " (file-name-nondirectory entry)))
  3377. (org-compile-prefix-format 'timeline)
  3378. (org-set-sorting-strategy 'timeline)
  3379. (if org-agenda-show-log-scoped (push :closed args))
  3380. (push :timestamp args)
  3381. (push :deadline args)
  3382. (push :scheduled args)
  3383. (push :sexp args)
  3384. (if dotodo (push :todo args))
  3385. (insert "Timeline of file " entry "\n")
  3386. (add-text-properties (point-min) (point)
  3387. (list 'face 'org-agenda-structure))
  3388. (org-agenda-mark-header-line (point-min))
  3389. (while (setq d (pop day-numbers))
  3390. (if (and (listp d) (eq (car d) :omitted))
  3391. (progn
  3392. (setq s (point))
  3393. (insert (format "\n[... %d empty days omitted]\n\n" (cdr d)))
  3394. (put-text-property s (1- (point)) 'face 'org-agenda-structure))
  3395. (if (listp d) (setq d (car d) emptyp t) (setq emptyp nil))
  3396. (if (and (>= d today)
  3397. dopast
  3398. past)
  3399. (progn
  3400. (setq past nil)
  3401. (insert (make-string 79 ?-) "\n")))
  3402. (setq date (calendar-gregorian-from-absolute d))
  3403. (setq s (point))
  3404. (setq rtn (and (not emptyp)
  3405. (apply 'org-agenda-get-day-entries entry
  3406. date args)))
  3407. (if (or rtn (equal d today) org-timeline-show-empty-dates)
  3408. (progn
  3409. (insert
  3410. (if (stringp org-agenda-format-date)
  3411. (format-time-string org-agenda-format-date
  3412. (org-time-from-absolute date))
  3413. (funcall org-agenda-format-date date))
  3414. "\n")
  3415. (put-text-property s (1- (point)) 'face
  3416. (org-agenda-get-day-face date))
  3417. (put-text-property s (1- (point)) 'org-date-line t)
  3418. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3419. (if (equal d today)
  3420. (put-text-property s (1- (point)) 'org-today t))
  3421. (and rtn (insert (org-agenda-finalize-entries rtn) "\n"))
  3422. (put-text-property s (1- (point)) 'day d)))))
  3423. (goto-char (point-min))
  3424. (goto-char (or (text-property-any (point-min) (point-max) 'org-today t)
  3425. (point-min)))
  3426. (add-text-properties (point-min) (point-max) '(org-agenda-type timeline))
  3427. (org-agenda-finalize)
  3428. (setq buffer-read-only t)))
  3429. (defun org-get-all-dates (beg end &optional no-ranges force-today inactive empty pre-re)
  3430. "Return a list of all relevant day numbers from BEG to END buffer positions.
  3431. If NO-RANGES is non-nil, include only the start and end dates of a range,
  3432. not every single day in the range. If FORCE-TODAY is non-nil, make
  3433. sure that TODAY is included in the list. If INACTIVE is non-nil, also
  3434. inactive time stamps (those in square brackets) are included.
  3435. When EMPTY is non-nil, also include days without any entries."
  3436. (let ((re (concat
  3437. (if pre-re pre-re "")
  3438. (if inactive org-ts-regexp-both org-ts-regexp)))
  3439. dates dates1 date day day1 day2 ts1 ts2 pos)
  3440. (if force-today
  3441. (setq dates (list (org-today))))
  3442. (save-excursion
  3443. (goto-char beg)
  3444. (while (re-search-forward re end t)
  3445. (setq day (time-to-days (org-time-string-to-time
  3446. (substring (match-string 1) 0 10)
  3447. (current-buffer) (match-beginning 0))))
  3448. (or (memq day dates) (push day dates)))
  3449. (unless no-ranges
  3450. (goto-char beg)
  3451. (while (re-search-forward org-tr-regexp end t)
  3452. (setq pos (match-beginning 0))
  3453. (setq ts1 (substring (match-string 1) 0 10)
  3454. ts2 (substring (match-string 2) 0 10)
  3455. day1 (time-to-days (org-time-string-to-time
  3456. ts1 (current-buffer) pos))
  3457. day2 (time-to-days (org-time-string-to-time
  3458. ts2 (current-buffer) pos)))
  3459. (while (< (setq day1 (1+ day1)) day2)
  3460. (or (memq day1 dates) (push day1 dates)))))
  3461. (setq dates (sort dates '<))
  3462. (when empty
  3463. (while (setq day (pop dates))
  3464. (setq day2 (car dates))
  3465. (push day dates1)
  3466. (when (and day2 empty)
  3467. (if (or (eq empty t)
  3468. (and (numberp empty) (<= (- day2 day) empty)))
  3469. (while (< (setq day (1+ day)) day2)
  3470. (push (list day) dates1))
  3471. (push (cons :omitted (- day2 day)) dates1))))
  3472. (setq dates (nreverse dates1)))
  3473. dates)))
  3474. ;;; Agenda Daily/Weekly
  3475. (defvar org-agenda-start-day nil ; dynamically scoped parameter
  3476. "Start day for the agenda view.
  3477. Custom commands can set this variable in the options section.")
  3478. (defvar org-starting-day nil) ; local variable in the agenda buffer
  3479. (defvar org-arg-loc nil) ; local variable
  3480. (defvar org-agenda-entry-types '(:deadline :scheduled :timestamp :sexp)
  3481. "List of types searched for when creating the daily/weekly agenda.
  3482. This variable is a list of symbols that controls the types of
  3483. items that appear in the daily/weekly agenda. Allowed symbols in this
  3484. list are are
  3485. :timestamp List items containing a date stamp or date range matching
  3486. the selected date. This includes sexp entries in
  3487. angular brackets.
  3488. :sexp List entries resulting from plain diary-like sexps.
  3489. :deadline List deadline due on that date. When the date is today,
  3490. also list any deadlines past due, or due within
  3491. `org-deadline-warning-days'. `:deadline' must appear before
  3492. `:scheduled' if the setting of
  3493. `org-agenda-skip-scheduled-if-deadline-is-shown' is to have
  3494. any effect.
  3495. :scheduled List all items which are scheduled for the given date.
  3496. The diary for *today* also contains items which were
  3497. scheduled earlier and are not yet marked DONE.
  3498. By default, all four types are turned on.
  3499. Never set this variable globally using `setq', because then it
  3500. will apply to all future agenda commands. Instead, bind it with
  3501. `let' to scope it dynamically into the agenda-constructing
  3502. command. A good way to set it is through options in
  3503. `org-agenda-custom-commands'. For a more flexible (though
  3504. somewhat less efficient) way of determining what is included in
  3505. the daily/weekly agenda, see `org-agenda-skip-function'.")
  3506. (defvar org-agenda-buffer-tmp-name nil)
  3507. ;;;###autoload
  3508. (defun org-agenda-list (&optional arg start-day span)
  3509. "Produce a daily/weekly view from all files in variable `org-agenda-files'.
  3510. The view will be for the current day or week, but from the overview buffer
  3511. you will be able to go to other days/weeks.
  3512. With a numeric prefix argument in an interactive call, the agenda will
  3513. span ARG days. Lisp programs should instead specify SPAN to change
  3514. the number of days. SPAN defaults to `org-agenda-span'.
  3515. START-DAY defaults to TODAY, or to the most recent match for the weekday
  3516. given in `org-agenda-start-on-weekday'."
  3517. (interactive "P")
  3518. (if org-agenda-overriding-arguments
  3519. (setq arg (car org-agenda-overriding-arguments)
  3520. start-day (nth 1 org-agenda-overriding-arguments)
  3521. span (nth 2 org-agenda-overriding-arguments)))
  3522. (if (and (integerp arg) (> arg 0))
  3523. (setq span arg arg nil))
  3524. (catch 'exit
  3525. (setq org-agenda-buffer-name
  3526. (or org-agenda-buffer-tmp-name
  3527. (if org-agenda-sticky
  3528. (cond ((and org-keys (stringp org-match))
  3529. (format "*Org Agenda(%s:%s)*" org-keys org-match))
  3530. (org-keys
  3531. (format "*Org Agenda(%s)*" org-keys))
  3532. (t "*Org Agenda(a)*")))
  3533. org-agenda-buffer-name))
  3534. (org-agenda-prepare "Day/Week")
  3535. (setq start-day (or start-day org-agenda-start-day))
  3536. (if (stringp start-day)
  3537. ;; Convert to an absolute day number
  3538. (setq start-day (time-to-days (org-read-date nil t start-day))))
  3539. (org-compile-prefix-format 'agenda)
  3540. (org-set-sorting-strategy 'agenda)
  3541. (let* ((span (org-agenda-ndays-to-span
  3542. (or span org-agenda-ndays org-agenda-span)))
  3543. (today (org-today))
  3544. (sd (or start-day today))
  3545. (ndays (org-agenda-span-to-ndays span sd))
  3546. (org-agenda-start-on-weekday
  3547. (if (eq ndays 7)
  3548. org-agenda-start-on-weekday))
  3549. (thefiles (org-agenda-files nil 'ifmode))
  3550. (files thefiles)
  3551. (start (if (or (null org-agenda-start-on-weekday)
  3552. (< ndays 7))
  3553. sd
  3554. (let* ((nt (calendar-day-of-week
  3555. (calendar-gregorian-from-absolute sd)))
  3556. (n1 org-agenda-start-on-weekday)
  3557. (d (- nt n1)))
  3558. (- sd (+ (if (< d 0) 7 0) d)))))
  3559. (day-numbers (list start))
  3560. (day-cnt 0)
  3561. (inhibit-redisplay (not debug-on-error))
  3562. (org-agenda-show-log-scoped org-agenda-show-log)
  3563. s e rtn rtnall file date d start-pos end-pos todayp
  3564. clocktable-start clocktable-end filter)
  3565. (setq org-agenda-redo-command
  3566. (list 'org-agenda-list (list 'quote arg) start-day (list 'quote span)))
  3567. (dotimes (n (1- ndays))
  3568. (push (1+ (car day-numbers)) day-numbers))
  3569. (setq day-numbers (nreverse day-numbers))
  3570. (setq clocktable-start (car day-numbers)
  3571. clocktable-end (1+ (or (org-last day-numbers) 0)))
  3572. (org-set-local 'org-starting-day (car day-numbers))
  3573. (org-set-local 'org-arg-loc arg)
  3574. (org-set-local 'org-agenda-current-span (org-agenda-ndays-to-span span))
  3575. (unless org-agenda-compact-blocks
  3576. (let* ((d1 (car day-numbers))
  3577. (d2 (org-last day-numbers))
  3578. (w1 (org-days-to-iso-week d1))
  3579. (w2 (org-days-to-iso-week d2)))
  3580. (setq s (point))
  3581. (if org-agenda-overriding-header
  3582. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3583. nil 'face 'org-agenda-structure) "\n")
  3584. (insert (org-agenda-span-name span)
  3585. "-agenda"
  3586. (if (< (- d2 d1) 350)
  3587. (if (= w1 w2)
  3588. (format " (W%02d)" w1)
  3589. (format " (W%02d-W%02d)" w1 w2))
  3590. "")
  3591. ":\n")))
  3592. (add-text-properties s (1- (point)) (list 'face 'org-agenda-structure
  3593. 'org-date-line t))
  3594. (org-agenda-mark-header-line s))
  3595. (while (setq d (pop day-numbers))
  3596. (setq date (calendar-gregorian-from-absolute d)
  3597. s (point))
  3598. (if (or (setq todayp (= d today))
  3599. (and (not start-pos) (= d sd)))
  3600. (setq start-pos (point))
  3601. (if (and start-pos (not end-pos))
  3602. (setq end-pos (point))))
  3603. (setq files thefiles
  3604. rtnall nil)
  3605. (while (setq file (pop files))
  3606. (catch 'nextfile
  3607. (org-check-agenda-file file)
  3608. (let ((org-agenda-entry-types org-agenda-entry-types))
  3609. (unless org-agenda-include-deadlines
  3610. (setq org-agenda-entry-types
  3611. (delq :deadline org-agenda-entry-types)))
  3612. (cond
  3613. ((memq org-agenda-show-log-scoped '(only clockcheck))
  3614. (setq rtn (org-agenda-get-day-entries
  3615. file date :closed)))
  3616. (org-agenda-show-log-scoped
  3617. (setq rtn (apply 'org-agenda-get-day-entries
  3618. file date
  3619. (append '(:closed) org-agenda-entry-types))))
  3620. (t
  3621. (setq rtn (apply 'org-agenda-get-day-entries
  3622. file date
  3623. org-agenda-entry-types)))))
  3624. (setq rtnall (append rtnall rtn)))) ;; all entries
  3625. (if org-agenda-include-diary
  3626. (let ((org-agenda-search-headline-for-time t))
  3627. (require 'diary-lib)
  3628. (setq rtn (org-get-entries-from-diary date))
  3629. (setq rtnall (append rtnall rtn))))
  3630. (if (or rtnall org-agenda-show-all-dates)
  3631. (progn
  3632. (setq day-cnt (1+ day-cnt))
  3633. (insert
  3634. (if (stringp org-agenda-format-date)
  3635. (format-time-string org-agenda-format-date
  3636. (org-time-from-absolute date))
  3637. (funcall org-agenda-format-date date))
  3638. "\n")
  3639. (put-text-property s (1- (point)) 'face
  3640. (org-agenda-get-day-face date))
  3641. (put-text-property s (1- (point)) 'org-date-line t)
  3642. (put-text-property s (1- (point)) 'org-agenda-date-header t)
  3643. (put-text-property s (1- (point)) 'org-day-cnt day-cnt)
  3644. (when todayp
  3645. (put-text-property s (1- (point)) 'org-today t))
  3646. (setq rtnall
  3647. (org-agenda-add-time-grid-maybe rtnall ndays todayp))
  3648. (if rtnall (insert ;; all entries
  3649. (org-agenda-finalize-entries rtnall)
  3650. "\n"))
  3651. (put-text-property s (1- (point)) 'day d)
  3652. (put-text-property s (1- (point)) 'org-day-cnt day-cnt))))
  3653. (when (and org-agenda-clockreport-mode clocktable-start)
  3654. (let ((org-agenda-files (org-agenda-files nil 'ifmode))
  3655. ;; the above line is to ensure the restricted range!
  3656. (p (copy-sequence org-agenda-clockreport-parameter-plist))
  3657. tbl)
  3658. (setq p (org-plist-delete p :block))
  3659. (setq p (plist-put p :tstart clocktable-start))
  3660. (setq p (plist-put p :tend clocktable-end))
  3661. (setq p (plist-put p :scope 'agenda))
  3662. (when (and (eq org-agenda-clockreport-mode 'with-filter)
  3663. (setq filter (or org-agenda-tag-filter-while-redo
  3664. (get 'org-agenda-tag-filter :preset-filter))))
  3665. (setq p (plist-put p :tags (mapconcat (lambda (x)
  3666. (if (string-match "[<>=]" x)
  3667. ""
  3668. x))
  3669. filter ""))))
  3670. (setq tbl (apply 'org-get-clocktable p))
  3671. (insert tbl)))
  3672. (goto-char (point-min))
  3673. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3674. (unless (and (pos-visible-in-window-p (point-min))
  3675. (pos-visible-in-window-p (point-max)))
  3676. (goto-char (1- (point-max)))
  3677. (recenter -1)
  3678. (if (not (pos-visible-in-window-p (or start-pos 1)))
  3679. (progn
  3680. (goto-char (or start-pos 1))
  3681. (recenter 1))))
  3682. (goto-char (or start-pos 1))
  3683. (add-text-properties (point-min) (point-max)
  3684. `(org-agenda-type agenda
  3685. org-last-args (,arg ,start-day ,span)
  3686. org-redo-cmd ,org-agenda-redo-command
  3687. org-serie-cmd ,org-cmd))
  3688. (if (eq org-agenda-show-log-scoped 'clockcheck)
  3689. (org-agenda-show-clocking-issues))
  3690. (org-agenda-finalize)
  3691. (setq buffer-read-only t)
  3692. (message ""))))
  3693. (defun org-agenda-ndays-to-span (n)
  3694. "Return a span symbol for a span of N days, or N if none matches."
  3695. (cond ((symbolp n) n)
  3696. ((= n 1) 'day)
  3697. ((= n 7) 'week)
  3698. (t n)))
  3699. (defun org-agenda-span-to-ndays (span &optional start-day)
  3700. "Return ndays from SPAN, possibly starting at START-DAY."
  3701. (cond ((numberp span) span)
  3702. ((eq span 'day) 1)
  3703. ((eq span 'week) 7)
  3704. ((eq span 'month)
  3705. (let ((date (calendar-gregorian-from-absolute start-day)))
  3706. (calendar-last-day-of-month (car date) (caddr date))))
  3707. ((eq span 'year)
  3708. (let ((date (calendar-gregorian-from-absolute start-day)))
  3709. (if (calendar-leap-year-p (caddr date)) 366 365)))))
  3710. (defun org-agenda-span-name (span)
  3711. "Return a SPAN name."
  3712. (if (null span)
  3713. ""
  3714. (if (symbolp span)
  3715. (capitalize (symbol-name span))
  3716. (format "%d days" span))))
  3717. ;;; Agenda word search
  3718. (defvar org-agenda-search-history nil)
  3719. (defvar org-search-syntax-table nil
  3720. "Special syntax table for org-mode search.
  3721. In this table, we have single quotes not as word constituents, to
  3722. that when \"+Ameli\" is searched as a work, it will also match \"Ameli's\"")
  3723. (defvar org-mode-syntax-table) ; From org.el
  3724. (defun org-search-syntax-table ()
  3725. (unless org-search-syntax-table
  3726. (setq org-search-syntax-table (copy-syntax-table org-mode-syntax-table))
  3727. (modify-syntax-entry ?' "." org-search-syntax-table)
  3728. (modify-syntax-entry ?` "." org-search-syntax-table))
  3729. org-search-syntax-table)
  3730. (defvar org-agenda-last-search-view-search-was-boolean nil)
  3731. ;;;###autoload
  3732. (defun org-search-view (&optional todo-only string edit-at)
  3733. "Show all entries that contain a phrase or words or regular expressions.
  3734. With optional prefix argument TODO-ONLY, only consider entries that are
  3735. TODO entries. The argument STRING can be used to pass a default search
  3736. string into this function. If EDIT-AT is non-nil, it means that the
  3737. user should get a chance to edit this string, with cursor at position
  3738. EDIT-AT.
  3739. The search string can be viewed either as a phrase that should be found as
  3740. is, or it can be broken into a number of snippets, each of which must match
  3741. in a Boolean way to select an entry. The default depends on the variable
  3742. `org-agenda-search-view-always-boolean'.
  3743. Even if this is turned off (the default) you can always switch to
  3744. Boolean search dynamically by preceding the first word with \"+\" or \"-\".
  3745. The default is a direct search of the whole phrase, where each space in
  3746. the search string can expand to an arbitrary amount of whitespace,
  3747. including newlines.
  3748. If using a Boolean search, the search string is split on whitespace and
  3749. each snippet is searched separately, with logical AND to select an entry.
  3750. Words prefixed with a minus must *not* occur in the entry. Words without
  3751. a prefix or prefixed with a plus must occur in the entry. Matching is
  3752. case-insensitive. Words are enclosed by word delimiters (i.e. they must
  3753. match whole words, not parts of a word) if
  3754. `org-agenda-search-view-force-full-words' is set (default is nil).
  3755. Boolean search snippets enclosed by curly braces are interpreted as
  3756. regular expressions that must or (when preceded with \"-\") must not
  3757. match in the entry. Snippets enclosed into double quotes will be taken
  3758. as a whole, to include whitespace.
  3759. - If the search string starts with an asterisk, search only in headlines.
  3760. - If (possibly after the leading star) the search string starts with an
  3761. exclamation mark, this also means to look at TODO entries only, an effect
  3762. that can also be achieved with a prefix argument.
  3763. - If (possibly after star and exclamation mark) the search string starts
  3764. with a colon, this will mean that the (non-regexp) snippets of the
  3765. Boolean search must match as full words.
  3766. This command searches the agenda files, and in addition the files listed
  3767. in `org-agenda-text-search-extra-files'."
  3768. (interactive "P")
  3769. (if org-agenda-overriding-arguments
  3770. (setq todo-only (car org-agenda-overriding-arguments)
  3771. string (nth 1 org-agenda-overriding-arguments)
  3772. edit-at (nth 2 org-agenda-overriding-arguments)))
  3773. (let* ((props (list 'face nil
  3774. 'done-face 'org-agenda-done
  3775. 'org-not-done-regexp org-not-done-regexp
  3776. 'org-todo-regexp org-todo-regexp
  3777. 'org-complex-heading-regexp org-complex-heading-regexp
  3778. 'mouse-face 'highlight
  3779. 'help-echo (format "mouse-2 or RET jump to location")))
  3780. (full-words org-agenda-search-view-force-full-words)
  3781. (org-agenda-text-search-extra-files org-agenda-text-search-extra-files)
  3782. regexp rtn rtnall files file pos
  3783. marker category category-pos tags c neg re boolean
  3784. ee txt beg end words regexps+ regexps- hdl-only buffer beg1 str)
  3785. (unless (and (not edit-at)
  3786. (stringp string)
  3787. (string-match "\\S-" string))
  3788. (setq string (read-string
  3789. (if org-agenda-search-view-always-boolean
  3790. "[+-]Word/{Regexp} ...: "
  3791. "Phrase or [+-]Word/{Regexp} ...: ")
  3792. (cond
  3793. ((integerp edit-at) (cons string edit-at))
  3794. (edit-at string))
  3795. 'org-agenda-search-history)))
  3796. (catch 'exit
  3797. (if org-agenda-sticky
  3798. (setq org-agenda-buffer-name
  3799. (if (stringp string)
  3800. (format "*Org Agenda(%s:%s)*"
  3801. (or org-keys (or (and todo-only "S") "s")) string)
  3802. (format "*Org Agenda(%s)*" (or (and todo-only "S") "s")))))
  3803. (org-agenda-prepare "SEARCH")
  3804. (org-compile-prefix-format 'search)
  3805. (org-set-sorting-strategy 'search)
  3806. (setq org-agenda-redo-command
  3807. (list 'org-search-view (if todo-only t nil)
  3808. (list 'if 'current-prefix-arg nil string)))
  3809. (setq org-agenda-query-string string)
  3810. (if (equal (string-to-char string) ?*)
  3811. (setq hdl-only t
  3812. words (substring string 1))
  3813. (setq words string))
  3814. (when (equal (string-to-char words) ?!)
  3815. (setq todo-only t
  3816. words (substring words 1)))
  3817. (when (equal (string-to-char words) ?:)
  3818. (setq full-words t
  3819. words (substring words 1)))
  3820. (if (or org-agenda-search-view-always-boolean
  3821. (member (string-to-char words) '(?- ?+ ?\{)))
  3822. (setq boolean t))
  3823. (setq words (org-split-string words))
  3824. (let (www w)
  3825. (while (setq w (pop words))
  3826. (while (and (string-match "\\\\\\'" w) words)
  3827. (setq w (concat (substring w 0 -1) " " (pop words))))
  3828. (push w www))
  3829. (setq words (nreverse www) www nil)
  3830. (while (setq w (pop words))
  3831. (when (and (string-match "\\`[-+]?{" w)
  3832. (not (string-match "}\\'" w)))
  3833. (while (and words (not (string-match "}\\'" (car words))))
  3834. (setq w (concat w " " (pop words))))
  3835. (setq w (concat w " " (pop words))))
  3836. (push w www))
  3837. (setq words (nreverse www)))
  3838. (setq org-agenda-last-search-view-search-was-boolean boolean)
  3839. (when boolean
  3840. (let (wds w)
  3841. (while (setq w (pop words))
  3842. (if (or (equal (substring w 0 1) "\"")
  3843. (and (> (length w) 1)
  3844. (member (substring w 0 1) '("+" "-"))
  3845. (equal (substring w 1 2) "\"")))
  3846. (while (and words (not (equal (substring w -1) "\"")))
  3847. (setq w (concat w " " (pop words)))))
  3848. (and (string-match "\\`\\([-+]?\\)\"" w)
  3849. (setq w (replace-match "\\1" nil nil w)))
  3850. (and (equal (substring w -1) "\"") (setq w (substring w 0 -1)))
  3851. (push w wds))
  3852. (setq words (nreverse wds))))
  3853. (if boolean
  3854. (mapc (lambda (w)
  3855. (setq c (string-to-char w))
  3856. (if (equal c ?-)
  3857. (setq neg t w (substring w 1))
  3858. (if (equal c ?+)
  3859. (setq neg nil w (substring w 1))
  3860. (setq neg nil)))
  3861. (if (string-match "\\`{.*}\\'" w)
  3862. (setq re (substring w 1 -1))
  3863. (if full-words
  3864. (setq re (concat "\\<" (regexp-quote (downcase w)) "\\>"))
  3865. (setq re (regexp-quote (downcase w)))))
  3866. (if neg (push re regexps-) (push re regexps+)))
  3867. words)
  3868. (push (mapconcat (lambda (w) (regexp-quote w)) words "\\s-+")
  3869. regexps+))
  3870. (setq regexps+ (sort regexps+ (lambda (a b) (> (length a) (length b)))))
  3871. (if (not regexps+)
  3872. (setq regexp org-outline-regexp-bol)
  3873. (setq regexp (pop regexps+))
  3874. (if hdl-only (setq regexp (concat org-outline-regexp-bol ".*?"
  3875. regexp))))
  3876. (setq files (org-agenda-files nil 'ifmode))
  3877. (when (eq (car org-agenda-text-search-extra-files) 'agenda-archives)
  3878. (pop org-agenda-text-search-extra-files)
  3879. (setq files (org-add-archive-files files)))
  3880. (setq files (append files org-agenda-text-search-extra-files)
  3881. rtnall nil)
  3882. (while (setq file (pop files))
  3883. (setq ee nil)
  3884. (catch 'nextfile
  3885. (org-check-agenda-file file)
  3886. (setq buffer (if (file-exists-p file)
  3887. (org-get-agenda-file-buffer file)
  3888. (error "No such file %s" file)))
  3889. (if (not buffer)
  3890. ;; If file does not exist, make sure an error message is sent
  3891. (setq rtn (list (format "ORG-AGENDA-ERROR: No such org-file %s"
  3892. file))))
  3893. (with-current-buffer buffer
  3894. (with-syntax-table (org-search-syntax-table)
  3895. (unless (derived-mode-p 'org-mode)
  3896. (error "Agenda file %s is not in `org-mode'" file))
  3897. (let ((case-fold-search t))
  3898. (save-excursion
  3899. (save-restriction
  3900. (if org-agenda-restrict
  3901. (narrow-to-region org-agenda-restrict-begin
  3902. org-agenda-restrict-end)
  3903. (widen))
  3904. (goto-char (point-min))
  3905. (unless (or (org-at-heading-p)
  3906. (outline-next-heading))
  3907. (throw 'nextfile t))
  3908. (goto-char (max (point-min) (1- (point))))
  3909. (while (re-search-forward regexp nil t)
  3910. (org-back-to-heading t)
  3911. (skip-chars-forward "* ")
  3912. (setq beg (point-at-bol)
  3913. beg1 (point)
  3914. end (progn (outline-next-heading) (point)))
  3915. (catch :skip
  3916. (goto-char beg)
  3917. (org-agenda-skip)
  3918. (setq str (buffer-substring-no-properties
  3919. (point-at-bol)
  3920. (if hdl-only (point-at-eol) end)))
  3921. (mapc (lambda (wr) (when (string-match wr str)
  3922. (goto-char (1- end))
  3923. (throw :skip t)))
  3924. regexps-)
  3925. (mapc (lambda (wr) (unless (string-match wr str)
  3926. (goto-char (1- end))
  3927. (throw :skip t)))
  3928. (if todo-only
  3929. (cons (concat "^\*+[ \t]+" org-not-done-regexp)
  3930. regexps+)
  3931. regexps+))
  3932. (goto-char beg)
  3933. (setq marker (org-agenda-new-marker (point))
  3934. category (org-get-category)
  3935. category-pos (get-text-property (point) 'org-category-position)
  3936. tags (org-get-tags-at (point))
  3937. txt (org-agenda-format-item
  3938. ""
  3939. (buffer-substring-no-properties
  3940. beg1 (point-at-eol))
  3941. category tags))
  3942. (org-add-props txt props
  3943. 'org-marker marker 'org-hd-marker marker
  3944. 'org-todo-regexp org-todo-regexp
  3945. 'org-complex-heading-regexp org-complex-heading-regexp
  3946. 'priority 1000 'org-category category
  3947. 'org-category-position category-pos
  3948. 'type "search")
  3949. (push txt ee)
  3950. (goto-char (1- end))))))))))
  3951. (setq rtn (nreverse ee))
  3952. (setq rtnall (append rtnall rtn)))
  3953. (if org-agenda-overriding-header
  3954. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  3955. nil 'face 'org-agenda-structure) "\n")
  3956. (insert "Search words: ")
  3957. (add-text-properties (point-min) (1- (point))
  3958. (list 'face 'org-agenda-structure))
  3959. (setq pos (point))
  3960. (insert string "\n")
  3961. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  3962. (setq pos (point))
  3963. (unless org-agenda-multi
  3964. (insert "Press `[', `]' to add/sub word, `{', `}' to add/sub regexp, `C-u r' to edit\n")
  3965. (add-text-properties pos (1- (point))
  3966. (list 'face 'org-agenda-structure))))
  3967. (org-agenda-mark-header-line (point-min))
  3968. (when rtnall
  3969. (insert (org-agenda-finalize-entries rtnall) "\n"))
  3970. (goto-char (point-min))
  3971. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  3972. (add-text-properties (point-min) (point-max)
  3973. `(org-agenda-type search
  3974. org-last-args (,todo-only ,string ,edit-at)
  3975. org-redo-cmd ,org-agenda-redo-command
  3976. org-serie-cmd ,org-cmd))
  3977. (org-agenda-finalize)
  3978. (setq buffer-read-only t))))
  3979. ;;; Agenda TODO list
  3980. (defvar org-select-this-todo-keyword nil)
  3981. (defvar org-last-arg nil)
  3982. ;;;###autoload
  3983. (defun org-todo-list (&optional arg)
  3984. "Show all (not done) TODO entries from all agenda file in a single list.
  3985. The prefix arg can be used to select a specific TODO keyword and limit
  3986. the list to these. When using \\[universal-argument], you will be prompted
  3987. for a keyword. A numeric prefix directly selects the Nth keyword in
  3988. `org-todo-keywords-1'."
  3989. (interactive "P")
  3990. (if org-agenda-overriding-arguments
  3991. (setq arg org-agenda-overriding-arguments))
  3992. (if (and (stringp arg) (not (string-match "\\S-" arg))) (setq arg nil))
  3993. (let* ((today (org-today))
  3994. (date (calendar-gregorian-from-absolute today))
  3995. (kwds org-todo-keywords-for-agenda)
  3996. (completion-ignore-case t)
  3997. (org-select-this-todo-keyword
  3998. (if (stringp arg) arg
  3999. (and arg (integerp arg) (> arg 0)
  4000. (nth (1- arg) kwds))))
  4001. rtn rtnall files file pos)
  4002. (when (equal arg '(4))
  4003. (setq org-select-this-todo-keyword
  4004. (org-icompleting-read "Keyword (or KWD1|K2D2|...): "
  4005. (mapcar 'list kwds) nil nil)))
  4006. (and (equal 0 arg) (setq org-select-this-todo-keyword nil))
  4007. (catch 'exit
  4008. (if org-agenda-sticky
  4009. (setq org-agenda-buffer-name
  4010. (if (stringp org-select-this-todo-keyword)
  4011. (format "*Org Agenda(%s:%s)*" (or org-keys "t")
  4012. org-select-this-todo-keyword)
  4013. (format "*Org Agenda(%s)*" (or org-keys "t")))))
  4014. (org-agenda-prepare "TODO")
  4015. (org-compile-prefix-format 'todo)
  4016. (org-set-sorting-strategy 'todo)
  4017. (setq org-agenda-redo-command
  4018. `(org-todo-list (or current-prefix-arg (quote ,arg))))
  4019. (setq files (org-agenda-files nil 'ifmode)
  4020. rtnall nil)
  4021. (while (setq file (pop files))
  4022. (catch 'nextfile
  4023. (org-check-agenda-file file)
  4024. (setq rtn (org-agenda-get-day-entries file date :todo))
  4025. (setq rtnall (append rtnall rtn))))
  4026. (if org-agenda-overriding-header
  4027. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4028. nil 'face 'org-agenda-structure) "\n")
  4029. (insert "Global list of TODO items of type: ")
  4030. (add-text-properties (point-min) (1- (point))
  4031. (list 'face 'org-agenda-structure
  4032. 'short-heading
  4033. (concat "ToDo: "
  4034. (or org-select-this-todo-keyword "ALL"))))
  4035. (org-agenda-mark-header-line (point-min))
  4036. (setq pos (point))
  4037. (insert (or org-select-this-todo-keyword "ALL") "\n")
  4038. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4039. (setq pos (point))
  4040. (unless org-agenda-multi
  4041. (insert "Available with `N r': (0)[ALL]")
  4042. (let ((n 0) s)
  4043. (mapc (lambda (x)
  4044. (setq s (format "(%d)%s" (setq n (1+ n)) x))
  4045. (if (> (+ (current-column) (string-width s) 1) (frame-width))
  4046. (insert "\n "))
  4047. (insert " " s))
  4048. kwds))
  4049. (insert "\n"))
  4050. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4051. (org-agenda-mark-header-line (point-min))
  4052. (when rtnall
  4053. (insert (org-agenda-finalize-entries rtnall) "\n"))
  4054. (goto-char (point-min))
  4055. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4056. (add-text-properties (point-min) (point-max)
  4057. `(org-agenda-type todo
  4058. org-last-args ,arg
  4059. org-redo-cmd ,org-agenda-redo-command
  4060. org-serie-cmd ,org-cmd))
  4061. (org-agenda-finalize)
  4062. (setq buffer-read-only t))))
  4063. ;;; Agenda tags match
  4064. ;;;###autoload
  4065. (defun org-tags-view (&optional todo-only match)
  4066. "Show all headlines for all `org-agenda-files' matching a TAGS criterion.
  4067. The prefix arg TODO-ONLY limits the search to TODO entries."
  4068. (interactive "P")
  4069. (if org-agenda-overriding-arguments
  4070. (setq todo-only (car org-agenda-overriding-arguments)
  4071. match (nth 1 org-agenda-overriding-arguments)))
  4072. (let* ((org-tags-match-list-sublevels
  4073. org-tags-match-list-sublevels)
  4074. (completion-ignore-case t)
  4075. rtn rtnall files file pos matcher
  4076. buffer)
  4077. (when (and (stringp match) (not (string-match "\\S-" match)))
  4078. (setq match nil))
  4079. (setq matcher (org-make-tags-matcher match)
  4080. match (car matcher) matcher (cdr matcher))
  4081. (catch 'exit
  4082. (if org-agenda-sticky
  4083. (setq org-agenda-buffer-name
  4084. (if (stringp match)
  4085. (format "*Org Agenda(%s:%s)*"
  4086. (or org-keys (or (and todo-only "M") "m")) match)
  4087. (format "*Org Agenda(%s)*" (or (and todo-only "M") "m")))))
  4088. (org-agenda-prepare (concat "TAGS " match))
  4089. (org-compile-prefix-format 'tags)
  4090. (org-set-sorting-strategy 'tags)
  4091. (setq org-agenda-query-string match)
  4092. (setq org-agenda-redo-command
  4093. (list 'org-tags-view `(quote ,todo-only)
  4094. (list 'if 'current-prefix-arg nil `(quote ,org-agenda-query-string))))
  4095. (setq files (org-agenda-files nil 'ifmode)
  4096. rtnall nil)
  4097. (while (setq file (pop files))
  4098. (catch 'nextfile
  4099. (org-check-agenda-file file)
  4100. (setq buffer (if (file-exists-p file)
  4101. (org-get-agenda-file-buffer file)
  4102. (error "No such file %s" file)))
  4103. (if (not buffer)
  4104. ;; If file does not exist, error message to agenda
  4105. (setq rtn (list
  4106. (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4107. rtnall (append rtnall rtn))
  4108. (with-current-buffer buffer
  4109. (unless (derived-mode-p 'org-mode)
  4110. (error "Agenda file %s is not in `org-mode'" file))
  4111. (save-excursion
  4112. (save-restriction
  4113. (if org-agenda-restrict
  4114. (narrow-to-region org-agenda-restrict-begin
  4115. org-agenda-restrict-end)
  4116. (widen))
  4117. (setq rtn (org-scan-tags 'agenda matcher todo-only))
  4118. (setq rtnall (append rtnall rtn))))))))
  4119. (if org-agenda-overriding-header
  4120. (insert (org-add-props (copy-sequence org-agenda-overriding-header)
  4121. nil 'face 'org-agenda-structure) "\n")
  4122. (insert "Headlines with TAGS match: ")
  4123. (add-text-properties (point-min) (1- (point))
  4124. (list 'face 'org-agenda-structure
  4125. 'short-heading
  4126. (concat "Match: " match)))
  4127. (setq pos (point))
  4128. (insert match "\n")
  4129. (add-text-properties pos (1- (point)) (list 'face 'org-warning))
  4130. (setq pos (point))
  4131. (unless org-agenda-multi
  4132. (insert "Press `C-u r' to search again with new search string\n"))
  4133. (add-text-properties pos (1- (point)) (list 'face 'org-agenda-structure)))
  4134. (org-agenda-mark-header-line (point-min))
  4135. (when rtnall
  4136. (insert (org-agenda-finalize-entries rtnall) "\n"))
  4137. (goto-char (point-min))
  4138. (or org-agenda-multi (org-agenda-fit-window-to-buffer))
  4139. (add-text-properties (point-min) (point-max)
  4140. `(org-agenda-type tags
  4141. org-last-args (,todo-only ,match)
  4142. org-redo-cmd ,org-agenda-redo-command
  4143. org-serie-cmd ,org-cmd))
  4144. (org-agenda-finalize)
  4145. (setq buffer-read-only t))))
  4146. ;;; Agenda Finding stuck projects
  4147. (defvar org-agenda-skip-regexp nil
  4148. "Regular expression used in skipping subtrees for the agenda.
  4149. This is basically a temporary global variable that can be set and then
  4150. used by user-defined selections using `org-agenda-skip-function'.")
  4151. (defvar org-agenda-overriding-header nil
  4152. "When set during agenda, todo and tags searches it replaces the header.
  4153. This variable should not be set directly, but custom commands can bind it
  4154. in the options section.")
  4155. (defun org-agenda-skip-entry-when-regexp-matches ()
  4156. "Check if the current entry contains match for `org-agenda-skip-regexp'.
  4157. If yes, it returns the end position of this entry, causing agenda commands
  4158. to skip the entry but continuing the search in the subtree. This is a
  4159. function that can be put into `org-agenda-skip-function' for the duration
  4160. of a command."
  4161. (let ((end (save-excursion (org-end-of-subtree t)))
  4162. skip)
  4163. (save-excursion
  4164. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4165. (and skip end)))
  4166. (defun org-agenda-skip-subtree-when-regexp-matches ()
  4167. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4168. If yes, it returns the end position of this tree, causing agenda commands
  4169. to skip this subtree. This is a function that can be put into
  4170. `org-agenda-skip-function' for the duration of a command."
  4171. (let ((end (save-excursion (org-end-of-subtree t)))
  4172. skip)
  4173. (save-excursion
  4174. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4175. (and skip end)))
  4176. (defun org-agenda-skip-entry-when-regexp-matches-in-subtree ()
  4177. "Check if the current subtree contains match for `org-agenda-skip-regexp'.
  4178. If yes, it returns the end position of the current entry (NOT the tree),
  4179. causing agenda commands to skip the entry but continuing the search in
  4180. the subtree. This is a function that can be put into
  4181. `org-agenda-skip-function' for the duration of a command. An important
  4182. use of this function is for the stuck project list."
  4183. (let ((end (save-excursion (org-end-of-subtree t)))
  4184. (entry-end (save-excursion (outline-next-heading) (1- (point))))
  4185. skip)
  4186. (save-excursion
  4187. (setq skip (re-search-forward org-agenda-skip-regexp end t)))
  4188. (and skip entry-end)))
  4189. (defun org-agenda-skip-entry-if (&rest conditions)
  4190. "Skip entry if any of CONDITIONS is true.
  4191. See `org-agenda-skip-if' for details."
  4192. (org-agenda-skip-if nil conditions))
  4193. (defun org-agenda-skip-subtree-if (&rest conditions)
  4194. "Skip entry if any of CONDITIONS is true.
  4195. See `org-agenda-skip-if' for details."
  4196. (org-agenda-skip-if t conditions))
  4197. (defun org-agenda-skip-if (subtree conditions)
  4198. "Checks current entity for CONDITIONS.
  4199. If SUBTREE is non-nil, the entire subtree is checked. Otherwise, only
  4200. the entry (i.e. the text before the next heading) is checked.
  4201. CONDITIONS is a list of symbols, boolean OR is used to combine the results
  4202. from different tests. Valid conditions are:
  4203. scheduled Check if there is a scheduled cookie
  4204. notscheduled Check if there is no scheduled cookie
  4205. deadline Check if there is a deadline
  4206. notdeadline Check if there is no deadline
  4207. timestamp Check if there is a timestamp (also deadline or scheduled)
  4208. nottimestamp Check if there is no timestamp (also deadline or scheduled)
  4209. regexp Check if regexp matches
  4210. notregexp Check if regexp does not match.
  4211. todo Check if TODO keyword matches
  4212. nottodo Check if TODO keyword does not match
  4213. The regexp is taken from the conditions list, it must come right after
  4214. the `regexp' or `notregexp' element.
  4215. `todo' and `nottodo' accept as an argument a list of todo
  4216. keywords, which may include \"*\" to match any todo keyword.
  4217. (org-agenda-skip-entry-if 'todo '(\"TODO\" \"WAITING\"))
  4218. would skip all entries with \"TODO\" or \"WAITING\" keywords.
  4219. Instead of a list, a keyword class may be given. For example:
  4220. (org-agenda-skip-entry-if 'nottodo 'done)
  4221. would skip entries that haven't been marked with any of \"DONE\"
  4222. keywords. Possible classes are: `todo', `done', `any'.
  4223. If any of these conditions is met, this function returns the end point of
  4224. the entity, causing the search to continue from there. This is a function
  4225. that can be put into `org-agenda-skip-function' for the duration of a command."
  4226. (let (beg end m)
  4227. (org-back-to-heading t)
  4228. (setq beg (point)
  4229. end (if subtree
  4230. (progn (org-end-of-subtree t) (point))
  4231. (progn (outline-next-heading) (1- (point)))))
  4232. (goto-char beg)
  4233. (and
  4234. (or
  4235. (and (memq 'scheduled conditions)
  4236. (re-search-forward org-scheduled-time-regexp end t))
  4237. (and (memq 'notscheduled conditions)
  4238. (not (re-search-forward org-scheduled-time-regexp end t)))
  4239. (and (memq 'deadline conditions)
  4240. (re-search-forward org-deadline-time-regexp end t))
  4241. (and (memq 'notdeadline conditions)
  4242. (not (re-search-forward org-deadline-time-regexp end t)))
  4243. (and (memq 'timestamp conditions)
  4244. (re-search-forward org-ts-regexp end t))
  4245. (and (memq 'nottimestamp conditions)
  4246. (not (re-search-forward org-ts-regexp end t)))
  4247. (and (setq m (memq 'regexp conditions))
  4248. (stringp (nth 1 m))
  4249. (re-search-forward (nth 1 m) end t))
  4250. (and (setq m (memq 'notregexp conditions))
  4251. (stringp (nth 1 m))
  4252. (not (re-search-forward (nth 1 m) end t)))
  4253. (and (or
  4254. (setq m (memq 'nottodo conditions))
  4255. (setq m (memq 'todo-unblocked conditions))
  4256. (setq m (memq 'nottodo-unblocked conditions))
  4257. (setq m (memq 'todo conditions)))
  4258. (org-agenda-skip-if-todo m end)))
  4259. end)))
  4260. (defun org-agenda-skip-if-todo (args end)
  4261. "Helper function for `org-agenda-skip-if', do not use it directly.
  4262. ARGS is a list with first element either `todo', `nottodo',
  4263. `todo-unblocked' or `nottodo-unblocked'. The remainder is either
  4264. a list of TODO keywords, or a state symbol `todo' or `done' or
  4265. `any'."
  4266. (let ((kw (car args))
  4267. (arg (cadr args))
  4268. todo-wds todo-re)
  4269. (setq todo-wds
  4270. (org-uniquify
  4271. (cond
  4272. ((listp arg) ;; list of keywords
  4273. (if (member "*" arg)
  4274. (mapcar 'substring-no-properties org-todo-keywords-1)
  4275. arg))
  4276. ((symbolp arg) ;; keyword class name
  4277. (cond
  4278. ((eq arg 'todo)
  4279. (org-delete-all org-done-keywords
  4280. (mapcar 'substring-no-properties
  4281. org-todo-keywords-1)))
  4282. ((eq arg 'done) org-done-keywords)
  4283. ((eq arg 'any)
  4284. (mapcar 'substring-no-properties org-todo-keywords-1)))))))
  4285. (setq todo-re
  4286. (concat "^\\*+[ \t]+\\<\\("
  4287. (mapconcat 'identity todo-wds "\\|")
  4288. "\\)\\>"))
  4289. (cond
  4290. ((eq kw 'todo) (re-search-forward todo-re end t))
  4291. ((eq kw 'nottodo) (not (re-search-forward todo-re end t)))
  4292. ((eq kw 'todo-unblocked)
  4293. (catch 'unblocked
  4294. (while (re-search-forward todo-re end t)
  4295. (or (org-entry-blocked-p) (throw 'unblocked t)))
  4296. nil))
  4297. ((eq kw 'nottodo-unblocked)
  4298. (catch 'unblocked
  4299. (while (re-search-forward todo-re end t)
  4300. (or (org-entry-blocked-p) (throw 'unblocked nil)))
  4301. t))
  4302. )))
  4303. ;;;###autoload
  4304. (defun org-agenda-list-stuck-projects (&rest ignore)
  4305. "Create agenda view for projects that are stuck.
  4306. Stuck projects are project that have no next actions. For the definitions
  4307. of what a project is and how to check if it stuck, customize the variable
  4308. `org-stuck-projects'."
  4309. (interactive)
  4310. (let* ((org-agenda-skip-function
  4311. 'org-agenda-skip-entry-when-regexp-matches-in-subtree)
  4312. ;; We could have used org-agenda-skip-if here.
  4313. (org-agenda-overriding-header
  4314. (or org-agenda-overriding-header "List of stuck projects: "))
  4315. (matcher (nth 0 org-stuck-projects))
  4316. (todo (nth 1 org-stuck-projects))
  4317. (todo-wds (if (member "*" todo)
  4318. (progn
  4319. (org-agenda-prepare-buffers (org-agenda-files
  4320. nil 'ifmode))
  4321. (org-delete-all
  4322. org-done-keywords-for-agenda
  4323. (copy-sequence org-todo-keywords-for-agenda)))
  4324. todo))
  4325. (todo-re (concat "^\\*+[ \t]+\\("
  4326. (mapconcat 'identity todo-wds "\\|")
  4327. "\\)\\>"))
  4328. (tags (nth 2 org-stuck-projects))
  4329. (tags-re (if (member "*" tags)
  4330. (concat org-outline-regexp-bol
  4331. (org-re ".*:[[:alnum:]_@#%]+:[ \t]*$"))
  4332. (if tags
  4333. (concat org-outline-regexp-bol
  4334. ".*:\\("
  4335. (mapconcat 'identity tags "\\|")
  4336. (org-re "\\):[[:alnum:]_@#%:]*[ \t]*$")))))
  4337. (gen-re (nth 3 org-stuck-projects))
  4338. (re-list
  4339. (delq nil
  4340. (list
  4341. (if todo todo-re)
  4342. (if tags tags-re)
  4343. (and gen-re (stringp gen-re) (string-match "\\S-" gen-re)
  4344. gen-re)))))
  4345. (setq org-agenda-skip-regexp
  4346. (if re-list
  4347. (mapconcat 'identity re-list "\\|")
  4348. (error "No information how to identify unstuck projects")))
  4349. (org-tags-view nil matcher)
  4350. (with-current-buffer org-agenda-buffer-name
  4351. (setq org-agenda-redo-command
  4352. `(org-agenda-list-stuck-projects ,current-prefix-arg)))))
  4353. ;;; Diary integration
  4354. (defvar org-disable-agenda-to-diary nil) ;Dynamically-scoped param.
  4355. (defvar diary-list-entries-hook)
  4356. (defvar diary-time-regexp)
  4357. (defun org-get-entries-from-diary (date)
  4358. "Get the (Emacs Calendar) diary entries for DATE."
  4359. (require 'diary-lib)
  4360. (let* ((diary-fancy-buffer "*temporary-fancy-diary-buffer*")
  4361. (diary-display-hook '(fancy-diary-display))
  4362. (diary-display-function 'fancy-diary-display)
  4363. (pop-up-frames nil)
  4364. (diary-list-entries-hook
  4365. (cons 'org-diary-default-entry diary-list-entries-hook))
  4366. (diary-file-name-prefix-function nil) ; turn this feature off
  4367. (diary-modify-entry-list-string-function 'org-modify-diary-entry-string)
  4368. entries
  4369. (org-disable-agenda-to-diary t))
  4370. (save-excursion
  4371. (save-window-excursion
  4372. (funcall (if (fboundp 'diary-list-entries)
  4373. 'diary-list-entries 'list-diary-entries)
  4374. date 1)))
  4375. (if (not (get-buffer diary-fancy-buffer))
  4376. (setq entries nil)
  4377. (with-current-buffer diary-fancy-buffer
  4378. (setq buffer-read-only nil)
  4379. (if (zerop (buffer-size))
  4380. ;; No entries
  4381. (setq entries nil)
  4382. ;; Omit the date and other unnecessary stuff
  4383. (org-agenda-cleanup-fancy-diary)
  4384. ;; Add prefix to each line and extend the text properties
  4385. (if (zerop (buffer-size))
  4386. (setq entries nil)
  4387. (setq entries (buffer-substring (point-min) (- (point-max) 1)))
  4388. (setq entries
  4389. (with-temp-buffer
  4390. (insert entries) (goto-char (point-min))
  4391. (while (re-search-forward "\n[ \t]+\\(.+\\)$" nil t)
  4392. (unless (save-match-data (string-match diary-time-regexp (match-string 1)))
  4393. (replace-match (concat "; " (match-string 1)))))
  4394. (buffer-string)))))
  4395. (set-buffer-modified-p nil)
  4396. (kill-buffer diary-fancy-buffer)))
  4397. (when entries
  4398. (setq entries (org-split-string entries "\n"))
  4399. (setq entries
  4400. (mapcar
  4401. (lambda (x)
  4402. (setq x (org-agenda-format-item "" x "Diary" nil 'time))
  4403. ;; Extend the text properties to the beginning of the line
  4404. (org-add-props x (text-properties-at (1- (length x)) x)
  4405. 'type "diary" 'date date 'face 'org-agenda-diary))
  4406. entries)))))
  4407. (defvar org-agenda-cleanup-fancy-diary-hook nil
  4408. "Hook run when the fancy diary buffer is cleaned up.")
  4409. (defun org-agenda-cleanup-fancy-diary ()
  4410. "Remove unwanted stuff in buffer created by `fancy-diary-display'.
  4411. This gets rid of the date, the underline under the date, and
  4412. the dummy entry installed by `org-mode' to ensure non-empty diary for each
  4413. date. It also removes lines that contain only whitespace."
  4414. (goto-char (point-min))
  4415. (if (looking-at ".*?:[ \t]*")
  4416. (progn
  4417. (replace-match "")
  4418. (re-search-forward "\n=+$" nil t)
  4419. (replace-match "")
  4420. (while (re-search-backward "^ +\n?" nil t) (replace-match "")))
  4421. (re-search-forward "\n=+$" nil t)
  4422. (delete-region (point-min) (min (point-max) (1+ (match-end 0)))))
  4423. (goto-char (point-min))
  4424. (while (re-search-forward "^ +\n" nil t)
  4425. (replace-match ""))
  4426. (goto-char (point-min))
  4427. (if (re-search-forward "^Org-mode dummy\n?" nil t)
  4428. (replace-match ""))
  4429. (run-hooks 'org-agenda-cleanup-fancy-diary-hook))
  4430. ;; Make sure entries from the diary have the right text properties.
  4431. (eval-after-load "diary-lib"
  4432. '(if (boundp 'diary-modify-entry-list-string-function)
  4433. ;; We can rely on the hook, nothing to do
  4434. nil
  4435. ;; Hook not available, must use advice to make this work
  4436. (defadvice add-to-diary-list (before org-mark-diary-entry activate)
  4437. "Make the position visible."
  4438. (if (and org-disable-agenda-to-diary ;; called from org-agenda
  4439. (stringp string)
  4440. buffer-file-name)
  4441. (setq string (org-modify-diary-entry-string string))))))
  4442. (defun org-modify-diary-entry-string (string)
  4443. "Add text properties to string, allowing org-mode to act on it."
  4444. (org-add-props string nil
  4445. 'mouse-face 'highlight
  4446. 'help-echo (if buffer-file-name
  4447. (format "mouse-2 or RET jump to diary file %s"
  4448. (abbreviate-file-name buffer-file-name))
  4449. "")
  4450. 'org-agenda-diary-link t
  4451. 'org-marker (org-agenda-new-marker (point-at-bol))))
  4452. (defun org-diary-default-entry ()
  4453. "Add a dummy entry to the diary.
  4454. Needed to avoid empty dates which mess up holiday display."
  4455. ;; Catch the error if dealing with the new add-to-diary-alist
  4456. (when org-disable-agenda-to-diary
  4457. (condition-case nil
  4458. (org-add-to-diary-list original-date "Org-mode dummy" "")
  4459. (error
  4460. (org-add-to-diary-list original-date "Org-mode dummy" "" nil)))))
  4461. (defun org-add-to-diary-list (&rest args)
  4462. (if (fboundp 'diary-add-to-list)
  4463. (apply 'diary-add-to-list args)
  4464. (apply 'add-to-diary-list args)))
  4465. (defvar org-diary-last-run-time nil)
  4466. ;;;###autoload
  4467. (defun org-diary (&rest args)
  4468. "Return diary information from org files.
  4469. This function can be used in a \"sexp\" diary entry in the Emacs calendar.
  4470. It accesses org files and extracts information from those files to be
  4471. listed in the diary. The function accepts arguments specifying what
  4472. items should be listed. For a list of arguments allowed here, see the
  4473. variable `org-agenda-entry-types'.
  4474. The call in the diary file should look like this:
  4475. &%%(org-diary) ~/path/to/some/orgfile.org
  4476. Use a separate line for each org file to check. Or, if you omit the file name,
  4477. all files listed in `org-agenda-files' will be checked automatically:
  4478. &%%(org-diary)
  4479. If you don't give any arguments (as in the example above), the default
  4480. arguments (:deadline :scheduled :timestamp :sexp) are used.
  4481. So the example above may also be written as
  4482. &%%(org-diary :deadline :timestamp :sexp :scheduled)
  4483. The function expects the lisp variables `entry' and `date' to be provided
  4484. by the caller, because this is how the calendar works. Don't use this
  4485. function from a program - use `org-agenda-get-day-entries' instead."
  4486. (when (> (- (org-float-time)
  4487. org-agenda-last-marker-time)
  4488. 5)
  4489. ;; I am not sure if this works with sticky agendas, because the marker
  4490. ;; list is then no longer a global variable.
  4491. (org-agenda-reset-markers))
  4492. (org-compile-prefix-format 'agenda)
  4493. (org-set-sorting-strategy 'agenda)
  4494. (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
  4495. (let* ((files (if (and entry (stringp entry) (string-match "\\S-" entry))
  4496. (list entry)
  4497. (org-agenda-files t)))
  4498. (time (org-float-time))
  4499. file rtn results)
  4500. (when (or (not org-diary-last-run-time)
  4501. (> (- time
  4502. org-diary-last-run-time)
  4503. 3))
  4504. (org-agenda-prepare-buffers files))
  4505. (setq org-diary-last-run-time time)
  4506. ;; If this is called during org-agenda, don't return any entries to
  4507. ;; the calendar. Org Agenda will list these entries itself.
  4508. (if org-disable-agenda-to-diary (setq files nil))
  4509. (while (setq file (pop files))
  4510. (setq rtn (apply 'org-agenda-get-day-entries file date args))
  4511. (setq results (append results rtn)))
  4512. (if results
  4513. (concat (org-agenda-finalize-entries results) "\n"))))
  4514. ;;; Agenda entry finders
  4515. (defun org-agenda-get-day-entries (file date &rest args)
  4516. "Does the work for `org-diary' and `org-agenda'.
  4517. FILE is the path to a file to be checked for entries. DATE is date like
  4518. the one returned by `calendar-current-date'. ARGS are symbols indicating
  4519. which kind of entries should be extracted. For details about these, see
  4520. the documentation of `org-diary'."
  4521. (setq args (or args '(:deadline :scheduled :timestamp :sexp)))
  4522. (let* ((org-startup-folded nil)
  4523. (org-startup-align-all-tables nil)
  4524. (buffer (if (file-exists-p file)
  4525. (org-get-agenda-file-buffer file)
  4526. (error "No such file %s" file)))
  4527. arg results rtn deadline-results)
  4528. (if (not buffer)
  4529. ;; If file does not exist, make sure an error message ends up in diary
  4530. (list (format "ORG-AGENDA-ERROR: No such org-file %s" file))
  4531. (with-current-buffer buffer
  4532. (unless (derived-mode-p 'org-mode)
  4533. (error "Agenda file %s is not in `org-mode'" file))
  4534. (setq org-agenda-buffer (or org-agenda-buffer buffer))
  4535. (let ((case-fold-search nil))
  4536. (save-excursion
  4537. (save-restriction
  4538. (if org-agenda-restrict
  4539. (narrow-to-region org-agenda-restrict-begin
  4540. org-agenda-restrict-end)
  4541. (widen))
  4542. ;; The way we repeatedly append to `results' makes it O(n^2) :-(
  4543. (while (setq arg (pop args))
  4544. (cond
  4545. ((and (eq arg :todo)
  4546. (equal date (calendar-gregorian-from-absolute
  4547. (org-today))))
  4548. (setq rtn (org-agenda-get-todos))
  4549. (setq results (append results rtn)))
  4550. ((eq arg :timestamp)
  4551. (setq rtn (org-agenda-get-blocks))
  4552. (setq results (append results rtn))
  4553. (setq rtn (org-agenda-get-timestamps deadline-results))
  4554. (setq results (append results rtn)))
  4555. ((eq arg :sexp)
  4556. (setq rtn (org-agenda-get-sexps))
  4557. (setq results (append results rtn)))
  4558. ((eq arg :scheduled)
  4559. (setq rtn (org-agenda-get-scheduled deadline-results))
  4560. (setq results (append results rtn)))
  4561. ((eq arg :closed)
  4562. (setq rtn (org-agenda-get-progress))
  4563. (setq results (append results rtn)))
  4564. ((eq arg :deadline)
  4565. (setq rtn (org-agenda-get-deadlines))
  4566. (setq deadline-results (copy-sequence rtn))
  4567. (setq results (append results rtn))))))))
  4568. results))))
  4569. (defvar org-heading-keyword-regexp-format) ; defined in org.el
  4570. (defun org-agenda-get-todos ()
  4571. "Return the TODO information for agenda display."
  4572. (let* ((props (list 'face nil
  4573. 'done-face 'org-agenda-done
  4574. 'org-not-done-regexp org-not-done-regexp
  4575. 'org-todo-regexp org-todo-regexp
  4576. 'org-complex-heading-regexp org-complex-heading-regexp
  4577. 'mouse-face 'highlight
  4578. 'help-echo
  4579. (format "mouse-2 or RET jump to org file %s"
  4580. (abbreviate-file-name buffer-file-name))))
  4581. (regexp (format org-heading-keyword-regexp-format
  4582. (cond
  4583. ((and org-select-this-todo-keyword
  4584. (equal org-select-this-todo-keyword "*"))
  4585. org-todo-regexp)
  4586. (org-select-this-todo-keyword
  4587. (concat "\\("
  4588. (mapconcat 'identity
  4589. (org-split-string
  4590. org-select-this-todo-keyword
  4591. "|")
  4592. "\\|") "\\)"))
  4593. (t org-not-done-regexp))))
  4594. marker priority category category-pos tags todo-state
  4595. ee txt beg end)
  4596. (goto-char (point-min))
  4597. (while (re-search-forward regexp nil t)
  4598. (catch :skip
  4599. (save-match-data
  4600. (beginning-of-line)
  4601. (org-agenda-skip)
  4602. (setq beg (point) end (save-excursion (outline-next-heading) (point)))
  4603. (when (org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item end)
  4604. (goto-char (1+ beg))
  4605. (or org-agenda-todo-list-sublevels (org-end-of-subtree 'invisible))
  4606. (throw :skip nil)))
  4607. (goto-char (match-beginning 2))
  4608. (setq marker (org-agenda-new-marker (match-beginning 0))
  4609. category (org-get-category)
  4610. category-pos (get-text-property (point) 'org-category-position)
  4611. txt (org-trim
  4612. (buffer-substring (match-beginning 2) (match-end 0)))
  4613. tags (org-get-tags-at (point))
  4614. txt (org-agenda-format-item "" txt category tags)
  4615. priority (1+ (org-get-priority txt))
  4616. todo-state (org-get-todo-state))
  4617. (org-add-props txt props
  4618. 'org-marker marker 'org-hd-marker marker
  4619. 'priority priority 'org-category category
  4620. 'org-category-position category-pos
  4621. 'type "todo" 'todo-state todo-state)
  4622. (push txt ee)
  4623. (if org-agenda-todo-list-sublevels
  4624. (goto-char (match-end 2))
  4625. (org-end-of-subtree 'invisible))))
  4626. (nreverse ee)))
  4627. (defun org-agenda-todo-custom-ignore-p (time n)
  4628. "Check whether timestamp is farther away then n number of days.
  4629. This function is invoked if `org-agenda-todo-ignore-deadlines',
  4630. `org-agenda-todo-ignore-scheduled' or
  4631. `org-agenda-todo-ignore-timestamp' is set to an integer."
  4632. (let ((days (org-days-to-time time)))
  4633. (if (>= n 0)
  4634. (>= days n)
  4635. (<= days n))))
  4636. ;;;###autoload
  4637. (defun org-agenda-check-for-timestamp-as-reason-to-ignore-todo-item
  4638. (&optional end)
  4639. "Do we have a reason to ignore this TODO entry because it has a time stamp?"
  4640. (when (or org-agenda-todo-ignore-with-date
  4641. org-agenda-todo-ignore-scheduled
  4642. org-agenda-todo-ignore-deadlines
  4643. org-agenda-todo-ignore-timestamp)
  4644. (setq end (or end (save-excursion (outline-next-heading) (point))))
  4645. (save-excursion
  4646. (or (and org-agenda-todo-ignore-with-date
  4647. (re-search-forward org-ts-regexp end t))
  4648. (and org-agenda-todo-ignore-scheduled
  4649. (re-search-forward org-scheduled-time-regexp end t)
  4650. (cond
  4651. ((eq org-agenda-todo-ignore-scheduled 'future)
  4652. (> (org-days-to-time (match-string 1)) 0))
  4653. ((eq org-agenda-todo-ignore-scheduled 'past)
  4654. (<= (org-days-to-time (match-string 1)) 0))
  4655. ((numberp org-agenda-todo-ignore-scheduled)
  4656. (org-agenda-todo-custom-ignore-p
  4657. (match-string 1) org-agenda-todo-ignore-scheduled))
  4658. (t)))
  4659. (and org-agenda-todo-ignore-deadlines
  4660. (re-search-forward org-deadline-time-regexp end t)
  4661. (cond
  4662. ((memq org-agenda-todo-ignore-deadlines '(t all)) t)
  4663. ((eq org-agenda-todo-ignore-deadlines 'far)
  4664. (not (org-deadline-close (match-string 1))))
  4665. ((eq org-agenda-todo-ignore-deadlines 'future)
  4666. (> (org-days-to-time (match-string 1)) 0))
  4667. ((eq org-agenda-todo-ignore-deadlines 'past)
  4668. (<= (org-days-to-time (match-string 1)) 0))
  4669. ((numberp org-agenda-todo-ignore-deadlines)
  4670. (org-agenda-todo-custom-ignore-p
  4671. (match-string 1) org-agenda-todo-ignore-deadlines))
  4672. (t (org-deadline-close (match-string 1)))))
  4673. (and org-agenda-todo-ignore-timestamp
  4674. (let ((buffer (current-buffer))
  4675. (regexp
  4676. (concat
  4677. org-scheduled-time-regexp "\\|" org-deadline-time-regexp))
  4678. (start (point)))
  4679. ;; Copy current buffer into a temporary one
  4680. (with-temp-buffer
  4681. (insert-buffer-substring buffer start end)
  4682. (goto-char (point-min))
  4683. ;; Delete SCHEDULED and DEADLINE items
  4684. (while (re-search-forward regexp end t)
  4685. (delete-region (match-beginning 0) (match-end 0)))
  4686. (goto-char (point-min))
  4687. ;; No search for timestamp left
  4688. (when (re-search-forward org-ts-regexp nil t)
  4689. (cond
  4690. ((eq org-agenda-todo-ignore-timestamp 'future)
  4691. (> (org-days-to-time (match-string 1)) 0))
  4692. ((eq org-agenda-todo-ignore-timestamp 'past)
  4693. (<= (org-days-to-time (match-string 1)) 0))
  4694. ((numberp org-agenda-todo-ignore-timestamp)
  4695. (org-agenda-todo-custom-ignore-p
  4696. (match-string 1) org-agenda-todo-ignore-timestamp))
  4697. (t))))))))))
  4698. (defconst org-agenda-no-heading-message
  4699. "No heading for this item in buffer or region.")
  4700. (defun org-agenda-get-timestamps (&optional deadline-results)
  4701. "Return the date stamp information for agenda display."
  4702. (let* ((props (list 'face 'org-agenda-calendar-event
  4703. 'org-not-done-regexp org-not-done-regexp
  4704. 'org-todo-regexp org-todo-regexp
  4705. 'org-complex-heading-regexp org-complex-heading-regexp
  4706. 'mouse-face 'highlight
  4707. 'help-echo
  4708. (format "mouse-2 or RET jump to org file %s"
  4709. (abbreviate-file-name buffer-file-name))))
  4710. (d1 (calendar-absolute-from-gregorian date))
  4711. mm
  4712. (deadline-position-alist
  4713. (mapcar (lambda (a) (and (setq mm (get-text-property
  4714. 0 'org-hd-marker a))
  4715. (cons (marker-position mm) a)))
  4716. deadline-results))
  4717. (remove-re org-ts-regexp)
  4718. (regexp
  4719. (concat
  4720. (if org-agenda-include-inactive-timestamps "[[<]" "<")
  4721. (regexp-quote
  4722. (substring
  4723. (format-time-string
  4724. (car org-time-stamp-formats)
  4725. (apply 'encode-time ; DATE bound by calendar
  4726. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  4727. 1 11))
  4728. "\\|\\(<[0-9]+-[0-9]+-[0-9]+[^>\n]+?\\+[0-9]+[hdwmy]>\\)"
  4729. "\\|\\(<%%\\(([^>\n]+)\\)>\\)"))
  4730. marker hdmarker deadlinep scheduledp clockp closedp inactivep
  4731. donep tmp priority category category-pos ee txt timestr tags
  4732. b0 b3 e3 head todo-state end-of-match show-all warntime)
  4733. (goto-char (point-min))
  4734. (while (setq end-of-match (re-search-forward regexp nil t))
  4735. (setq b0 (match-beginning 0)
  4736. b3 (match-beginning 3) e3 (match-end 3)
  4737. todo-state (save-match-data (ignore-errors (org-get-todo-state)))
  4738. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  4739. (member todo-state
  4740. org-agenda-repeating-timestamp-show-all)))
  4741. (catch :skip
  4742. (and (org-at-date-range-p) (throw :skip nil))
  4743. (org-agenda-skip)
  4744. (if (and (match-end 1)
  4745. (not (= d1 (org-time-string-to-absolute
  4746. (match-string 1) d1 nil show-all
  4747. (current-buffer) b0))))
  4748. (throw :skip nil))
  4749. (if (and e3
  4750. (not (org-diary-sexp-entry (buffer-substring b3 e3) "" date)))
  4751. (throw :skip nil))
  4752. (setq tmp (buffer-substring (max (point-min)
  4753. (- b0 org-ds-keyword-length))
  4754. b0)
  4755. timestr (if b3 "" (buffer-substring b0 (point-at-eol)))
  4756. inactivep (= (char-after b0) ?\[)
  4757. deadlinep (string-match org-deadline-regexp tmp)
  4758. scheduledp (string-match org-scheduled-regexp tmp)
  4759. closedp (and org-agenda-include-inactive-timestamps
  4760. (string-match org-closed-string tmp))
  4761. clockp (and org-agenda-include-inactive-timestamps
  4762. (or (string-match org-clock-string tmp)
  4763. (string-match "]-+\\'" tmp)))
  4764. warntime (org-entry-get (point) "APPT_WARNTIME")
  4765. donep (member todo-state org-done-keywords))
  4766. (if (or scheduledp deadlinep closedp clockp
  4767. (and donep org-agenda-skip-timestamp-if-done))
  4768. (throw :skip t))
  4769. (if (string-match ">" timestr)
  4770. ;; substring should only run to end of time stamp
  4771. (setq timestr (substring timestr 0 (match-end 0))))
  4772. (setq marker (org-agenda-new-marker b0)
  4773. category (org-get-category b0)
  4774. category-pos (get-text-property b0 'org-category-position))
  4775. (save-excursion
  4776. (if (not (re-search-backward org-outline-regexp-bol nil t))
  4777. (setq txt org-agenda-no-heading-message)
  4778. (goto-char (match-beginning 0))
  4779. (if (and (eq t org-agenda-skip-timestamp-if-deadline-is-shown)
  4780. (assoc (point) deadline-position-alist))
  4781. (throw :skip nil))
  4782. (setq hdmarker (org-agenda-new-marker)
  4783. tags (org-get-tags-at))
  4784. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  4785. (setq head (or (match-string 1) ""))
  4786. (setq txt (org-agenda-format-item
  4787. (if inactivep org-agenda-inactive-leader nil)
  4788. head category tags timestr
  4789. remove-re)))
  4790. (setq priority (org-get-priority txt))
  4791. (org-add-props txt props
  4792. 'org-marker marker 'org-hd-marker hdmarker)
  4793. (org-add-props txt nil 'priority priority
  4794. 'org-category category 'date date
  4795. 'org-category-position category-pos
  4796. 'todo-state todo-state
  4797. 'warntime warntime
  4798. 'type "timestamp")
  4799. (push txt ee))
  4800. (if org-agenda-skip-additional-timestamps-same-entry
  4801. (outline-next-heading)
  4802. (goto-char end-of-match))))
  4803. (nreverse ee)))
  4804. (defun org-agenda-get-sexps ()
  4805. "Return the sexp information for agenda display."
  4806. (require 'diary-lib)
  4807. (let* ((props (list 'face 'org-agenda-calendar-sexp
  4808. 'mouse-face 'highlight
  4809. 'help-echo
  4810. (format "mouse-2 or RET jump to org file %s"
  4811. (abbreviate-file-name buffer-file-name))))
  4812. (regexp "^&?%%(")
  4813. marker category extra category-pos ee txt tags entry
  4814. result beg b sexp sexp-entry todo-state warntime)
  4815. (goto-char (point-min))
  4816. (while (re-search-forward regexp nil t)
  4817. (catch :skip
  4818. (org-agenda-skip)
  4819. (setq beg (match-beginning 0))
  4820. (goto-char (1- (match-end 0)))
  4821. (setq b (point))
  4822. (forward-sexp 1)
  4823. (setq sexp (buffer-substring b (point)))
  4824. (setq sexp-entry (if (looking-at "[ \t]*\\(\\S-.*\\)")
  4825. (org-trim (match-string 1))
  4826. ""))
  4827. (setq result (org-diary-sexp-entry sexp sexp-entry date))
  4828. (when result
  4829. (setq marker (org-agenda-new-marker beg)
  4830. category (org-get-category beg)
  4831. category-pos (get-text-property beg 'org-category-position)
  4832. tags (save-excursion (org-backward-heading-same-level 0)
  4833. (org-get-tags-at))
  4834. todo-state (org-get-todo-state)
  4835. warntime (org-entry-get (point) "APPT_WARNTIME"))
  4836. (dolist (r (if (stringp result)
  4837. (list result)
  4838. result)) ;; we expect a list here
  4839. (when (and org-agenda-diary-sexp-prefix
  4840. (string-match org-agenda-diary-sexp-prefix r))
  4841. (setq extra (match-string 0 r)
  4842. r (replace-match "" nil nil r)))
  4843. (if (string-match "\\S-" r)
  4844. (setq txt r)
  4845. (setq txt "SEXP entry returned empty string"))
  4846. (setq txt (org-agenda-format-item
  4847. extra txt category tags 'time))
  4848. (org-add-props txt props 'org-marker marker)
  4849. (org-add-props txt nil
  4850. 'org-category category 'date date 'todo-state todo-state
  4851. 'org-category-position category-pos 'tags tags
  4852. 'type "sexp" 'warntime warntime)
  4853. (push txt ee)))))
  4854. (nreverse ee)))
  4855. ;; Calendar sanity: define some functions that are independent of
  4856. ;; `calendar-date-style'.
  4857. ;; Normally I would like to use ISO format when calling the diary functions,
  4858. ;; but to make sure we still have Emacs 22 compatibility we bind
  4859. ;; also `european-calendar-style' and use european format
  4860. (defun org-anniversary (year month day &optional mark)
  4861. "Like `diary-anniversary', but with fixed (ISO) order of arguments."
  4862. (org-no-warnings
  4863. (let ((calendar-date-style 'european) (european-calendar-style t))
  4864. (diary-anniversary day month year mark))))
  4865. (defun org-cyclic (N year month day &optional mark)
  4866. "Like `diary-cyclic', but with fixed (ISO) order of arguments."
  4867. (org-no-warnings
  4868. (let ((calendar-date-style 'european) (european-calendar-style t))
  4869. (diary-cyclic N day month year mark))))
  4870. (defun org-block (Y1 M1 D1 Y2 M2 D2 &optional mark)
  4871. "Like `diary-block', but with fixed (ISO) order of arguments."
  4872. (org-no-warnings
  4873. (let ((calendar-date-style 'european) (european-calendar-style t))
  4874. (diary-block D1 M1 Y1 D2 M2 Y2 mark))))
  4875. (defun org-date (year month day &optional mark)
  4876. "Like `diary-date', but with fixed (ISO) order of arguments."
  4877. (org-no-warnings
  4878. (let ((calendar-date-style 'european) (european-calendar-style t))
  4879. (diary-date day month year mark))))
  4880. (defalias 'org-float 'diary-float)
  4881. ;; Define the` org-class' function
  4882. (defun org-class (y1 m1 d1 y2 m2 d2 dayname &rest skip-weeks)
  4883. "Entry applies if date is between dates on DAYNAME, but skips SKIP-WEEKS.
  4884. DAYNAME is a number between 0 (Sunday) and 6 (Saturday).
  4885. SKIP-WEEKS is any number of ISO weeks in the block period for which the
  4886. item should be skipped. If any of the SKIP-WEEKS arguments is the symbol
  4887. `holidays', then any date that is known by the Emacs calendar to be a
  4888. holiday will also be skipped."
  4889. (let* ((date1 (calendar-absolute-from-gregorian (list m1 d1 y1)))
  4890. (date2 (calendar-absolute-from-gregorian (list m2 d2 y2)))
  4891. (d (calendar-absolute-from-gregorian date)))
  4892. (and
  4893. (<= date1 d)
  4894. (<= d date2)
  4895. (= (calendar-day-of-week date) dayname)
  4896. (or (not skip-weeks)
  4897. (progn
  4898. (require 'cal-iso)
  4899. (not (member (car (calendar-iso-from-absolute d)) skip-weeks))))
  4900. (not (and (memq 'holidays skip-weeks)
  4901. (calendar-check-holidays date)))
  4902. entry)))
  4903. (defun org-diary-class (m1 d1 y1 m2 d2 y2 dayname &rest skip-weeks)
  4904. "Like `org-class', but honor `calendar-date-style'.
  4905. The order of the first 2 times 3 arguments depends on the variable
  4906. `calendar-date-style' or, if that is not defined, on `european-calendar-style'.
  4907. So for American calendars, give this as MONTH DAY YEAR, for European as
  4908. DAY MONTH YEAR, and for ISO as YEAR MONTH DAY.
  4909. DAYNAME is a number between 0 (Sunday) and 6 (Saturday). SKIP-WEEKS
  4910. is any number of ISO weeks in the block period for which the item should
  4911. be skipped.
  4912. This function is here only for backward compatibility and it is deprecated,
  4913. please use `org-class' instead."
  4914. (let* ((date1 (org-order-calendar-date-args m1 d1 y1))
  4915. (date2 (org-order-calendar-date-args m2 d2 y2)))
  4916. (org-class
  4917. (nth 2 date1) (car date1) (nth 1 date1)
  4918. (nth 2 date2) (car date2) (nth 1 date2)
  4919. dayname skip-weeks)))
  4920. (make-obsolete 'org-diary-class 'org-class "")
  4921. (defvar org-agenda-show-log-scoped) ;; dynamically scope in `org-timeline' or `org-agenda-list'
  4922. (defalias 'org-get-closed 'org-agenda-get-progress)
  4923. (defun org-agenda-get-progress ()
  4924. "Return the logged TODO entries for agenda display."
  4925. (let* ((props (list 'mouse-face 'highlight
  4926. 'org-not-done-regexp org-not-done-regexp
  4927. 'org-todo-regexp org-todo-regexp
  4928. 'org-complex-heading-regexp org-complex-heading-regexp
  4929. 'help-echo
  4930. (format "mouse-2 or RET jump to org file %s"
  4931. (abbreviate-file-name buffer-file-name))))
  4932. (items (if (consp org-agenda-show-log-scoped)
  4933. org-agenda-show-log-scoped
  4934. (if (eq org-agenda-show-log-scoped 'clockcheck)
  4935. '(clock)
  4936. org-agenda-log-mode-items)))
  4937. (parts
  4938. (delq nil
  4939. (list
  4940. (if (memq 'closed items) (concat "\\<" org-closed-string))
  4941. (if (memq 'clock items) (concat "\\<" org-clock-string))
  4942. (if (memq 'state items) "- State \"\\([a-zA-Z0-9]+\\)\".*?"))))
  4943. (parts-re (if parts (mapconcat 'identity parts "\\|")
  4944. (error "`org-agenda-log-mode-items' is empty")))
  4945. (regexp (concat
  4946. "\\(" parts-re "\\)"
  4947. " *\\["
  4948. (regexp-quote
  4949. (substring
  4950. (format-time-string
  4951. (car org-time-stamp-formats)
  4952. (apply 'encode-time ; DATE bound by calendar
  4953. (list 0 0 0 (nth 1 date) (car date) (nth 2 date))))
  4954. 1 11))))
  4955. (org-agenda-search-headline-for-time nil)
  4956. marker hdmarker priority category category-pos tags closedp
  4957. statep clockp state ee txt extra timestr rest clocked)
  4958. (goto-char (point-min))
  4959. (while (re-search-forward regexp nil t)
  4960. (catch :skip
  4961. (org-agenda-skip)
  4962. (setq marker (org-agenda-new-marker (match-beginning 0))
  4963. closedp (equal (match-string 1) org-closed-string)
  4964. statep (equal (string-to-char (match-string 1)) ?-)
  4965. clockp (not (or closedp statep))
  4966. state (and statep (match-string 2))
  4967. category (org-get-category (match-beginning 0))
  4968. category-pos (get-text-property (match-beginning 0) 'org-category-position)
  4969. timestr (buffer-substring (match-beginning 0) (point-at-eol)))
  4970. (when (string-match "\\]" timestr)
  4971. ;; substring should only run to end of time stamp
  4972. (setq rest (substring timestr (match-end 0))
  4973. timestr (substring timestr 0 (match-end 0)))
  4974. (if (and (not closedp) (not statep)
  4975. (string-match "\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)\\].*?\\([0-9]\\{1,2\\}:[0-9]\\{2\\}\\)"
  4976. rest))
  4977. (progn (setq timestr (concat (substring timestr 0 -1)
  4978. "-" (match-string 1 rest) "]"))
  4979. (setq clocked (match-string 2 rest)))
  4980. (setq clocked "-")))
  4981. (save-excursion
  4982. (setq extra
  4983. (cond
  4984. ((not org-agenda-log-mode-add-notes) nil)
  4985. (statep
  4986. (and (looking-at ".*\\\\\n[ \t]*\\([^-\n \t].*?\\)[ \t]*$")
  4987. (match-string 1)))
  4988. (clockp
  4989. (and (looking-at ".*\n[ \t]*-[ \t]+\\([^-\n \t].*?\\)[ \t]*$")
  4990. (match-string 1)))))
  4991. (if (not (re-search-backward org-outline-regexp-bol nil t))
  4992. (setq txt org-agenda-no-heading-message)
  4993. (goto-char (match-beginning 0))
  4994. (setq hdmarker (org-agenda-new-marker)
  4995. tags (org-get-tags-at))
  4996. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  4997. (setq txt (match-string 1))
  4998. (when extra
  4999. (if (string-match "\\([ \t]+\\)\\(:[^ \n\t]*?:\\)[ \t]*$" txt)
  5000. (setq txt (concat (substring txt 0 (match-beginning 1))
  5001. " - " extra " " (match-string 2 txt)))
  5002. (setq txt (concat txt " - " extra))))
  5003. (setq txt (org-agenda-format-item
  5004. (cond
  5005. (closedp "Closed: ")
  5006. (statep (concat "State: (" state ")"))
  5007. (t (concat "Clocked: (" clocked ")")))
  5008. txt category tags timestr)))
  5009. (setq priority 100000)
  5010. (org-add-props txt props
  5011. 'org-marker marker 'org-hd-marker hdmarker 'face 'org-agenda-done
  5012. 'priority priority 'org-category category
  5013. 'org-category-position category-pos
  5014. 'type "closed" 'date date
  5015. 'undone-face 'org-warning 'done-face 'org-agenda-done)
  5016. (push txt ee))
  5017. (goto-char (point-at-eol))))
  5018. (nreverse ee)))
  5019. (defun org-agenda-show-clocking-issues ()
  5020. "Add overlays, showing issues with clocking.
  5021. See also the user option `org-agenda-clock-consistency-checks'."
  5022. (interactive)
  5023. (let* ((pl org-agenda-clock-consistency-checks)
  5024. (re (concat "^[ \t]*"
  5025. org-clock-string
  5026. "[ \t]+"
  5027. "\\(\\[.*?\\]\\)" ; group 1 is first stamp
  5028. "\\(-\\{1,3\\}\\(\\[.*?\\]\\)\\)?")) ; group 3 is second
  5029. (tlstart 0.)
  5030. (tlend 0.)
  5031. (maxtime (org-hh:mm-string-to-minutes
  5032. (or (plist-get pl :max-duration) "24:00")))
  5033. (mintime (org-hh:mm-string-to-minutes
  5034. (or (plist-get pl :min-duration) 0)))
  5035. (maxgap (org-hh:mm-string-to-minutes
  5036. ;; default 30:00 means never complain
  5037. (or (plist-get pl :max-gap) "30:00")))
  5038. (gapok (mapcar 'org-hh:mm-string-to-minutes
  5039. (plist-get pl :gap-ok-around)))
  5040. (def-face (or (plist-get pl :default-face)
  5041. '((:background "DarkRed") (:foreground "white"))))
  5042. issue face m te ts dt ov)
  5043. (goto-char (point-min))
  5044. (while (re-search-forward " Clocked: +(-\\|\\([0-9]+:[0-9]+\\))" nil t)
  5045. (setq issue nil face def-face)
  5046. (catch 'next
  5047. (setq m (org-get-at-bol 'org-marker)
  5048. te nil ts nil)
  5049. (unless (and m (markerp m))
  5050. (setq issue "No valid clock line") (throw 'next t))
  5051. (org-with-point-at m
  5052. (save-excursion
  5053. (goto-char (point-at-bol))
  5054. (unless (looking-at re)
  5055. (error "No valid Clock line")
  5056. (throw 'next t))
  5057. (unless (match-end 3)
  5058. (setq issue "No end time"
  5059. face (or (plist-get pl :no-end-time-face) face))
  5060. (throw 'next t))
  5061. (setq ts (match-string 1)
  5062. te (match-string 3)
  5063. ts (org-float-time
  5064. (apply 'encode-time (org-parse-time-string ts)))
  5065. te (org-float-time
  5066. (apply 'encode-time (org-parse-time-string te)))
  5067. dt (- te ts))))
  5068. (cond
  5069. ((> dt (* 60 maxtime))
  5070. ;; a very long clocking chunk
  5071. (setq issue (format "Clocking interval is very long: %s"
  5072. (org-minutes-to-hh:mm-string
  5073. (floor (/ (float dt) 60.))))
  5074. face (or (plist-get pl :long-face) face)))
  5075. ((< dt (* 60 mintime))
  5076. ;; a very short clocking chunk
  5077. (setq issue (format "Clocking interval is very short: %s"
  5078. (org-minutes-to-hh:mm-string
  5079. (floor (/ (float dt) 60.))))
  5080. face (or (plist-get pl :short-face) face)))
  5081. ((and (> tlend 0) (< ts tlend))
  5082. ;; Two clock entries are overlapping
  5083. (setq issue (format "Clocking overlap: %d minutes"
  5084. (/ (- tlend ts) 60))
  5085. face (or (plist-get pl :overlap-face) face)))
  5086. ((and (> tlend 0) (> ts (+ tlend (* 60 maxgap))))
  5087. ;; There is a gap, lets see if we need to report it
  5088. (unless (org-agenda-check-clock-gap tlend ts gapok)
  5089. (setq issue (format "Clocking gap: %d minutes"
  5090. (/ (- ts tlend) 60))
  5091. face (or (plist-get pl :gap-face) face))))
  5092. (t nil)))
  5093. (setq tlend (or te tlend) tlstart (or ts tlstart))
  5094. (when issue
  5095. ;; OK, there was some issue, add an overlay to show the issue
  5096. (setq ov (make-overlay (point-at-bol) (point-at-eol)))
  5097. (overlay-put ov 'before-string
  5098. (concat
  5099. (org-add-props
  5100. (format "%-43s" (concat " " issue))
  5101. nil
  5102. 'face face)
  5103. "\n"))
  5104. (overlay-put ov 'evaporate t)))))
  5105. (defun org-agenda-check-clock-gap (t1 t2 ok-list)
  5106. "Check if gap T1 -> T2 contains one of the OK-LIST time-of-day values."
  5107. (catch 'exit
  5108. (unless ok-list
  5109. ;; there are no OK times for gaps...
  5110. (throw 'exit nil))
  5111. (if (> (- (/ t2 36000) (/ t1 36000)) 24)
  5112. ;; This is more than 24 hours, so it is OK.
  5113. ;; because we have at least one OK time, that must be in the
  5114. ;; 24 hour interval.
  5115. (throw 'exit t))
  5116. ;; We have a shorter gap.
  5117. ;; Now we have to get the minute of the day when these times are
  5118. (let* ((t1dec (decode-time (seconds-to-time t1)))
  5119. (t2dec (decode-time (seconds-to-time t2)))
  5120. ;; compute the minute on the day
  5121. (min1 (+ (nth 1 t1dec) (* 60 (nth 2 t1dec))))
  5122. (min2 (+ (nth 1 t2dec) (* 60 (nth 2 t2dec)))))
  5123. (when (< min2 min1)
  5124. ;; if min2 is smaller than min1, this means it is on the next day.
  5125. ;; Wrap it to after midnight.
  5126. (setq min2 (+ min2 1440)))
  5127. ;; Now check if any of the OK times is in the gap
  5128. (mapc (lambda (x)
  5129. ;; Wrap the time to after midnight if necessary
  5130. (if (< x min1) (setq x (+ x 1440)))
  5131. ;; Check if in interval
  5132. (and (<= min1 x) (>= min2 x) (throw 'exit t)))
  5133. ok-list)
  5134. ;; Nope, this gap is not OK
  5135. nil)))
  5136. (defun org-agenda-get-deadlines ()
  5137. "Return the deadline information for agenda display."
  5138. (let* ((props (list 'mouse-face 'highlight
  5139. 'org-not-done-regexp org-not-done-regexp
  5140. 'org-todo-regexp org-todo-regexp
  5141. 'org-complex-heading-regexp org-complex-heading-regexp
  5142. 'help-echo
  5143. (format "mouse-2 or RET jump to org file %s"
  5144. (abbreviate-file-name buffer-file-name))))
  5145. (regexp org-deadline-time-regexp)
  5146. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  5147. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  5148. d2 diff dfrac wdays pos pos1 category category-pos
  5149. tags suppress-prewarning ee txt head face s todo-state
  5150. show-all upcomingp donep timestr warntime)
  5151. (goto-char (point-min))
  5152. (while (re-search-forward regexp nil t)
  5153. (setq suppress-prewarning nil)
  5154. (catch :skip
  5155. (org-agenda-skip)
  5156. (when (and org-agenda-skip-deadline-prewarning-if-scheduled
  5157. (save-match-data
  5158. (string-match org-scheduled-time-regexp
  5159. (buffer-substring (point-at-bol)
  5160. (point-at-eol)))))
  5161. (setq suppress-prewarning
  5162. (if (integerp org-agenda-skip-deadline-prewarning-if-scheduled)
  5163. org-agenda-skip-deadline-prewarning-if-scheduled
  5164. 0)))
  5165. (setq s (match-string 1)
  5166. txt nil
  5167. pos (1- (match-beginning 1))
  5168. todo-state (save-match-data (org-get-todo-state))
  5169. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5170. (member todo-state
  5171. org-agenda-repeating-timestamp-show-all))
  5172. d2 (org-time-string-to-absolute
  5173. (match-string 1) d1 'past show-all
  5174. (current-buffer) pos)
  5175. diff (- d2 d1)
  5176. wdays (if suppress-prewarning
  5177. (let ((org-deadline-warning-days suppress-prewarning))
  5178. (org-get-wdays s))
  5179. (org-get-wdays s))
  5180. dfrac (- 1 (/ (* 1.0 diff) (max wdays 1)))
  5181. upcomingp (and todayp (> diff 0)))
  5182. ;; When to show a deadline in the calendar:
  5183. ;; If the expiration is within wdays warning time.
  5184. ;; Past-due deadlines are only shown on the current date
  5185. (if (and (or (and (<= diff wdays)
  5186. (and todayp (not org-agenda-only-exact-dates)))
  5187. (= diff 0)))
  5188. (save-excursion
  5189. ;; (setq todo-state (org-get-todo-state))
  5190. (setq donep (member todo-state org-done-keywords))
  5191. (if (and donep
  5192. (or org-agenda-skip-deadline-if-done
  5193. (not (= diff 0))))
  5194. (setq txt nil)
  5195. (setq category (org-get-category)
  5196. warntime (org-entry-get (point) "APPT_WARNTIME")
  5197. category-pos (get-text-property (point) 'org-category-position))
  5198. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  5199. (setq txt org-agenda-no-heading-message)
  5200. (goto-char (match-end 0))
  5201. (setq pos1 (match-beginning 0))
  5202. (setq tags (org-get-tags-at pos1))
  5203. (setq head (buffer-substring-no-properties
  5204. (point)
  5205. (progn (skip-chars-forward "^\r\n")
  5206. (point))))
  5207. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5208. (setq timestr
  5209. (concat (substring s (match-beginning 1)) " "))
  5210. (setq timestr 'time))
  5211. (setq txt (org-agenda-format-item
  5212. (if (= diff 0)
  5213. (car org-agenda-deadline-leaders)
  5214. (if (functionp
  5215. (nth 1 org-agenda-deadline-leaders))
  5216. (funcall
  5217. (nth 1 org-agenda-deadline-leaders)
  5218. diff date)
  5219. (format (nth 1 org-agenda-deadline-leaders)
  5220. diff)))
  5221. head category tags
  5222. (if (not (= diff 0)) nil timestr)))))
  5223. (when txt
  5224. (setq face (org-agenda-deadline-face dfrac))
  5225. (org-add-props txt props
  5226. 'org-marker (org-agenda-new-marker pos)
  5227. 'warntime warntime
  5228. 'org-hd-marker (org-agenda-new-marker pos1)
  5229. 'priority (+ (- diff)
  5230. (org-get-priority txt))
  5231. 'org-category category
  5232. 'org-category-position category-pos
  5233. 'todo-state todo-state
  5234. 'type (if upcomingp "upcoming-deadline" "deadline")
  5235. 'date (if upcomingp date d2)
  5236. 'face (if donep 'org-agenda-done face)
  5237. 'undone-face face 'done-face 'org-agenda-done)
  5238. (push txt ee))))))
  5239. (nreverse ee)))
  5240. (defun org-agenda-deadline-face (fraction)
  5241. "Return the face to displaying a deadline item.
  5242. FRACTION is what fraction of the head-warning time has passed."
  5243. (let ((faces org-agenda-deadline-faces) f)
  5244. (catch 'exit
  5245. (while (setq f (pop faces))
  5246. (if (>= fraction (car f)) (throw 'exit (cdr f)))))))
  5247. (defun org-agenda-get-scheduled (&optional deadline-results)
  5248. "Return the scheduled information for agenda display."
  5249. (let* ((props (list 'org-not-done-regexp org-not-done-regexp
  5250. 'org-todo-regexp org-todo-regexp
  5251. 'org-complex-heading-regexp org-complex-heading-regexp
  5252. 'done-face 'org-agenda-done
  5253. 'mouse-face 'highlight
  5254. 'help-echo
  5255. (format "mouse-2 or RET jump to org file %s"
  5256. (abbreviate-file-name buffer-file-name))))
  5257. (regexp org-scheduled-time-regexp)
  5258. (todayp (org-agenda-todayp date)) ; DATE bound by calendar
  5259. (d1 (calendar-absolute-from-gregorian date)) ; DATE bound by calendar
  5260. mm
  5261. (deadline-position-alist
  5262. (mapcar (lambda (a) (and (setq mm (get-text-property
  5263. 0 'org-hd-marker a))
  5264. (cons (marker-position mm) a)))
  5265. deadline-results))
  5266. d2 diff pos pos1 category category-pos tags donep
  5267. ee txt head pastschedp todo-state face timestr s habitp show-all
  5268. did-habit-check-p warntime)
  5269. (goto-char (point-min))
  5270. (while (re-search-forward regexp nil t)
  5271. (catch :skip
  5272. (org-agenda-skip)
  5273. (setq s (match-string 1)
  5274. txt nil
  5275. pos (1- (match-beginning 1))
  5276. todo-state (save-match-data (org-get-todo-state))
  5277. show-all (or (eq org-agenda-repeating-timestamp-show-all t)
  5278. (member todo-state
  5279. org-agenda-repeating-timestamp-show-all))
  5280. d2 (org-time-string-to-absolute
  5281. (match-string 1) d1 'past show-all
  5282. (current-buffer) pos)
  5283. diff (- d2 d1)
  5284. warntime (org-entry-get (point) "APPT_WARNTIME"))
  5285. (setq pastschedp (and todayp (< diff 0)))
  5286. (setq did-habit-check-p nil)
  5287. ;; When to show a scheduled item in the calendar:
  5288. ;; If it is on or past the date.
  5289. (when (or (and (< diff 0)
  5290. (< (abs diff) org-scheduled-past-days)
  5291. (and todayp (not org-agenda-only-exact-dates)))
  5292. (= diff 0)
  5293. ;; org-is-habit-p uses org-entry-get, which is expansive
  5294. ;; so we go extra mile to only call it once
  5295. (and todayp
  5296. org-habit-show-all-today
  5297. (setq did-habit-check-p t)
  5298. (setq habitp (and (functionp 'org-is-habit-p)
  5299. (org-is-habit-p)))))
  5300. (save-excursion
  5301. (setq donep (member todo-state org-done-keywords))
  5302. (if (and donep
  5303. (or org-agenda-skip-scheduled-if-done
  5304. (not (= diff 0))
  5305. (and (functionp 'org-is-habit-p)
  5306. (org-is-habit-p))))
  5307. (setq txt nil)
  5308. (setq habitp (if did-habit-check-p habitp
  5309. (and (functionp 'org-is-habit-p)
  5310. (org-is-habit-p))))
  5311. (setq category (org-get-category)
  5312. category-pos (get-text-property (point) 'org-category-position))
  5313. (if (not (re-search-backward "^\\*+[ \t]+" nil t))
  5314. (setq txt org-agenda-no-heading-message)
  5315. (goto-char (match-end 0))
  5316. (setq pos1 (match-beginning 0))
  5317. (if habitp
  5318. (if (or (not org-habit-show-habits)
  5319. (and (not todayp)
  5320. org-habit-show-habits-only-for-today))
  5321. (throw :skip nil))
  5322. (if (and
  5323. (or (eq t org-agenda-skip-scheduled-if-deadline-is-shown)
  5324. (and org-agenda-skip-scheduled-if-deadline-is-shown
  5325. pastschedp))
  5326. (setq mm (assoc pos1 deadline-position-alist)))
  5327. (throw :skip nil)))
  5328. (setq tags (org-get-tags-at))
  5329. (setq head (buffer-substring-no-properties
  5330. (point)
  5331. (progn (skip-chars-forward "^\r\n") (point))))
  5332. (if (string-match " \\([012]?[0-9]:[0-9][0-9]\\)" s)
  5333. (setq timestr
  5334. (concat (substring s (match-beginning 1)) " "))
  5335. (setq timestr 'time))
  5336. (setq txt (org-agenda-format-item
  5337. (if (= diff 0)
  5338. (car org-agenda-scheduled-leaders)
  5339. (format (nth 1 org-agenda-scheduled-leaders)
  5340. (- 1 diff)))
  5341. head category tags
  5342. (if (not (= diff 0)) nil timestr)
  5343. nil habitp))))
  5344. (when txt
  5345. (setq face
  5346. (cond
  5347. ((and (not habitp) pastschedp)
  5348. 'org-scheduled-previously)
  5349. (todayp 'org-scheduled-today)
  5350. (t 'org-scheduled))
  5351. habitp (and habitp (org-habit-parse-todo)))
  5352. (org-add-props txt props
  5353. 'undone-face face
  5354. 'face (if donep 'org-agenda-done face)
  5355. 'org-marker (org-agenda-new-marker pos)
  5356. 'org-hd-marker (org-agenda-new-marker pos1)
  5357. 'type (if pastschedp "past-scheduled" "scheduled")
  5358. 'date (if pastschedp d2 date)
  5359. 'warntime warntime
  5360. 'priority (if habitp
  5361. (org-habit-get-priority habitp)
  5362. (+ 94 (- 5 diff) (org-get-priority txt)))
  5363. 'org-category category
  5364. 'category-position category-pos
  5365. 'org-habit-p habitp
  5366. 'todo-state todo-state)
  5367. (push txt ee))))))
  5368. (nreverse ee)))
  5369. (defun org-agenda-get-blocks ()
  5370. "Return the date-range information for agenda display."
  5371. (let* ((props (list 'face nil
  5372. 'org-not-done-regexp org-not-done-regexp
  5373. 'org-todo-regexp org-todo-regexp
  5374. 'org-complex-heading-regexp org-complex-heading-regexp
  5375. 'mouse-face 'highlight
  5376. 'help-echo
  5377. (format "mouse-2 or RET jump to org file %s"
  5378. (abbreviate-file-name buffer-file-name))))
  5379. (regexp org-tr-regexp)
  5380. (d0 (calendar-absolute-from-gregorian date))
  5381. marker hdmarker ee txt d1 d2 s1 s2 category category-pos
  5382. todo-state tags pos head donep)
  5383. (goto-char (point-min))
  5384. (while (re-search-forward regexp nil t)
  5385. (catch :skip
  5386. (org-agenda-skip)
  5387. (setq pos (point))
  5388. (let ((start-time (match-string 1))
  5389. (end-time (match-string 2)))
  5390. (setq s1 (match-string 1)
  5391. s2 (match-string 2)
  5392. d1 (time-to-days (org-time-string-to-time s1 (current-buffer) pos))
  5393. d2 (time-to-days (org-time-string-to-time s2 (current-buffer) pos)))
  5394. (if (and (> (- d0 d1) -1) (> (- d2 d0) -1))
  5395. ;; Only allow days between the limits, because the normal
  5396. ;; date stamps will catch the limits.
  5397. (save-excursion
  5398. (setq todo-state (org-get-todo-state))
  5399. (setq donep (member todo-state org-done-keywords))
  5400. (if (and donep org-agenda-skip-timestamp-if-done)
  5401. (throw :skip t))
  5402. (setq marker (org-agenda-new-marker (point)))
  5403. (setq category (org-get-category)
  5404. category-pos (get-text-property (point) 'org-category-position))
  5405. (if (not (re-search-backward org-outline-regexp-bol nil t))
  5406. (setq txt org-agenda-no-heading-message)
  5407. (goto-char (match-beginning 0))
  5408. (setq hdmarker (org-agenda-new-marker (point)))
  5409. (setq tags (org-get-tags-at))
  5410. (looking-at "\\*+[ \t]+\\([^\r\n]+\\)")
  5411. (setq head (match-string 1))
  5412. (let ((remove-re
  5413. (if org-agenda-remove-timeranges-from-blocks
  5414. (concat
  5415. "<" (regexp-quote s1) ".*?>"
  5416. "--"
  5417. "<" (regexp-quote s2) ".*?>")
  5418. nil)))
  5419. (setq txt (org-agenda-format-item
  5420. (format
  5421. (nth (if (= d1 d2) 0 1)
  5422. org-agenda-timerange-leaders)
  5423. (1+ (- d0 d1)) (1+ (- d2 d1)))
  5424. head category tags
  5425. (cond ((and (= d1 d0) (= d2 d0))
  5426. (concat "<" start-time ">--<" end-time ">"))
  5427. ((= d1 d0)
  5428. (concat "<" start-time ">"))
  5429. ((= d2 d0)
  5430. (concat "<" end-time ">")))
  5431. remove-re))))
  5432. (org-add-props txt props
  5433. 'org-marker marker 'org-hd-marker hdmarker
  5434. 'type "block" 'date date
  5435. 'todo-state todo-state
  5436. 'priority (org-get-priority txt) 'org-category category
  5437. 'org-category-position category-pos)
  5438. (push txt ee))))
  5439. (goto-char pos)))
  5440. ;; Sort the entries by expiration date.
  5441. (nreverse ee)))
  5442. ;;; Agenda presentation and sorting
  5443. (defvar org-prefix-has-time nil
  5444. "A flag, set by `org-compile-prefix-format'.
  5445. The flag is set if the currently compiled format contains a `%t'.")
  5446. (defvar org-prefix-has-tag nil
  5447. "A flag, set by `org-compile-prefix-format'.
  5448. The flag is set if the currently compiled format contains a `%T'.")
  5449. (defvar org-prefix-has-effort nil
  5450. "A flag, set by `org-compile-prefix-format'.
  5451. The flag is set if the currently compiled format contains a `%e'.")
  5452. (defvar org-prefix-category-length nil
  5453. "Used by `org-compile-prefix-format' to remember the category field width.")
  5454. (defvar org-prefix-category-max-length nil
  5455. "Used by `org-compile-prefix-format' to remember the category field width.")
  5456. (defun org-agenda-get-category-icon (category)
  5457. "Return an image for CATEGORY according to `org-agenda-category-icon-alist'."
  5458. (dolist (entry org-agenda-category-icon-alist)
  5459. (when (org-string-match-p (car entry) category)
  5460. (if (listp (cadr entry))
  5461. (return (cadr entry))
  5462. (return (apply 'create-image (cdr entry)))))))
  5463. (defun org-agenda-format-item (extra txt &optional category tags dotime
  5464. remove-re habitp)
  5465. "Format TXT to be inserted into the agenda buffer.
  5466. In particular, it adds the prefix and corresponding text properties. EXTRA
  5467. must be a string and replaces the `%s' specifier in the prefix format.
  5468. CATEGORY (string, symbol or nil) may be used to overrule the default
  5469. category taken from local variable or file name. It will replace the `%c'
  5470. specifier in the format. DOTIME, when non-nil, indicates that a
  5471. time-of-day should be extracted from TXT for sorting of this entry, and for
  5472. the `%t' specifier in the format. When DOTIME is a string, this string is
  5473. searched for a time before TXT is. TAGS can be the tags of the headline.
  5474. Any match of REMOVE-RE will be removed from TXT."
  5475. ;; We keep the org-prefix-* variable values along with a compiled
  5476. ;; formatter, so that multiple agendas existing at the same time, do
  5477. ;; not step on each other toes.
  5478. ;;
  5479. ;; It was inconvenient to make these variables buffer local in
  5480. ;; Agenda buffers, because this function expects to be called with
  5481. ;; the buffer where item comes from being current, and not agenda
  5482. ;; buffer
  5483. (let* ((bindings (car org-prefix-format-compiled))
  5484. (formatter (cadr org-prefix-format-compiled)))
  5485. (loop for (var value) in bindings
  5486. do (set var value))
  5487. (save-match-data
  5488. ;; Diary entries sometimes have extra whitespace at the beginning
  5489. (if (string-match "^ +" txt) (setq txt (replace-match "" nil nil txt)))
  5490. ;; Fix the tags part in txt
  5491. (setq txt (org-agenda-fix-displayed-tags
  5492. txt tags
  5493. org-agenda-show-inherited-tags
  5494. org-agenda-hide-tags-regexp))
  5495. (let* ((category (or category
  5496. (if (stringp org-category)
  5497. org-category
  5498. (and org-category (symbol-name org-category)))
  5499. (if buffer-file-name
  5500. (file-name-sans-extension
  5501. (file-name-nondirectory buffer-file-name))
  5502. "")))
  5503. (category-icon (org-agenda-get-category-icon category))
  5504. (category-icon (if category-icon
  5505. (propertize " " 'display category-icon)
  5506. ""))
  5507. ;; time, tag, effort are needed for the eval of the prefix format
  5508. (tag (if tags (nth (1- (length tags)) tags) ""))
  5509. time effort neffort
  5510. (ts (if dotime (concat
  5511. (if (stringp dotime) dotime "")
  5512. (and org-agenda-search-headline-for-time txt))))
  5513. (time-of-day (and dotime (org-get-time-of-day ts)))
  5514. stamp plain s0 s1 s2 rtn srp l
  5515. duration thecategory)
  5516. (and (derived-mode-p 'org-mode) buffer-file-name
  5517. (add-to-list 'org-agenda-contributing-files buffer-file-name))
  5518. (when (and dotime time-of-day)
  5519. ;; Extract starting and ending time and move them to prefix
  5520. (when (or (setq stamp (string-match org-stamp-time-of-day-regexp ts))
  5521. (setq plain (string-match org-plain-time-of-day-regexp ts)))
  5522. (setq s0 (match-string 0 ts)
  5523. srp (and stamp (match-end 3))
  5524. s1 (match-string (if plain 1 2) ts)
  5525. s2 (match-string (if plain 8 (if srp 4 6)) ts))
  5526. ;; If the times are in TXT (not in DOTIMES), and the prefix will list
  5527. ;; them, we might want to remove them there to avoid duplication.
  5528. ;; The user can turn this off with a variable.
  5529. (if (and org-prefix-has-time
  5530. org-agenda-remove-times-when-in-prefix (or stamp plain)
  5531. (string-match (concat (regexp-quote s0) " *") txt)
  5532. (not (equal ?\] (string-to-char (substring txt (match-end 0)))))
  5533. (if (eq org-agenda-remove-times-when-in-prefix 'beg)
  5534. (= (match-beginning 0) 0)
  5535. t))
  5536. (setq txt (replace-match "" nil nil txt))))
  5537. ;; Normalize the time(s) to 24 hour
  5538. (if s1 (setq s1 (org-get-time-of-day s1 'string t)))
  5539. (if s2 (setq s2 (org-get-time-of-day s2 'string t)))
  5540. ;; Try to set s2 if s1 and `org-agenda-default-appointment-duration' are set
  5541. (when (and s1 (not s2) org-agenda-default-appointment-duration)
  5542. (setq s2
  5543. (org-minutes-to-hh:mm-string
  5544. (+ (org-hh:mm-string-to-minutes s1) org-agenda-default-appointment-duration))))
  5545. ;; Compute the duration
  5546. (when s2
  5547. (setq duration (- (org-hh:mm-string-to-minutes s2)
  5548. (org-hh:mm-string-to-minutes s1)))))
  5549. (when (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  5550. txt)
  5551. ;; Tags are in the string
  5552. (if (or (eq org-agenda-remove-tags t)
  5553. (and org-agenda-remove-tags
  5554. org-prefix-has-tag))
  5555. (setq txt (replace-match "" t t txt))
  5556. (setq txt (replace-match
  5557. (concat (make-string (max (- 50 (length txt)) 1) ?\ )
  5558. (match-string 2 txt))
  5559. t t txt))))
  5560. (when (derived-mode-p 'org-mode)
  5561. (setq effort
  5562. (condition-case nil
  5563. (org-get-effort
  5564. (or (get-text-property 0 'org-hd-marker txt)
  5565. (get-text-property 0 'org-marker txt)))
  5566. (error nil)))
  5567. (when effort
  5568. (setq neffort (org-duration-string-to-minutes effort)
  5569. effort (setq effort (concat "[" effort "]")))))
  5570. ;; prevent erroring out with %e format when there is no effort
  5571. (or effort (setq effort ""))
  5572. (when remove-re
  5573. (while (string-match remove-re txt)
  5574. (setq txt (replace-match "" t t txt))))
  5575. ;; Set org-heading property on `txt' to mark the start of the
  5576. ;; heading.
  5577. (add-text-properties 0 (length txt) '(org-heading t) txt)
  5578. ;; Prepare the variables needed in the eval of the compiled format
  5579. (setq time (cond (s2 (concat
  5580. (org-agenda-time-of-day-to-ampm-maybe s1)
  5581. "-" (org-agenda-time-of-day-to-ampm-maybe s2)
  5582. (if org-agenda-timegrid-use-ampm " ")))
  5583. (s1 (concat
  5584. (org-agenda-time-of-day-to-ampm-maybe s1)
  5585. (if org-agenda-timegrid-use-ampm
  5586. "........ "
  5587. "......")))
  5588. (t ""))
  5589. extra (or (and (not habitp) extra) "")
  5590. category (if (symbolp category) (symbol-name category) category)
  5591. thecategory (copy-sequence category))
  5592. (if (string-match org-bracket-link-regexp category)
  5593. (progn
  5594. (setq l (if (match-end 3)
  5595. (- (match-end 3) (match-beginning 3))
  5596. (- (match-end 1) (match-beginning 1))))
  5597. (when (< l (or org-prefix-category-length 0))
  5598. (setq category (copy-sequence category))
  5599. (org-add-props category nil
  5600. 'extra-space (make-string
  5601. (- org-prefix-category-length l 1) ?\ ))))
  5602. (if (and org-prefix-category-max-length
  5603. (>= (length category) org-prefix-category-max-length))
  5604. (setq category (substring category 0 (1- org-prefix-category-max-length)))))
  5605. ;; Evaluate the compiled format
  5606. (setq rtn (concat (eval formatter) txt))
  5607. ;; And finally add the text properties
  5608. (remove-text-properties 0 (length rtn) '(line-prefix t wrap-prefix t) rtn)
  5609. (org-add-props rtn nil
  5610. 'org-category (if thecategory (downcase thecategory) category)
  5611. 'tags (mapcar 'org-downcase-keep-props tags)
  5612. 'org-highest-priority org-highest-priority
  5613. 'org-lowest-priority org-lowest-priority
  5614. 'time-of-day time-of-day
  5615. 'duration duration
  5616. 'effort effort
  5617. 'effort-minutes neffort
  5618. 'txt txt
  5619. 'time time
  5620. 'extra extra
  5621. 'format org-prefix-format-compiled
  5622. 'dotime dotime)))))
  5623. (defun org-agenda-fix-displayed-tags (txt tags add-inherited hide-re)
  5624. "Remove tags string from TXT, and add a modified list of tags.
  5625. The modified list may contain inherited tags, and tags matched by
  5626. `org-agenda-hide-tags-regexp' will be removed."
  5627. (when (or add-inherited hide-re)
  5628. (if (string-match (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$") txt)
  5629. (setq txt (substring txt 0 (match-beginning 0))))
  5630. (setq tags
  5631. (delq nil
  5632. (mapcar (lambda (tg)
  5633. (if (or (and hide-re (string-match hide-re tg))
  5634. (and (not add-inherited)
  5635. (get-text-property 0 'inherited tg)))
  5636. nil
  5637. tg))
  5638. tags)))
  5639. (when tags
  5640. (let ((have-i (get-text-property 0 'inherited (car tags)))
  5641. i)
  5642. (setq txt (concat txt " :"
  5643. (mapconcat
  5644. (lambda (x)
  5645. (setq i (get-text-property 0 'inherited x))
  5646. (if (and have-i (not i))
  5647. (progn
  5648. (setq have-i nil)
  5649. (concat ":" x))
  5650. x))
  5651. tags ":")
  5652. (if have-i "::" ":"))))))
  5653. txt)
  5654. (defun org-downcase-keep-props (s)
  5655. (let ((props (text-properties-at 0 s)))
  5656. (setq s (downcase s))
  5657. (add-text-properties 0 (length s) props s)
  5658. s))
  5659. (defvar org-agenda-sorting-strategy) ;; because the def is in a let form
  5660. (defvar org-agenda-sorting-strategy-selected nil)
  5661. (defun org-agenda-add-time-grid-maybe (list ndays todayp)
  5662. (catch 'exit
  5663. (cond ((not org-agenda-use-time-grid) (throw 'exit list))
  5664. ((and todayp (member 'today (car org-agenda-time-grid))))
  5665. ((and (= ndays 1) (member 'daily (car org-agenda-time-grid))))
  5666. ((member 'weekly (car org-agenda-time-grid)))
  5667. (t (throw 'exit list)))
  5668. (let* ((have (delq nil (mapcar
  5669. (lambda (x) (get-text-property 1 'time-of-day x))
  5670. list)))
  5671. (string (nth 1 org-agenda-time-grid))
  5672. (gridtimes (nth 2 org-agenda-time-grid))
  5673. (req (car org-agenda-time-grid))
  5674. (remove (member 'remove-match req))
  5675. new time)
  5676. (if (and (member 'require-timed req) (not have))
  5677. ;; don't show empty grid
  5678. (throw 'exit list))
  5679. (while (setq time (pop gridtimes))
  5680. (unless (and remove (member time have))
  5681. (setq time (replace-regexp-in-string " " "0" (format "%04s" time)))
  5682. (push (org-agenda-format-item
  5683. nil string "" nil
  5684. (concat (substring time 0 -2) ":" (substring time -2)))
  5685. new)
  5686. (put-text-property
  5687. 2 (length (car new)) 'face 'org-time-grid (car new))))
  5688. (when (and todayp org-agenda-show-current-time-in-grid)
  5689. (push (org-agenda-format-item
  5690. nil
  5691. org-agenda-current-time-string
  5692. "" nil
  5693. (format-time-string "%H:%M "))
  5694. new)
  5695. (put-text-property
  5696. 2 (length (car new)) 'face 'org-agenda-current-time (car new)))
  5697. (if (member 'time-up org-agenda-sorting-strategy-selected)
  5698. (append new list)
  5699. (append list new)))))
  5700. (defun org-compile-prefix-format (key)
  5701. "Compile the prefix format into a Lisp form that can be evaluated.
  5702. The resulting form and associated variable bindings is returned
  5703. and stored in the variable `org-prefix-format-compiled'."
  5704. (setq org-prefix-has-time nil org-prefix-has-tag nil
  5705. org-prefix-category-length nil
  5706. org-prefix-has-effort nil)
  5707. (let ((s (cond
  5708. ((stringp org-agenda-prefix-format)
  5709. org-agenda-prefix-format)
  5710. ((assq key org-agenda-prefix-format)
  5711. (cdr (assq key org-agenda-prefix-format)))
  5712. (t " %-12:c%?-12t% s")))
  5713. (start 0)
  5714. varform vars var e c f opt)
  5715. (while (string-match "%\\(\\?\\)?\\([-+]?[0-9.]*\\)\\([ .;,:!?=|/<>]?\\)\\([ctsei]\\|(.+)\\)"
  5716. s start)
  5717. (setq var (or (cdr (assoc (match-string 4 s)
  5718. '(("c" . category) ("t" . time) ("s" . extra)
  5719. ("i" . category-icon) ("T" . tag) ("e" . effort))))
  5720. 'eval)
  5721. c (or (match-string 3 s) "")
  5722. opt (match-beginning 1)
  5723. start (1+ (match-beginning 0)))
  5724. (if (equal var 'time) (setq org-prefix-has-time t))
  5725. (if (equal var 'tag) (setq org-prefix-has-tag t))
  5726. (if (equal var 'effort) (setq org-prefix-has-effort t))
  5727. (setq f (concat "%" (match-string 2 s) "s"))
  5728. (when (equal var 'category)
  5729. (setq org-prefix-category-length
  5730. (floor (abs (string-to-number (match-string 2 s)))))
  5731. (setq org-prefix-category-max-length
  5732. (let ((x (match-string 2 s)))
  5733. (save-match-data
  5734. (if (string-match "\\.[0-9]+" x)
  5735. (string-to-number (substring (match-string 0 x) 1)))))))
  5736. (if (eq var 'eval)
  5737. (setq varform `(format ,f (org-eval ,(read (match-string 4 s)))))
  5738. (if opt
  5739. (setq varform
  5740. `(if (equal "" ,var)
  5741. ""
  5742. (format ,f (if (equal "" ,var) "" (concat ,var ,c)))))
  5743. (setq varform `(format ,f (if (equal ,var "") "" (concat ,var ,c (get-text-property 0 'extra-space ,var)))))))
  5744. (setq s (replace-match "%s" t nil s))
  5745. (push varform vars))
  5746. (setq vars (nreverse vars))
  5747. (with-current-buffer (or org-agenda-buffer (current-buffer))
  5748. (setq org-prefix-format-compiled
  5749. (list
  5750. `((org-prefix-has-time ,org-prefix-has-time)
  5751. (org-prefix-has-tag ,org-prefix-has-tag)
  5752. (org-prefix-category-length ,org-prefix-category-length)
  5753. (org-prefix-has-effort ,org-prefix-has-effort))
  5754. `(format ,s ,@vars))))))
  5755. (defun org-set-sorting-strategy (key)
  5756. (if (symbolp (car org-agenda-sorting-strategy))
  5757. ;; the old format
  5758. (setq org-agenda-sorting-strategy-selected org-agenda-sorting-strategy)
  5759. (setq org-agenda-sorting-strategy-selected
  5760. (or (cdr (assq key org-agenda-sorting-strategy))
  5761. (cdr (assq 'agenda org-agenda-sorting-strategy))
  5762. '(time-up category-keep priority-down)))))
  5763. (defun org-get-time-of-day (s &optional string mod24)
  5764. "Check string S for a time of day.
  5765. If found, return it as a military time number between 0 and 2400.
  5766. If not found, return nil.
  5767. The optional STRING argument forces conversion into a 5 character wide string
  5768. HH:MM."
  5769. (save-match-data
  5770. (when
  5771. (or (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)\\([AaPp][Mm]\\)?\\> *" s)
  5772. (string-match "\\<\\([012]?[0-9]\\)\\(:\\([0-5][0-9]\\)\\)?\\([AaPp][Mm]\\)\\> *" s))
  5773. (let* ((h (string-to-number (match-string 1 s)))
  5774. (m (if (match-end 3) (string-to-number (match-string 3 s)) 0))
  5775. (ampm (if (match-end 4) (downcase (match-string 4 s))))
  5776. (am-p (equal ampm "am"))
  5777. (h1 (cond ((not ampm) h)
  5778. ((= h 12) (if am-p 0 12))
  5779. (t (+ h (if am-p 0 12)))))
  5780. (h2 (if (and string mod24 (not (and (= m 0) (= h1 24))))
  5781. (mod h1 24) h1))
  5782. (t0 (+ (* 100 h2) m))
  5783. (t1 (concat (if (>= h1 24) "+" " ")
  5784. (if (and org-agenda-time-leading-zero
  5785. (< t0 1000)) "0" "")
  5786. (if (< t0 100) "0" "")
  5787. (if (< t0 10) "0" "")
  5788. (int-to-string t0))))
  5789. (if string (concat (substring t1 -4 -2) ":" (substring t1 -2)) t0)))))
  5790. (defvar org-agenda-before-sorting-filter-function nil
  5791. "Function to be applied to agenda items prior to sorting.
  5792. Prior to sorting also means just before they are inserted into the agenda.
  5793. To aid sorting, you may revisit the original entries and add more text
  5794. properties which will later be used by the sorting functions.
  5795. The function should take a string argument, an agenda line.
  5796. It has access to the text properties in that line, which contain among
  5797. other things, the property `org-hd-marker' that points to the entry
  5798. where the line comes from. Note that not all lines going into the agenda
  5799. have this property, only most.
  5800. The function should return the modified string. It is probably best
  5801. to ONLY change text properties.
  5802. You can also use this function as a filter, by returning nil for lines
  5803. you don't want to have in the agenda at all. For this application, you
  5804. could bind the variable in the options section of a custom command.")
  5805. (defun org-agenda-finalize-entries (list &optional nosort)
  5806. "Sort and concatenate the agenda items."
  5807. (setq list (mapcar 'org-agenda-highlight-todo list))
  5808. (if nosort
  5809. list
  5810. (when org-agenda-before-sorting-filter-function
  5811. (setq list (delq nil (mapcar org-agenda-before-sorting-filter-function list))))
  5812. (mapconcat 'identity (sort list 'org-entries-lessp) "\n")))
  5813. (defun org-agenda-highlight-todo (x)
  5814. (let ((org-done-keywords org-done-keywords-for-agenda)
  5815. (case-fold-search nil)
  5816. re)
  5817. (if (eq x 'line)
  5818. (save-excursion
  5819. (beginning-of-line 1)
  5820. (setq re (org-get-at-bol 'org-todo-regexp))
  5821. (goto-char (or (text-property-any (point-at-bol) (point-at-eol) 'org-heading t) (point)))
  5822. (when (looking-at (concat "[ \t]*\\.*\\(" re "\\) +"))
  5823. (add-text-properties (match-beginning 0) (match-end 1)
  5824. (list 'face (org-get-todo-face 1)))
  5825. (let ((s (buffer-substring (match-beginning 1) (match-end 1))))
  5826. (delete-region (match-beginning 1) (1- (match-end 0)))
  5827. (goto-char (match-beginning 1))
  5828. (insert (format org-agenda-todo-keyword-format s)))))
  5829. (let ((pl (text-property-any 0 (length x) 'org-heading t x)))
  5830. (setq re (get-text-property 0 'org-todo-regexp x))
  5831. (when (and re
  5832. ;; Test `pl' because if there's no heading content,
  5833. ;; there's no point matching to highlight. Note
  5834. ;; that if we didn't test `pl' first, and there
  5835. ;; happened to be no keyword from `org-todo-regexp'
  5836. ;; on this heading line, then the `equal' comparison
  5837. ;; afterwards would spuriously succeed in the case
  5838. ;; where `pl' is nil -- causing an args-out-of-range
  5839. ;; error when we try to add text properties to text
  5840. ;; that isn't there.
  5841. pl
  5842. (equal (string-match (concat "\\(\\.*\\)" re "\\( +\\)")
  5843. x pl) pl))
  5844. (add-text-properties
  5845. (or (match-end 1) (match-end 0)) (match-end 0)
  5846. (list 'face (org-get-todo-face (match-string 2 x)))
  5847. x)
  5848. (when (match-end 1)
  5849. (setq x (concat (substring x 0 (match-end 1))
  5850. (format org-agenda-todo-keyword-format
  5851. (match-string 2 x))
  5852. (org-add-props " " (text-properties-at 0 x))
  5853. (substring x (match-end 3)))))))
  5854. x)))
  5855. (defsubst org-cmp-priority (a b)
  5856. "Compare the priorities of string A and B."
  5857. (let ((pa (or (get-text-property 1 'priority a) 0))
  5858. (pb (or (get-text-property 1 'priority b) 0)))
  5859. (cond ((> pa pb) +1)
  5860. ((< pa pb) -1))))
  5861. (defsubst org-cmp-effort (a b)
  5862. "Compare the effort values of string A and B."
  5863. (let* ((def (if org-sort-agenda-noeffort-is-high 32767 -1))
  5864. (ea (or (get-text-property 1 'effort-minutes a) def))
  5865. (eb (or (get-text-property 1 'effort-minutes b) def)))
  5866. (cond ((> ea eb) +1)
  5867. ((< ea eb) -1))))
  5868. (defsubst org-cmp-category (a b)
  5869. "Compare the string values of categories of strings A and B."
  5870. (let ((ca (or (get-text-property 1 'org-category a) ""))
  5871. (cb (or (get-text-property 1 'org-category b) "")))
  5872. (cond ((string-lessp ca cb) -1)
  5873. ((string-lessp cb ca) +1))))
  5874. (defsubst org-cmp-todo-state (a b)
  5875. "Compare the todo states of strings A and B."
  5876. (let* ((ma (or (get-text-property 1 'org-marker a)
  5877. (get-text-property 1 'org-hd-marker a)))
  5878. (mb (or (get-text-property 1 'org-marker b)
  5879. (get-text-property 1 'org-hd-marker b)))
  5880. (fa (and ma (marker-buffer ma)))
  5881. (fb (and mb (marker-buffer mb)))
  5882. (todo-kwds
  5883. (or (and fa (with-current-buffer fa org-todo-keywords-1))
  5884. (and fb (with-current-buffer fb org-todo-keywords-1))))
  5885. (ta (or (get-text-property 1 'todo-state a) ""))
  5886. (tb (or (get-text-property 1 'todo-state b) ""))
  5887. (la (- (length (member ta todo-kwds))))
  5888. (lb (- (length (member tb todo-kwds))))
  5889. (donepa (member ta org-done-keywords-for-agenda))
  5890. (donepb (member tb org-done-keywords-for-agenda)))
  5891. (cond ((and donepa (not donepb)) -1)
  5892. ((and (not donepa) donepb) +1)
  5893. ((< la lb) -1)
  5894. ((< lb la) +1))))
  5895. (defsubst org-cmp-alpha (a b)
  5896. "Compare the headlines, alphabetically."
  5897. (let* ((pla (text-property-any 0 (length a) 'org-heading t a))
  5898. (plb (text-property-any 0 (length b) 'org-heading t b))
  5899. (ta (and pla (substring a pla)))
  5900. (tb (and plb (substring b plb))))
  5901. (when pla
  5902. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp a) "")
  5903. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") ta)
  5904. (setq ta (substring ta (match-end 0))))
  5905. (setq ta (downcase ta)))
  5906. (when plb
  5907. (if (string-match (concat "\\`[ \t]*" (or (get-text-property 0 'org-todo-regexp b) "")
  5908. "\\([ \t]*\\[[a-zA-Z0-9]\\]\\)? *") tb)
  5909. (setq tb (substring tb (match-end 0))))
  5910. (setq tb (downcase tb)))
  5911. (cond ((not ta) +1)
  5912. ((not tb) -1)
  5913. ((string-lessp ta tb) -1)
  5914. ((string-lessp tb ta) +1))))
  5915. (defsubst org-cmp-tag (a b)
  5916. "Compare the string values of the first tags of A and B."
  5917. (let ((ta (car (last (get-text-property 1 'tags a))))
  5918. (tb (car (last (get-text-property 1 'tags b)))))
  5919. (cond ((not ta) +1)
  5920. ((not tb) -1)
  5921. ((string-lessp ta tb) -1)
  5922. ((string-lessp tb ta) +1))))
  5923. (defsubst org-cmp-time (a b)
  5924. "Compare the time-of-day values of strings A and B."
  5925. (let* ((def (if org-sort-agenda-notime-is-late 9901 -1))
  5926. (ta (or (get-text-property 1 'time-of-day a) def))
  5927. (tb (or (get-text-property 1 'time-of-day b) def)))
  5928. (cond ((< ta tb) -1)
  5929. ((< tb ta) +1))))
  5930. (defsubst org-cmp-habit-p (a b)
  5931. "Compare the todo states of strings A and B."
  5932. (let ((ha (get-text-property 1 'org-habit-p a))
  5933. (hb (get-text-property 1 'org-habit-p b)))
  5934. (cond ((and ha (not hb)) -1)
  5935. ((and (not ha) hb) +1))))
  5936. (defsubst org-em (x y list) (or (memq x list) (memq y list)))
  5937. (defun org-entries-lessp (a b)
  5938. "Predicate for sorting agenda entries."
  5939. ;; The following variables will be used when the form is evaluated.
  5940. ;; So even though the compiler complains, keep them.
  5941. (let* ((ss org-agenda-sorting-strategy-selected)
  5942. (time-up (and (org-em 'time-up 'time-down ss)
  5943. (org-cmp-time a b)))
  5944. (time-down (if time-up (- time-up) nil))
  5945. (priority-up (and (org-em 'priority-up 'priority-down ss)
  5946. (org-cmp-priority a b)))
  5947. (priority-down (if priority-up (- priority-up) nil))
  5948. (effort-up (and (org-em 'effort-up 'effort-down ss)
  5949. (org-cmp-effort a b)))
  5950. (effort-down (if effort-up (- effort-up) nil))
  5951. (category-up (and (or (org-em 'category-up 'category-down ss)
  5952. (memq 'category-keep ss))
  5953. (org-cmp-category a b)))
  5954. (category-down (if category-up (- category-up) nil))
  5955. (category-keep (if category-up +1 nil))
  5956. (tag-up (and (org-em 'tag-up 'tag-down ss)
  5957. (org-cmp-tag a b)))
  5958. (tag-down (if tag-up (- tag-up) nil))
  5959. (todo-state-up (and (org-em 'todo-state-up 'todo-state-down ss)
  5960. (org-cmp-todo-state a b)))
  5961. (todo-state-down (if todo-state-up (- todo-state-up) nil))
  5962. (habit-up (and (org-em 'habit-up 'habit-down ss)
  5963. (org-cmp-habit-p a b)))
  5964. (habit-down (if habit-up (- habit-up) nil))
  5965. (alpha-up (and (org-em 'alpha-up 'alpha-down ss)
  5966. (org-cmp-alpha a b)))
  5967. (alpha-down (if alpha-up (- alpha-up) nil))
  5968. (need-user-cmp (org-em 'user-defined-up 'user-defined-down ss))
  5969. user-defined-up user-defined-down)
  5970. (if (and need-user-cmp org-agenda-cmp-user-defined
  5971. (functionp org-agenda-cmp-user-defined))
  5972. (setq user-defined-up
  5973. (funcall org-agenda-cmp-user-defined a b)
  5974. user-defined-down (if user-defined-up (- user-defined-up) nil)))
  5975. (cdr (assoc
  5976. (eval (cons 'or org-agenda-sorting-strategy-selected))
  5977. '((-1 . t) (1 . nil) (nil . nil))))))
  5978. ;;; Agenda restriction lock
  5979. (defvar org-agenda-restriction-lock-overlay (make-overlay 1 1)
  5980. "Overlay to mark the headline to which agenda commands are restricted.")
  5981. (overlay-put org-agenda-restriction-lock-overlay
  5982. 'face 'org-agenda-restriction-lock)
  5983. (overlay-put org-agenda-restriction-lock-overlay
  5984. 'help-echo "Agendas are currently limited to this subtree.")
  5985. (org-detach-overlay org-agenda-restriction-lock-overlay)
  5986. (defun org-agenda-set-restriction-lock (&optional type)
  5987. "Set restriction lock for agenda, to current subtree or file.
  5988. Restriction will be the file if TYPE is `file', or if type is the
  5989. universal prefix '(4), or if the cursor is before the first headline
  5990. in the file. Otherwise, restriction will be to the current subtree."
  5991. (interactive "P")
  5992. (and (equal type '(4)) (setq type 'file))
  5993. (setq type (cond
  5994. (type type)
  5995. ((org-at-heading-p) 'subtree)
  5996. ((condition-case nil (org-back-to-heading t) (error nil))
  5997. 'subtree)
  5998. (t 'file)))
  5999. (if (eq type 'subtree)
  6000. (progn
  6001. (setq org-agenda-restrict t)
  6002. (setq org-agenda-overriding-restriction 'subtree)
  6003. (put 'org-agenda-files 'org-restrict
  6004. (list (buffer-file-name (buffer-base-buffer))))
  6005. (org-back-to-heading t)
  6006. (move-overlay org-agenda-restriction-lock-overlay (point) (point-at-eol))
  6007. (move-marker org-agenda-restrict-begin (point))
  6008. (move-marker org-agenda-restrict-end
  6009. (save-excursion (org-end-of-subtree t)))
  6010. (message "Locking agenda restriction to subtree"))
  6011. (put 'org-agenda-files 'org-restrict
  6012. (list (buffer-file-name (buffer-base-buffer))))
  6013. (setq org-agenda-restrict nil)
  6014. (setq org-agenda-overriding-restriction 'file)
  6015. (move-marker org-agenda-restrict-begin nil)
  6016. (move-marker org-agenda-restrict-end nil)
  6017. (message "Locking agenda restriction to file"))
  6018. (setq current-prefix-arg nil)
  6019. (org-agenda-maybe-redo))
  6020. (defun org-agenda-remove-restriction-lock (&optional noupdate)
  6021. "Remove the agenda restriction lock."
  6022. (interactive "P")
  6023. (org-detach-overlay org-agenda-restriction-lock-overlay)
  6024. (org-detach-overlay org-speedbar-restriction-lock-overlay)
  6025. (setq org-agenda-overriding-restriction nil)
  6026. (setq org-agenda-restrict nil)
  6027. (put 'org-agenda-files 'org-restrict nil)
  6028. (move-marker org-agenda-restrict-begin nil)
  6029. (move-marker org-agenda-restrict-end nil)
  6030. (setq current-prefix-arg nil)
  6031. (message "Agenda restriction lock removed")
  6032. (or noupdate (org-agenda-maybe-redo)))
  6033. (defun org-agenda-maybe-redo ()
  6034. "If there is any window showing the agenda view, update it."
  6035. (let ((w (get-buffer-window org-agenda-buffer-name t))
  6036. (w0 (selected-window)))
  6037. (when w
  6038. (select-window w)
  6039. (org-agenda-redo)
  6040. (select-window w0)
  6041. (if org-agenda-overriding-restriction
  6042. (message "Agenda view shifted to new %s restriction"
  6043. org-agenda-overriding-restriction)
  6044. (message "Agenda restriction lock removed")))))
  6045. ;;; Agenda commands
  6046. (defun org-agenda-check-type (error &rest types)
  6047. "Check if agenda buffer is of allowed type.
  6048. If ERROR is non-nil, throw an error, otherwise just return nil."
  6049. (if (not org-agenda-type)
  6050. (error "No Org agenda currently displayed")
  6051. (if (memq org-agenda-type types)
  6052. t
  6053. (if error
  6054. (error "Not allowed in %s-type agenda buffers" org-agenda-type)
  6055. nil))))
  6056. (defun org-agenda-Quit (&optional arg)
  6057. "Exit agenda by removing the window or the buffer."
  6058. (interactive)
  6059. (if org-agenda-columns-active
  6060. (org-columns-quit)
  6061. (let ((buf (current-buffer)))
  6062. (if (eq org-agenda-window-setup 'other-frame)
  6063. (progn
  6064. (org-agenda-reset-markers)
  6065. (kill-buffer buf)
  6066. (org-columns-remove-overlays)
  6067. (setq org-agenda-archives-mode nil)
  6068. (delete-frame))
  6069. (and (not (eq org-agenda-window-setup 'current-window))
  6070. (not (one-window-p))
  6071. (delete-window))
  6072. (org-agenda-reset-markers)
  6073. (kill-buffer buf)
  6074. (org-columns-remove-overlays)
  6075. (setq org-agenda-archives-mode nil)))
  6076. ;; Maybe restore the pre-agenda window configuration.
  6077. (and org-agenda-restore-windows-after-quit
  6078. (not (eq org-agenda-window-setup 'other-frame))
  6079. org-agenda-pre-window-conf
  6080. (set-window-configuration org-agenda-pre-window-conf)
  6081. (setq org-agenda-pre-window-conf nil))))
  6082. (defun org-agenda-quit ()
  6083. "Exit agenda by killing agenda buffer or burying it when
  6084. `org-agenda-sticky' is non-NIL"
  6085. (interactive)
  6086. (if org-agenda-columns-active
  6087. (org-columns-quit)
  6088. (if org-agenda-sticky
  6089. (let ((buf (current-buffer)))
  6090. (if (eq org-agenda-window-setup 'other-frame)
  6091. (progn
  6092. (delete-frame))
  6093. (and (not (eq org-agenda-window-setup 'current-window))
  6094. (not (one-window-p))
  6095. (delete-window)))
  6096. (with-current-buffer buf
  6097. (bury-buffer)
  6098. ;; Maybe restore the pre-agenda window configuration.
  6099. (and org-agenda-restore-windows-after-quit
  6100. (not (eq org-agenda-window-setup 'other-frame))
  6101. org-agenda-pre-window-conf
  6102. (set-window-configuration org-agenda-pre-window-conf)
  6103. (setq org-agenda-pre-window-conf nil))))
  6104. (org-agenda-Quit))))
  6105. (defun org-agenda-exit ()
  6106. "Exit agenda by removing the window or the buffer.
  6107. Also kill all Org-mode buffers which have been loaded by `org-agenda'.
  6108. Org-mode buffers visited directly by the user will not be touched."
  6109. (interactive)
  6110. (org-release-buffers org-agenda-new-buffers)
  6111. (setq org-agenda-new-buffers nil)
  6112. (org-agenda-Quit))
  6113. (defun org-agenda-kill-all-agenda-buffers ()
  6114. "Kill all buffers in `org-agena-mode'.
  6115. This is used when toggling sticky agendas. You can also explicitly invoke it
  6116. with `C-c a C-k'."
  6117. (interactive)
  6118. (let (blist)
  6119. (dolist (buf (buffer-list))
  6120. (when (with-current-buffer buf (eq major-mode 'org-agenda-mode))
  6121. (push buf blist)))
  6122. (mapc 'kill-buffer blist)))
  6123. (defun org-agenda-execute (arg)
  6124. "Execute another agenda command, keeping same window.
  6125. So this is just a shortcut for \\<global-map>`\\[org-agenda]', available
  6126. in the agenda."
  6127. (interactive "P")
  6128. (let ((org-agenda-window-setup 'current-window))
  6129. (org-agenda arg)))
  6130. (defun org-agenda-redo (&optional all)
  6131. "Rebuild possibly ALL agenda view(s) in the current buffer."
  6132. (interactive "P")
  6133. (let* ((p (or (and (looking-at "\\'") (1- (point))) (point)))
  6134. (cpa (unless (eq all t) current-prefix-arg))
  6135. (org-agenda-doing-sticky-redo org-agenda-sticky)
  6136. (org-agenda-sticky nil)
  6137. (org-agenda-buffer-name (or org-agenda-this-buffer-name
  6138. org-agenda-buffer-name))
  6139. (org-agenda-keep-modes t)
  6140. (tag-filter org-agenda-tag-filter)
  6141. (tag-preset (get 'org-agenda-tag-filter :preset-filter))
  6142. (top-cat-filter org-agenda-top-category-filter)
  6143. (cat-filter org-agenda-category-filter)
  6144. (cat-preset (get 'org-agenda-category-filter :preset-filter))
  6145. (org-agenda-tag-filter-while-redo (or tag-filter tag-preset))
  6146. (cols org-agenda-columns-active)
  6147. (line (org-current-line))
  6148. (window-line (- line (org-current-line (window-start))))
  6149. (lprops (get 'org-agenda-redo-command 'org-lprops))
  6150. (redo-cmd (get-text-property p 'org-redo-cmd))
  6151. (last-args (get-text-property p 'org-last-args))
  6152. (org-agenda-overriding-cmd (get-text-property p 'org-serie-cmd))
  6153. (org-agenda-overriding-cmd-arguments
  6154. (unless (eq all t)
  6155. (cond ((listp last-args)
  6156. (cons (or cpa (car last-args)) (cdr last-args)))
  6157. ((stringp last-args)
  6158. last-args))))
  6159. (serie-redo-cmd (get-text-property p 'org-serie-redo-cmd)))
  6160. (put 'org-agenda-tag-filter :preset-filter nil)
  6161. (put 'org-agenda-category-filter :preset-filter nil)
  6162. (and cols (org-columns-quit))
  6163. (message "Rebuilding agenda buffer...")
  6164. (if serie-redo-cmd
  6165. (eval serie-redo-cmd)
  6166. (org-let lprops '(eval redo-cmd)))
  6167. (setq org-agenda-undo-list nil
  6168. org-agenda-pending-undo-list nil)
  6169. (message "Rebuilding agenda buffer...done")
  6170. (put 'org-agenda-tag-filter :preset-filter tag-preset)
  6171. (put 'org-agenda-category-filter :preset-filter cat-preset)
  6172. (and (or tag-filter tag-preset) (org-agenda-filter-apply tag-filter 'tag))
  6173. (and (or cat-filter cat-preset) (org-agenda-filter-apply cat-filter 'category))
  6174. (and top-cat-filter (org-agenda-filter-top-category-apply top-cat-filter))
  6175. (and cols (org-called-interactively-p 'any) (org-agenda-columns))
  6176. (org-goto-line line)
  6177. (recenter window-line)))
  6178. (defvar org-global-tags-completion-table nil)
  6179. (defvar org-agenda-filter-form nil)
  6180. (defvar org-agenda-filtered-by-category nil)
  6181. (defun org-agenda-filter-by-category (strip)
  6182. "Keep only those lines in the agenda buffer that have a specific category.
  6183. The category is that of the current line."
  6184. (interactive "P")
  6185. (if (and org-agenda-filtered-by-category
  6186. org-agenda-category-filter)
  6187. (org-agenda-filter-show-all-cat)
  6188. (let ((cat (org-no-properties (get-text-property (point) 'org-category))))
  6189. (if cat (org-agenda-filter-apply
  6190. (list (concat (if strip "-" "+") cat)) 'category)
  6191. (error "No category at point")))))
  6192. (defun org-find-top-category (&optional pos)
  6193. (save-excursion
  6194. (with-current-buffer (if pos (marker-buffer pos) (current-buffer))
  6195. (if pos (goto-char pos))
  6196. ;; Skip up to the topmost parent
  6197. (while (ignore-errors (outline-up-heading 1) t))
  6198. (ignore-errors
  6199. (nth 4 (org-heading-components))))))
  6200. (defvar org-agenda-filtered-by-top-category nil)
  6201. (defun org-agenda-filter-by-top-category (strip)
  6202. "Keep only those lines in the agenda buffer that have a specific category.
  6203. The category is that of the current line."
  6204. (interactive "P")
  6205. (if org-agenda-filtered-by-top-category
  6206. (progn
  6207. (setq org-agenda-filtered-by-top-category nil
  6208. org-agenda-top-category-filter nil)
  6209. (org-agenda-filter-show-all-cat))
  6210. (let ((cat (org-find-top-category (org-get-at-bol 'org-hd-marker))))
  6211. (if cat (org-agenda-filter-top-category-apply cat strip)
  6212. (error "No top-level category at point")))))
  6213. (defun org-agenda-filter-by-tag (strip &optional char narrow)
  6214. "Keep only those lines in the agenda buffer that have a specific tag.
  6215. The tag is selected with its fast selection letter, as configured.
  6216. With prefix argument STRIP, remove all lines that do have the tag.
  6217. A lisp caller can specify CHAR. NARROW means that the new tag should be
  6218. used to narrow the search - the interactive user can also press `-' or `+'
  6219. to switch to narrowing."
  6220. (interactive "P")
  6221. (let* ((alist org-tag-alist-for-agenda)
  6222. (tag-chars (mapconcat
  6223. (lambda (x) (if (and (not (symbolp (car x)))
  6224. (cdr x))
  6225. (char-to-string (cdr x))
  6226. ""))
  6227. alist ""))
  6228. (efforts (org-split-string
  6229. (or (cdr (assoc (concat org-effort-property "_ALL")
  6230. org-global-properties))
  6231. "0 0:10 0:30 1:00 2:00 3:00 4:00 5:00 6:00 7:00 8:00"
  6232. "")))
  6233. (effort-op org-agenda-filter-effort-default-operator)
  6234. (effort-prompt "")
  6235. (inhibit-read-only t)
  6236. (current org-agenda-tag-filter)
  6237. maybe-refresh a n tag)
  6238. (unless char
  6239. (message
  6240. "%s by tag [%s ], [TAB], %s[/]:off, [+-]:narrow, [>=<?]:effort: "
  6241. (if narrow "Narrow" "Filter") tag-chars
  6242. (if org-agenda-auto-exclude-function "[RET], " ""))
  6243. (setq char (read-char-exclusive)))
  6244. (when (member char '(?+ ?-))
  6245. ;; Narrowing down
  6246. (cond ((equal char ?-) (setq strip t narrow t))
  6247. ((equal char ?+) (setq strip nil narrow t)))
  6248. (message
  6249. "Narrow by tag [%s ], [TAB], [/]:off, [>=<]:effort: " tag-chars)
  6250. (setq char (read-char-exclusive)))
  6251. (when (member char '(?< ?> ?= ??))
  6252. ;; An effort operator
  6253. (setq effort-op (char-to-string char))
  6254. (setq alist nil) ; to make sure it will be interpreted as effort.
  6255. (unless (equal char ??)
  6256. (loop for i from 0 to 9 do
  6257. (setq effort-prompt
  6258. (concat
  6259. effort-prompt " ["
  6260. (if (= i 9) "0" (int-to-string (1+ i)))
  6261. "]" (nth i efforts))))
  6262. (message "Effort%s: %s " effort-op effort-prompt)
  6263. (setq char (read-char-exclusive))
  6264. (when (or (< char ?0) (> char ?9))
  6265. (error "Need 1-9,0 to select effort"))))
  6266. (when (equal char ?\t)
  6267. (unless (local-variable-p 'org-global-tags-completion-table (current-buffer))
  6268. (org-set-local 'org-global-tags-completion-table
  6269. (org-global-tags-completion-table)))
  6270. (let ((completion-ignore-case t))
  6271. (setq tag (org-icompleting-read
  6272. "Tag: " org-global-tags-completion-table))))
  6273. (cond
  6274. ((equal char ?\r)
  6275. (org-agenda-filter-show-all-tag)
  6276. (when org-agenda-auto-exclude-function
  6277. (setq org-agenda-tag-filter '())
  6278. (dolist (tag (org-agenda-get-represented-tags))
  6279. (let ((modifier (funcall org-agenda-auto-exclude-function tag)))
  6280. (if modifier
  6281. (push modifier org-agenda-tag-filter))))
  6282. (if (not (null org-agenda-tag-filter))
  6283. (org-agenda-filter-apply org-agenda-tag-filter 'tag)))
  6284. (setq maybe-refresh t))
  6285. ((equal char ?/)
  6286. (org-agenda-filter-show-all-tag)
  6287. (when (get 'org-agenda-tag-filter :preset-filter)
  6288. (org-agenda-filter-apply org-agenda-tag-filter 'tag))
  6289. (setq maybe-refresh t))
  6290. ((equal char ?. )
  6291. (setq org-agenda-tag-filter
  6292. (mapcar (lambda(tag) (concat "+" tag))
  6293. (org-get-at-bol 'tags)))
  6294. (org-agenda-filter-apply org-agenda-tag-filter 'tag)
  6295. (setq maybe-refresh t))
  6296. ((or (equal char ?\ )
  6297. (setq a (rassoc char alist))
  6298. (and (>= char ?0) (<= char ?9)
  6299. (setq n (if (= char ?0) 9 (- char ?0 1))
  6300. tag (concat effort-op (nth n efforts))
  6301. a (cons tag nil)))
  6302. (and (= char ??)
  6303. (setq tag "?eff")
  6304. a (cons tag nil))
  6305. (and tag (setq a (cons tag nil))))
  6306. (org-agenda-filter-show-all-tag)
  6307. (setq tag (car a))
  6308. (setq org-agenda-tag-filter
  6309. (cons (concat (if strip "-" "+") tag)
  6310. (if narrow current nil)))
  6311. (org-agenda-filter-apply org-agenda-tag-filter 'tag)
  6312. (setq maybe-refresh t))
  6313. (t (error "Invalid tag selection character %c" char)))
  6314. (when (and maybe-refresh
  6315. (eq org-agenda-clockreport-mode 'with-filter))
  6316. (org-agenda-redo))))
  6317. (defun org-agenda-get-represented-tags ()
  6318. "Get a list of all tags currently represented in the agenda."
  6319. (let (p tags)
  6320. (save-excursion
  6321. (goto-char (point-min))
  6322. (while (setq p (next-single-property-change (point) 'tags))
  6323. (goto-char p)
  6324. (mapc (lambda (x) (add-to-list 'tags x))
  6325. (get-text-property (point) 'tags))))
  6326. tags))
  6327. (defun org-agenda-filter-by-tag-refine (strip &optional char)
  6328. "Refine the current filter. See `org-agenda-filter-by-tag'."
  6329. (interactive "P")
  6330. (org-agenda-filter-by-tag strip char 'refine))
  6331. (defun org-agenda-filter-make-matcher ()
  6332. "Create the form that tests a line for agenda filter."
  6333. (let (f f1)
  6334. ;; first compute the tag-filter matcher
  6335. (dolist (x (delete-dups
  6336. (append (get 'org-agenda-tag-filter
  6337. :preset-filter) org-agenda-tag-filter)))
  6338. (if (member x '("-" "+"))
  6339. (setq f1 (if (equal x "-") 'tags '(not tags)))
  6340. (if (string-match "[<=>?]" x)
  6341. (setq f1 (org-agenda-filter-effort-form x))
  6342. (setq f1 (list 'member (downcase (substring x 1)) 'tags)))
  6343. (if (equal (string-to-char x) ?-)
  6344. (setq f1 (list 'not f1))))
  6345. (push f1 f))
  6346. ;; then compute the category-filter matcher
  6347. (dolist (x (delete-dups
  6348. (append (get 'org-agenda-category-filter
  6349. :preset-filter) org-agenda-category-filter)))
  6350. (if (equal "-" (substring x 0 1))
  6351. (setq f1 (list 'not (list 'equal (substring x 1) 'cat)))
  6352. (setq f1 (list 'equal (substring x 1) 'cat)))
  6353. (push f1 f))
  6354. (cons 'and (nreverse f))))
  6355. (defun org-agenda-filter-effort-form (e)
  6356. "Return the form to compare the effort of the current line with what E says.
  6357. E looks like \"+<2:25\"."
  6358. (let (op)
  6359. (setq e (substring e 1))
  6360. (setq op (string-to-char e) e (substring e 1))
  6361. (setq op (cond ((equal op ?<) '<=)
  6362. ((equal op ?>) '>=)
  6363. ((equal op ??) op)
  6364. (t '=)))
  6365. (list 'org-agenda-compare-effort (list 'quote op)
  6366. (org-duration-string-to-minutes e))))
  6367. (defun org-agenda-compare-effort (op value)
  6368. "Compare the effort of the current line with VALUE, using OP.
  6369. If the line does not have an effort defined, return nil."
  6370. (let ((eff (org-get-at-bol 'effort-minutes)))
  6371. (if (equal op ??)
  6372. (not eff)
  6373. (funcall op (or eff (if org-sort-agenda-noeffort-is-high 32767 0))
  6374. value))))
  6375. (defun org-agenda-filter-apply (filter type)
  6376. "Set FILTER as the new agenda filter and apply it."
  6377. (let (tags cat)
  6378. (if (eq type 'tag)
  6379. (setq org-agenda-tag-filter filter)
  6380. (setq org-agenda-category-filter filter))
  6381. (setq org-agenda-filter-form (org-agenda-filter-make-matcher))
  6382. (if (and (eq type 'category)
  6383. (not (equal (substring (car filter) 0 1) "-")))
  6384. ;; Only set `org-agenda-filtered-by-category' to t
  6385. ;; when a unique category is used as the filter
  6386. (setq org-agenda-filtered-by-category t))
  6387. (org-agenda-set-mode-name)
  6388. (save-excursion
  6389. (goto-char (point-min))
  6390. (while (not (eobp))
  6391. (if (org-get-at-bol 'org-marker)
  6392. (progn
  6393. (setq tags (org-get-at-bol 'tags) ; used in eval
  6394. cat (get-text-property (point) 'org-category))
  6395. (if (not (eval org-agenda-filter-form))
  6396. (org-agenda-filter-hide-line type))
  6397. (beginning-of-line 2))
  6398. (beginning-of-line 2))))
  6399. (if (get-char-property (point) 'invisible)
  6400. (ignore-errors (org-agenda-previous-line)))))
  6401. (defun org-agenda-filter-top-category-apply (category &optional negative)
  6402. "Set FILTER as the new agenda filter and apply it."
  6403. (org-agenda-set-mode-name)
  6404. (save-excursion
  6405. (goto-char (point-min))
  6406. (while (not (eobp))
  6407. (let* ((pos (org-get-at-bol 'org-hd-marker))
  6408. (topcat (and pos (org-find-top-category pos))))
  6409. (if (and topcat (funcall (if negative 'identity 'not)
  6410. (string= category topcat)))
  6411. (org-agenda-filter-hide-line 'category)))
  6412. (beginning-of-line 2)))
  6413. (if (get-char-property (point) 'invisible)
  6414. (org-agenda-previous-line))
  6415. (setq org-agenda-top-category-filter category
  6416. org-agenda-filtered-by-top-category t))
  6417. (defun org-agenda-filter-hide-line (type)
  6418. (let (ov)
  6419. (setq ov (make-overlay (max (point-min) (1- (point-at-bol)))
  6420. (point-at-eol)))
  6421. (overlay-put ov 'invisible t)
  6422. (overlay-put ov 'type type)
  6423. (if (eq type 'tag)
  6424. (push ov org-agenda-tag-filter-overlays)
  6425. (push ov org-agenda-cat-filter-overlays))))
  6426. (defun org-agenda-fix-tags-filter-overlays-at (&optional pos)
  6427. (setq pos (or pos (point)))
  6428. (save-excursion
  6429. (dolist (ov (overlays-at pos))
  6430. (when (and (overlay-get ov 'invisible)
  6431. (eq (overlay-get ov 'type) 'tag))
  6432. (goto-char pos)
  6433. (if (< (overlay-start ov) (point-at-eol))
  6434. (move-overlay ov (point-at-eol)
  6435. (overlay-end ov)))))))
  6436. (defun org-agenda-filter-show-all-tag nil
  6437. (mapc 'delete-overlay org-agenda-tag-filter-overlays)
  6438. (setq org-agenda-tag-filter-overlays nil
  6439. org-agenda-tag-filter nil
  6440. org-agenda-filter-form nil)
  6441. (org-agenda-set-mode-name))
  6442. (defun org-agenda-filter-show-all-cat nil
  6443. (mapc 'delete-overlay org-agenda-cat-filter-overlays)
  6444. (setq org-agenda-cat-filter-overlays nil
  6445. org-agenda-filtered-by-category nil
  6446. org-agenda-category-filter nil
  6447. org-agenda-filter-form nil)
  6448. (org-agenda-set-mode-name))
  6449. (defun org-agenda-manipulate-query-add ()
  6450. "Manipulate the query by adding a search term with positive selection.
  6451. Positive selection means the term must be matched for selection of an entry."
  6452. (interactive)
  6453. (org-agenda-manipulate-query ?\[))
  6454. (defun org-agenda-manipulate-query-subtract ()
  6455. "Manipulate the query by adding a search term with negative selection.
  6456. Negative selection means term must not be matched for selection of an entry."
  6457. (interactive)
  6458. (org-agenda-manipulate-query ?\]))
  6459. (defun org-agenda-manipulate-query-add-re ()
  6460. "Manipulate the query by adding a search regexp with positive selection.
  6461. Positive selection means the regexp must match for selection of an entry."
  6462. (interactive)
  6463. (org-agenda-manipulate-query ?\{))
  6464. (defun org-agenda-manipulate-query-subtract-re ()
  6465. "Manipulate the query by adding a search regexp with negative selection.
  6466. Negative selection means regexp must not match for selection of an entry."
  6467. (interactive)
  6468. (org-agenda-manipulate-query ?\}))
  6469. (defun org-agenda-manipulate-query (char)
  6470. (cond
  6471. ((memq org-agenda-type '(timeline agenda))
  6472. (let ((org-agenda-include-inactive-timestamps t))
  6473. (org-agenda-redo))
  6474. (message "Display now includes inactive timestamps as well"))
  6475. ((eq org-agenda-type 'search)
  6476. (org-add-to-string
  6477. 'org-agenda-query-string
  6478. (if org-agenda-last-search-view-search-was-boolean
  6479. (cdr (assoc char '((?\[ . " +") (?\] . " -")
  6480. (?\{ . " +{}") (?\} . " -{}"))))
  6481. " "))
  6482. (setq org-agenda-redo-command
  6483. (list 'org-search-view
  6484. (car (get-text-property (point) 'org-last-args))
  6485. org-agenda-query-string
  6486. (+ (length org-agenda-query-string)
  6487. (if (member char '(?\{ ?\})) 0 1))))
  6488. (set-register org-agenda-query-register org-agenda-query-string)
  6489. (let ((org-agenda-overriding-arguments
  6490. (cdr org-agenda-redo-command)))
  6491. (org-agenda-redo)))
  6492. (t (error "Cannot manipulate query for %s-type agenda buffers"
  6493. org-agenda-type))))
  6494. (defun org-add-to-string (var string)
  6495. (set var (concat (symbol-value var) string)))
  6496. (defun org-agenda-goto-date (span)
  6497. "Jump to DATE in agenda."
  6498. (interactive "P")
  6499. (let* ((org-read-date-prefer-future
  6500. (eval org-agenda-jump-prefer-future))
  6501. (date (org-read-date))
  6502. (org-agenda-sticky-orig org-agenda-sticky)
  6503. (org-agenda-buffer-tmp-name (buffer-name))
  6504. (args (get-text-property (point) 'org-last-args))
  6505. (0-arg (or current-prefix-arg (car args)))
  6506. (2-arg (nth 2 args))
  6507. (newcmd (list 'org-agenda-list 0-arg date
  6508. (org-agenda-span-to-ndays 2-arg)))
  6509. (newargs (cdr newcmd))
  6510. (inhibit-read-only t)
  6511. org-agenda-sticky)
  6512. (if (not (org-agenda-check-type t 'agenda))
  6513. (error "Not available in non-agenda blocks")
  6514. (add-text-properties (point-min) (point-max)
  6515. `(org-redo-cmd ,newcmd org-last-args ,newargs))
  6516. (org-agenda-redo)
  6517. (setq org-agenda-sticky org-agenda-sticky-orig
  6518. org-agenda-this-buffer-is-sticky org-agenda-sticky))))
  6519. (defun org-agenda-goto-today ()
  6520. "Go to today."
  6521. (interactive)
  6522. (org-agenda-check-type t 'timeline 'agenda)
  6523. (let* ((args (get-text-property (point) 'org-last-args))
  6524. (curspan (nth 2 args))
  6525. (tdpos (text-property-any (point-min) (point-max) 'org-today t)))
  6526. (cond
  6527. (tdpos (goto-char tdpos))
  6528. ((eq org-agenda-type 'agenda)
  6529. (let* ((sd (org-agenda-compute-starting-span
  6530. (org-today) (or curspan org-agenda-ndays org-agenda-span)))
  6531. (org-agenda-overriding-arguments args))
  6532. (setf (nth 1 org-agenda-overriding-arguments) sd)
  6533. (org-agenda-redo)
  6534. (org-agenda-find-same-or-today-or-agenda)))
  6535. (t (error "Cannot find today")))))
  6536. (defun org-agenda-find-same-or-today-or-agenda (&optional cnt)
  6537. (goto-char
  6538. (or (and cnt (text-property-any (point-min) (point-max) 'org-day-cnt cnt))
  6539. (text-property-any (point-min) (point-max) 'org-today t)
  6540. (text-property-any (point-min) (point-max) 'org-agenda-type 'agenda)
  6541. (and (get-text-property (point) 'org-serie)
  6542. (org-agenda-goto-block-beginning))
  6543. (point-min))))
  6544. (defun org-agenda-goto-block-beginning ()
  6545. "Go the agenda block beginning."
  6546. (interactive)
  6547. (if (not (derived-mode-p 'org-agenda-mode))
  6548. (error "Cannot execute this command outside of org-agenda-mode buffers")
  6549. (let (dest)
  6550. (save-excursion
  6551. (unless (looking-at "\\'")
  6552. (forward-char))
  6553. (let* ((prop 'org-agenda-structural-header)
  6554. (p (previous-single-property-change (point) prop))
  6555. (n (next-single-property-change (or (and (looking-at "\\`") 1)
  6556. (1- (point))) prop)))
  6557. (setq dest (cond ((eq n (point-at-eol)) (1- n)) (p (1- p))))))
  6558. (if (not dest)
  6559. (error "Cannot find the beginning of the blog")
  6560. (goto-char dest)
  6561. (move-beginning-of-line 1)))))
  6562. (defun org-agenda-later (arg)
  6563. "Go forward in time by thee current span.
  6564. With prefix ARG, go forward that many times the current span."
  6565. (interactive "p")
  6566. (org-agenda-check-type t 'agenda)
  6567. (let* ((args (get-text-property (point) 'org-last-args))
  6568. (span (or (nth 2 args) org-agenda-current-span))
  6569. (sd (or (nth 1 args) (org-get-at-bol 'day) org-starting-day))
  6570. (greg (calendar-gregorian-from-absolute sd))
  6571. (cnt (org-get-at-bol 'org-day-cnt))
  6572. greg2)
  6573. (cond
  6574. ((numberp span)
  6575. (setq sd (+ span sd)))
  6576. ((eq span 'day)
  6577. (setq sd (+ arg sd)))
  6578. ((eq span 'week)
  6579. (setq sd (+ (* 7 arg) sd)))
  6580. ((eq span 'month)
  6581. (setq greg2 (list (+ (car greg) arg) (nth 1 greg) (nth 2 greg))
  6582. sd (calendar-absolute-from-gregorian greg2))
  6583. (setcar greg2 (1+ (car greg2))))
  6584. ((eq span 'year)
  6585. (setq greg2 (list (car greg) (nth 1 greg) (+ arg (nth 2 greg)))
  6586. sd (calendar-absolute-from-gregorian greg2))
  6587. (setcar (nthcdr 2 greg2) (1+ (nth 2 greg2))))
  6588. (t
  6589. (setq sd (+ (* span arg) sd))))
  6590. (let ((org-agenda-overriding-cmd
  6591. ;; `cmd' may have been set by `org-agenda-run-series' which
  6592. ;; uses `org-agenda-overriding-cmd' to decide whether
  6593. ;; overriding is allowed for `cmd'
  6594. (get-text-property (point) 'org-serie-cmd))
  6595. (org-agenda-overriding-arguments
  6596. (list (car args) sd span)))
  6597. (org-agenda-redo)
  6598. (org-agenda-find-same-or-today-or-agenda cnt))))
  6599. (defun org-agenda-earlier (arg)
  6600. "Go backward in time by the current span.
  6601. With prefix ARG, go backward that many times the current span."
  6602. (interactive "p")
  6603. (org-agenda-later (- arg)))
  6604. (defun org-agenda-view-mode-dispatch ()
  6605. "Call one of the view mode commands."
  6606. (interactive)
  6607. (message "View: [d]ay [w]eek [m]onth [y]ear [SPC]reset [q]uit/abort
  6608. time[G]rid [[]inactive [f]ollow [l]og [L]og-all [c]lockcheck
  6609. [a]rch-trees [A]rch-files clock[R]eport include[D]iary [E]ntryText")
  6610. (let ((a (read-char-exclusive)))
  6611. (case a
  6612. (?\ (call-interactively 'org-agenda-reset-view))
  6613. (?d (call-interactively 'org-agenda-day-view))
  6614. (?w (call-interactively 'org-agenda-week-view))
  6615. (?m (call-interactively 'org-agenda-month-view))
  6616. (?y (call-interactively 'org-agenda-year-view))
  6617. (?l (call-interactively 'org-agenda-log-mode))
  6618. (?L (org-agenda-log-mode '(4)))
  6619. (?c (org-agenda-log-mode 'clockcheck))
  6620. ((?F ?f) (call-interactively 'org-agenda-follow-mode))
  6621. (?a (call-interactively 'org-agenda-archives-mode))
  6622. (?A (org-agenda-archives-mode 'files))
  6623. ((?R ?r) (call-interactively 'org-agenda-clockreport-mode))
  6624. ((?E ?e) (call-interactively 'org-agenda-entry-text-mode))
  6625. (?G (call-interactively 'org-agenda-toggle-time-grid))
  6626. (?D (call-interactively 'org-agenda-toggle-diary))
  6627. (?\! (call-interactively 'org-agenda-toggle-deadlines))
  6628. (?\[ (let ((org-agenda-include-inactive-timestamps t))
  6629. (org-agenda-check-type t 'timeline 'agenda)
  6630. (org-agenda-redo))
  6631. (message "Display now includes inactive timestamps as well"))
  6632. (?q (message "Abort"))
  6633. (otherwise (error "Invalid key" )))))
  6634. (defun org-agenda-reset-view ()
  6635. "Switch to default view for agenda."
  6636. (interactive)
  6637. (org-agenda-change-time-span (or org-agenda-ndays org-agenda-span)))
  6638. (defun org-agenda-day-view (&optional day-of-year)
  6639. "Switch to daily view for agenda.
  6640. With argument DAY-OF-YEAR, switch to that day of the year."
  6641. (interactive "P")
  6642. (org-agenda-change-time-span 'day day-of-year))
  6643. (defun org-agenda-week-view (&optional iso-week)
  6644. "Switch to daily view for agenda.
  6645. With argument ISO-WEEK, switch to the corresponding ISO week.
  6646. If ISO-WEEK has more then 2 digits, only the last two encode the
  6647. week. Any digits before this encode a year. So 200712 means
  6648. week 12 of year 2007. Years in the range 1938-2037 can also be
  6649. written as 2-digit years."
  6650. (interactive "P")
  6651. (org-agenda-change-time-span 'week iso-week))
  6652. (defun org-agenda-month-view (&optional month)
  6653. "Switch to monthly view for agenda.
  6654. With argument MONTH, switch to that month."
  6655. (interactive "P")
  6656. (org-agenda-change-time-span 'month month))
  6657. (defun org-agenda-year-view (&optional year)
  6658. "Switch to yearly view for agenda.
  6659. With argument YEAR, switch to that year.
  6660. If MONTH has more then 2 digits, only the last two encode the
  6661. month. Any digits before this encode a year. So 200712 means
  6662. December year 2007. Years in the range 1938-2037 can also be
  6663. written as 2-digit years."
  6664. (interactive "P")
  6665. (when year
  6666. (setq year (org-small-year-to-year year)))
  6667. (if (y-or-n-p "Are you sure you want to compute the agenda for an entire year? ")
  6668. (org-agenda-change-time-span 'year year)
  6669. (error "Abort")))
  6670. (defun org-agenda-change-time-span (span &optional n)
  6671. "Change the agenda view to SPAN.
  6672. SPAN may be `day', `week', `month', `year'."
  6673. (org-agenda-check-type t 'agenda)
  6674. (let* ((args (get-text-property (point) 'org-last-args))
  6675. (curspan (nth 2 args)))
  6676. (if (and (not n) (equal curspan span))
  6677. (error "Viewing span is already \"%s\"" span))
  6678. (let* ((sd (or (org-get-at-bol 'day)
  6679. (nth 1 args)
  6680. org-starting-day))
  6681. (sd (org-agenda-compute-starting-span sd span n))
  6682. (org-agenda-overriding-cmd
  6683. (get-text-property (point) 'org-serie-cmd))
  6684. (org-agenda-overriding-arguments
  6685. (list (car args) sd span)))
  6686. (org-agenda-redo)
  6687. (org-agenda-find-same-or-today-or-agenda))
  6688. (org-agenda-set-mode-name)
  6689. (message "Switched to %s view" span)))
  6690. (defun org-agenda-compute-starting-span (sd span &optional n)
  6691. "Compute starting date for agenda.
  6692. SPAN may be `day', `week', `month', `year'. The return value
  6693. is a cons cell with the starting date and the number of days,
  6694. so that the date SD will be in that range."
  6695. (let* ((greg (calendar-gregorian-from-absolute sd))
  6696. (dg (nth 1 greg))
  6697. (mg (car greg))
  6698. (yg (nth 2 greg)))
  6699. (cond
  6700. ((eq span 'day)
  6701. (when n
  6702. (setq sd (+ (calendar-absolute-from-gregorian
  6703. (list mg 1 yg))
  6704. n -1))))
  6705. ((eq span 'week)
  6706. (let* ((nt (calendar-day-of-week
  6707. (calendar-gregorian-from-absolute sd)))
  6708. (d (if org-agenda-start-on-weekday
  6709. (- nt org-agenda-start-on-weekday)
  6710. 0))
  6711. y1)
  6712. (setq sd (- sd (+ (if (< d 0) 7 0) d)))
  6713. (when n
  6714. (require 'cal-iso)
  6715. (when (> n 99)
  6716. (setq y1 (org-small-year-to-year (/ n 100))
  6717. n (mod n 100)))
  6718. (setq sd
  6719. (calendar-absolute-from-iso
  6720. (list n 1
  6721. (or y1 (nth 2 (calendar-iso-from-absolute sd)))))))))
  6722. ((eq span 'month)
  6723. (let (y1)
  6724. (when (and n (> n 99))
  6725. (setq y1 (org-small-year-to-year (/ n 100))
  6726. n (mod n 100)))
  6727. (setq sd (calendar-absolute-from-gregorian
  6728. (list (or n mg) 1 (or y1 yg))))))
  6729. ((eq span 'year)
  6730. (setq sd (calendar-absolute-from-gregorian
  6731. (list 1 1 (or n yg))))))
  6732. sd))
  6733. (defun org-agenda-next-date-line (&optional arg)
  6734. "Jump to the next line indicating a date in agenda buffer."
  6735. (interactive "p")
  6736. (org-agenda-check-type t 'agenda 'timeline)
  6737. (beginning-of-line 1)
  6738. ;; This does not work if user makes date format that starts with a blank
  6739. (if (looking-at "^\\S-") (forward-char 1))
  6740. (if (not (re-search-forward "^\\S-" nil t arg))
  6741. (progn
  6742. (backward-char 1)
  6743. (error "No next date after this line in this buffer")))
  6744. (goto-char (match-beginning 0)))
  6745. (defun org-agenda-previous-date-line (&optional arg)
  6746. "Jump to the previous line indicating a date in agenda buffer."
  6747. (interactive "p")
  6748. (org-agenda-check-type t 'agenda 'timeline)
  6749. (beginning-of-line 1)
  6750. (if (not (re-search-backward "^\\S-" nil t arg))
  6751. (error "No previous date before this line in this buffer")))
  6752. ;; Initialize the highlight
  6753. (defvar org-hl (make-overlay 1 1))
  6754. (overlay-put org-hl 'face 'highlight)
  6755. (defun org-highlight (begin end &optional buffer)
  6756. "Highlight a region with overlay."
  6757. (move-overlay org-hl begin end (or buffer (current-buffer))))
  6758. (defun org-unhighlight ()
  6759. "Detach overlay INDEX."
  6760. (org-detach-overlay org-hl))
  6761. (defun org-unhighlight-once ()
  6762. "Remove the highlight from its position, and this function from the hook."
  6763. (remove-hook 'pre-command-hook 'org-unhighlight-once)
  6764. (org-unhighlight))
  6765. (defun org-agenda-follow-mode ()
  6766. "Toggle follow mode in an agenda buffer."
  6767. (interactive)
  6768. (setq org-agenda-follow-mode (not org-agenda-follow-mode))
  6769. (org-agenda-set-mode-name)
  6770. (org-agenda-do-context-action)
  6771. (message "Follow mode is %s"
  6772. (if org-agenda-follow-mode "on" "off")))
  6773. (defun org-agenda-entry-text-mode (&optional arg)
  6774. "Toggle entry text mode in an agenda buffer."
  6775. (interactive "P")
  6776. (setq org-agenda-entry-text-mode (or (integerp arg)
  6777. (not org-agenda-entry-text-mode)))
  6778. (org-agenda-entry-text-hide)
  6779. (and org-agenda-entry-text-mode
  6780. (let ((org-agenda-entry-text-maxlines
  6781. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  6782. (org-agenda-entry-text-show)))
  6783. (org-agenda-set-mode-name)
  6784. (message "Entry text mode is %s. Maximum number of lines is %d"
  6785. (if org-agenda-entry-text-mode "on" "off")
  6786. (if (integerp arg) arg org-agenda-entry-text-maxlines)))
  6787. (defun org-agenda-clockreport-mode (&optional with-filter)
  6788. "Toggle clocktable mode in an agenda buffer.
  6789. With prefix arg WITH-FILTER, make the clocktable respect the current
  6790. agenda filter."
  6791. (interactive "P")
  6792. (org-agenda-check-type t 'agenda)
  6793. (if with-filter
  6794. (setq org-agenda-clockreport-mode 'with-filter)
  6795. (setq org-agenda-clockreport-mode (not org-agenda-clockreport-mode)))
  6796. (org-agenda-set-mode-name)
  6797. (org-agenda-redo)
  6798. (message "Clocktable mode is %s"
  6799. (if org-agenda-clockreport-mode "on" "off")))
  6800. (defun org-agenda-log-mode (&optional special)
  6801. "Toggle log mode in an agenda buffer.
  6802. With argument SPECIAL, show all possible log items, not only the ones
  6803. configured in `org-agenda-log-mode-items'.
  6804. With a double `C-u' prefix arg, show *only* log items, nothing else."
  6805. (interactive "P")
  6806. (org-agenda-check-type t 'agenda 'timeline)
  6807. (setq org-agenda-show-log
  6808. (cond
  6809. ((equal special '(16)) 'only)
  6810. ((eq special 'clockcheck)
  6811. (if (eq org-agenda-show-log 'clockcheck)
  6812. nil 'clockcheck))
  6813. (special '(closed clock state))
  6814. (t (not org-agenda-show-log))))
  6815. (org-agenda-set-mode-name)
  6816. (org-agenda-redo)
  6817. (message "Log mode is %s"
  6818. (if org-agenda-show-log "on" "off")))
  6819. (defun org-agenda-archives-mode (&optional with-files)
  6820. "Toggle inclusion of items in trees marked with :ARCHIVE:.
  6821. When called with a prefix argument, include all archive files as well."
  6822. (interactive "P")
  6823. (setq org-agenda-archives-mode
  6824. (if with-files t (if org-agenda-archives-mode nil 'trees)))
  6825. (org-agenda-set-mode-name)
  6826. (org-agenda-redo)
  6827. (message
  6828. "%s"
  6829. (cond
  6830. ((eq org-agenda-archives-mode nil)
  6831. "No archives are included")
  6832. ((eq org-agenda-archives-mode 'trees)
  6833. (format "Trees with :%s: tag are included" org-archive-tag))
  6834. ((eq org-agenda-archives-mode t)
  6835. (format "Trees with :%s: tag and all active archive files are included"
  6836. org-archive-tag)))))
  6837. (defun org-agenda-toggle-diary ()
  6838. "Toggle diary inclusion in an agenda buffer."
  6839. (interactive)
  6840. (org-agenda-check-type t 'agenda)
  6841. (setq org-agenda-include-diary (not org-agenda-include-diary))
  6842. (org-agenda-redo)
  6843. (org-agenda-set-mode-name)
  6844. (message "Diary inclusion turned %s"
  6845. (if org-agenda-include-diary "on" "off")))
  6846. (defun org-agenda-toggle-deadlines ()
  6847. "Toggle inclusion of entries with a deadline in an agenda buffer."
  6848. (interactive)
  6849. (org-agenda-check-type t 'agenda)
  6850. (setq org-agenda-include-deadlines (not org-agenda-include-deadlines))
  6851. (org-agenda-redo)
  6852. (org-agenda-set-mode-name)
  6853. (message "Deadlines inclusion turned %s"
  6854. (if org-agenda-include-deadlines "on" "off")))
  6855. (defun org-agenda-toggle-time-grid ()
  6856. "Toggle time grid in an agenda buffer."
  6857. (interactive)
  6858. (org-agenda-check-type t 'agenda)
  6859. (setq org-agenda-use-time-grid (not org-agenda-use-time-grid))
  6860. (org-agenda-redo)
  6861. (org-agenda-set-mode-name)
  6862. (message "Time-grid turned %s"
  6863. (if org-agenda-use-time-grid "on" "off")))
  6864. (defun org-agenda-set-mode-name ()
  6865. "Set the mode name to indicate all the small mode settings."
  6866. (setq mode-name
  6867. (list "Org-Agenda"
  6868. (if (get 'org-agenda-files 'org-restrict) " []" "")
  6869. " "
  6870. '(:eval (org-agenda-span-name org-agenda-current-span))
  6871. (if org-agenda-follow-mode " Follow" "")
  6872. (if org-agenda-entry-text-mode " ETxt" "")
  6873. (if org-agenda-include-diary " Diary" "")
  6874. (if org-agenda-include-deadlines " Ddl" "")
  6875. (if org-agenda-use-time-grid " Grid" "")
  6876. (if (and (boundp 'org-habit-show-habits)
  6877. org-habit-show-habits) " Habit" "")
  6878. (cond
  6879. ((consp org-agenda-show-log) " LogAll")
  6880. ((eq org-agenda-show-log 'clockcheck) " ClkCk")
  6881. (org-agenda-show-log " Log")
  6882. (t ""))
  6883. (if (or org-agenda-category-filter (get 'org-agenda-category-filter
  6884. :preset-filter))
  6885. '(:eval (org-propertize
  6886. (concat " <"
  6887. (mapconcat
  6888. 'identity
  6889. (append
  6890. (get 'org-agenda-category-filter :preset-filter)
  6891. org-agenda-category-filter)
  6892. "")
  6893. ">")
  6894. 'face 'org-agenda-filter-category
  6895. 'help-echo "Category used in filtering"))
  6896. "")
  6897. (if (or org-agenda-tag-filter (get 'org-agenda-tag-filter
  6898. :preset-filter))
  6899. '(:eval (org-propertize
  6900. (concat " {"
  6901. (mapconcat
  6902. 'identity
  6903. (append
  6904. (get 'org-agenda-tag-filter :preset-filter)
  6905. org-agenda-tag-filter)
  6906. "")
  6907. "}")
  6908. 'face 'org-agenda-filter-tags
  6909. 'help-echo "Tags used in filtering"))
  6910. "")
  6911. (if org-agenda-archives-mode
  6912. (if (eq org-agenda-archives-mode t)
  6913. " Archives"
  6914. (format " :%s:" org-archive-tag))
  6915. "")
  6916. (if org-agenda-clockreport-mode
  6917. (if (eq org-agenda-clockreport-mode 'with-filter)
  6918. " Clock{}" " Clock")
  6919. "")))
  6920. (force-mode-line-update))
  6921. (defun org-agenda-post-command-hook ()
  6922. (setq org-agenda-type
  6923. (or (get-text-property (point) 'org-agenda-type)
  6924. (get-text-property (max (point-min) (1- (point)))
  6925. 'org-agenda-type))))
  6926. (defun org-agenda-next-line ()
  6927. "Move cursor to the next line, and show if follow mode is active."
  6928. (interactive)
  6929. (call-interactively 'next-line)
  6930. (org-agenda-do-context-action))
  6931. (defun org-agenda-previous-line ()
  6932. "Move cursor to the previous line, and show if follow-mode is active."
  6933. (interactive)
  6934. (call-interactively 'previous-line)
  6935. (org-agenda-do-context-action))
  6936. (defun org-agenda-next-item (n)
  6937. "Move cursor to next agenda item."
  6938. (interactive "p")
  6939. (let ((col (current-column)))
  6940. (dotimes (c n)
  6941. (when (next-single-property-change (point-at-eol) 'org-marker)
  6942. (move-end-of-line 1)
  6943. (goto-char (next-single-property-change (point) 'org-marker))))
  6944. (org-move-to-column col))
  6945. (org-agenda-do-context-action))
  6946. (defun org-agenda-previous-item (n)
  6947. "Move cursor to next agenda item."
  6948. (interactive "p")
  6949. (dotimes (c n)
  6950. (let ((col (current-column))
  6951. (goto (save-excursion
  6952. (move-end-of-line 0)
  6953. (previous-single-property-change (point) 'org-marker))))
  6954. (if goto (goto-char goto))
  6955. (org-move-to-column col)))
  6956. (org-agenda-do-context-action))
  6957. (defun org-agenda-do-context-action ()
  6958. "Show outline path and, maybe, follow mode window."
  6959. (let ((m (org-get-at-bol 'org-marker)))
  6960. (when (and (markerp m) (marker-buffer m))
  6961. (and org-agenda-follow-mode
  6962. (if org-agenda-follow-indirect
  6963. (org-agenda-tree-to-indirect-buffer)
  6964. (org-agenda-show)))
  6965. (and org-agenda-show-outline-path
  6966. (org-with-point-at m (org-display-outline-path t))))))
  6967. (defun org-agenda-show-priority ()
  6968. "Show the priority of the current item.
  6969. This priority is composed of the main priority given with the [#A] cookies,
  6970. and by additional input from the age of a schedules or deadline entry."
  6971. (interactive)
  6972. (let* ((pri (org-get-at-bol 'priority)))
  6973. (message "Priority is %d" (if pri pri -1000))))
  6974. (defun org-agenda-show-tags ()
  6975. "Show the tags applicable to the current item."
  6976. (interactive)
  6977. (let* ((tags (org-get-at-bol 'tags)))
  6978. (if tags
  6979. (message "Tags are :%s:"
  6980. (org-no-properties (mapconcat 'identity tags ":")))
  6981. (message "No tags associated with this line"))))
  6982. (defun org-agenda-goto (&optional highlight)
  6983. "Go to the Org-mode file which contains the item at point."
  6984. (interactive)
  6985. (let* ((marker (or (org-get-at-bol 'org-marker)
  6986. (org-agenda-error)))
  6987. (buffer (marker-buffer marker))
  6988. (pos (marker-position marker)))
  6989. (switch-to-buffer-other-window buffer)
  6990. (widen)
  6991. (push-mark)
  6992. (goto-char pos)
  6993. (when (derived-mode-p 'org-mode)
  6994. (org-show-context 'agenda)
  6995. (save-excursion
  6996. (and (outline-next-heading)
  6997. (org-flag-heading nil)))) ; show the next heading
  6998. (when (outline-invisible-p)
  6999. (show-entry)) ; display invisible text
  7000. (recenter (/ (window-height) 2))
  7001. (run-hooks 'org-agenda-after-show-hook)
  7002. (and highlight (org-highlight (point-at-bol) (point-at-eol)))))
  7003. (defvar org-agenda-after-show-hook nil
  7004. "Normal hook run after an item has been shown from the agenda.
  7005. Point is in the buffer where the item originated.")
  7006. (defun org-agenda-kill ()
  7007. "Kill the entry or subtree belonging to the current agenda entry."
  7008. (interactive)
  7009. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7010. (let* ((bufname-orig (buffer-name))
  7011. (marker (or (org-get-at-bol 'org-marker)
  7012. (org-agenda-error)))
  7013. (buffer (marker-buffer marker))
  7014. (pos (marker-position marker))
  7015. (type (org-get-at-bol 'type))
  7016. dbeg dend (n 0) conf)
  7017. (org-with-remote-undo buffer
  7018. (with-current-buffer buffer
  7019. (save-excursion
  7020. (goto-char pos)
  7021. (if (and (derived-mode-p 'org-mode) (not (member type '("sexp"))))
  7022. (setq dbeg (progn (org-back-to-heading t) (point))
  7023. dend (org-end-of-subtree t t))
  7024. (setq dbeg (point-at-bol)
  7025. dend (min (point-max) (1+ (point-at-eol)))))
  7026. (goto-char dbeg)
  7027. (while (re-search-forward "^[ \t]*\\S-" dend t) (setq n (1+ n)))))
  7028. (setq conf (or (eq t org-agenda-confirm-kill)
  7029. (and (numberp org-agenda-confirm-kill)
  7030. (> n org-agenda-confirm-kill))))
  7031. (and conf
  7032. (not (y-or-n-p
  7033. (format "Delete entry with %d lines in buffer \"%s\"? "
  7034. n (buffer-name buffer))))
  7035. (error "Abort"))
  7036. (let ((org-agenda-buffer-name bufname-orig))
  7037. (org-remove-subtree-entries-from-agenda buffer dbeg dend))
  7038. (with-current-buffer buffer (delete-region dbeg dend))
  7039. (message "Agenda item and source killed"))))
  7040. (defvar org-archive-default-command) ; defined in org-archive.el
  7041. (defun org-agenda-archive-default ()
  7042. "Archive the entry or subtree belonging to the current agenda entry."
  7043. (interactive)
  7044. (require 'org-archive)
  7045. (org-agenda-archive-with org-archive-default-command))
  7046. (defun org-agenda-archive-default-with-confirmation ()
  7047. "Archive the entry or subtree belonging to the current agenda entry."
  7048. (interactive)
  7049. (require 'org-archive)
  7050. (org-agenda-archive-with org-archive-default-command 'confirm))
  7051. (defun org-agenda-archive ()
  7052. "Archive the entry or subtree belonging to the current agenda entry."
  7053. (interactive)
  7054. (org-agenda-archive-with 'org-archive-subtree))
  7055. (defun org-agenda-archive-to-archive-sibling ()
  7056. "Move the entry to the archive sibling."
  7057. (interactive)
  7058. (org-agenda-archive-with 'org-archive-to-archive-sibling))
  7059. (defun org-agenda-archive-with (cmd &optional confirm)
  7060. "Move the entry to the archive sibling."
  7061. (interactive)
  7062. (or (eq major-mode 'org-agenda-mode) (error "Not in agenda"))
  7063. (let* ((bufname-orig (buffer-name))
  7064. (marker (or (org-get-at-bol 'org-marker)
  7065. (org-agenda-error)))
  7066. (buffer (marker-buffer marker))
  7067. (pos (marker-position marker)))
  7068. (org-with-remote-undo buffer
  7069. (with-current-buffer buffer
  7070. (if (derived-mode-p 'org-mode)
  7071. (if (and confirm
  7072. (not (y-or-n-p "Archive this subtree or entry? ")))
  7073. (error "Abort")
  7074. (save-excursion
  7075. (goto-char pos)
  7076. (let ((org-agenda-buffer-name bufname-orig))
  7077. (org-remove-subtree-entries-from-agenda))
  7078. (org-back-to-heading t)
  7079. (funcall cmd)))
  7080. (error "Archiving works only in Org-mode files"))))))
  7081. (defun org-remove-subtree-entries-from-agenda (&optional buf beg end)
  7082. "Remove all lines in the agenda that correspond to a given subtree.
  7083. The subtree is the one in buffer BUF, starting at BEG and ending at END.
  7084. If this information is not given, the function uses the tree at point."
  7085. (let ((buf (or buf (current-buffer))) m p)
  7086. (save-excursion
  7087. (unless (and beg end)
  7088. (org-back-to-heading t)
  7089. (setq beg (point))
  7090. (org-end-of-subtree t)
  7091. (setq end (point)))
  7092. (set-buffer (get-buffer org-agenda-buffer-name))
  7093. (save-excursion
  7094. (goto-char (point-max))
  7095. (beginning-of-line 1)
  7096. (while (not (bobp))
  7097. (when (and (setq m (org-get-at-bol 'org-marker))
  7098. (equal buf (marker-buffer m))
  7099. (setq p (marker-position m))
  7100. (>= p beg)
  7101. (< p end))
  7102. (let ((inhibit-read-only t))
  7103. (delete-region (point-at-bol) (1+ (point-at-eol)))))
  7104. (beginning-of-line 0))))))
  7105. (defun org-agenda-refile (&optional goto rfloc no-update)
  7106. "Refile the item at point."
  7107. (interactive "P")
  7108. (if (equal goto '(16))
  7109. (org-refile-goto-last-stored)
  7110. (let* ((buffer-orig (buffer-name))
  7111. (marker (or (org-get-at-bol 'org-hd-marker)
  7112. (org-agenda-error)))
  7113. (buffer (marker-buffer marker))
  7114. (pos (marker-position marker))
  7115. (rfloc (or rfloc
  7116. (org-refile-get-location
  7117. (if goto "Goto" "Refile to") buffer
  7118. org-refile-allow-creating-parent-nodes))))
  7119. (with-current-buffer buffer
  7120. (save-excursion
  7121. (save-restriction
  7122. (widen)
  7123. (goto-char marker)
  7124. (let ((org-agenda-buffer-name buffer-orig))
  7125. (org-remove-subtree-entries-from-agenda))
  7126. (org-refile goto buffer rfloc)))))
  7127. (unless no-update (org-agenda-redo))))
  7128. (defun org-agenda-open-link (&optional arg)
  7129. "Follow the link in the current line, if any.
  7130. This looks for a link in the displayed line in the agenda. It also looks
  7131. at the text of the entry itself."
  7132. (interactive "P")
  7133. (let* ((marker (or (org-get-at-bol 'org-hd-marker)
  7134. (org-get-at-bol 'org-marker)))
  7135. (buffer (and marker (marker-buffer marker)))
  7136. (prefix (buffer-substring
  7137. (point-at-bol) (point-at-eol))))
  7138. (cond
  7139. (buffer
  7140. (with-current-buffer buffer
  7141. (save-excursion
  7142. (save-restriction
  7143. (widen)
  7144. (goto-char marker)
  7145. (org-offer-links-in-entry arg prefix)))))
  7146. ((or (org-in-regexp (concat "\\(" org-bracket-link-regexp "\\)"))
  7147. (save-excursion
  7148. (beginning-of-line 1)
  7149. (looking-at (concat ".*?\\(" org-bracket-link-regexp "\\)"))))
  7150. (org-open-link-from-string (match-string 1)))
  7151. (t (error "No link to open here")))))
  7152. (defun org-agenda-copy-local-variable (var)
  7153. "Get a variable from a referenced buffer and install it here."
  7154. (let ((m (org-get-at-bol 'org-marker)))
  7155. (when (and m (buffer-live-p (marker-buffer m)))
  7156. (org-set-local var (with-current-buffer (marker-buffer m)
  7157. (symbol-value var))))))
  7158. (defun org-agenda-switch-to (&optional delete-other-windows)
  7159. "Go to the Org-mode file which contains the item at point."
  7160. (interactive)
  7161. (if (and org-return-follows-link
  7162. (not (org-get-at-bol 'org-marker))
  7163. (org-in-regexp org-bracket-link-regexp))
  7164. (org-open-link-from-string (match-string 0))
  7165. (let* ((marker (or (org-get-at-bol 'org-marker)
  7166. (org-agenda-error)))
  7167. (buffer (marker-buffer marker))
  7168. (pos (marker-position marker)))
  7169. (org-pop-to-buffer-same-window buffer)
  7170. (and delete-other-windows (delete-other-windows))
  7171. (widen)
  7172. (goto-char pos)
  7173. (when (derived-mode-p 'org-mode)
  7174. (org-show-context 'agenda)
  7175. (save-excursion
  7176. (and (outline-next-heading)
  7177. (org-flag-heading nil))) ; show the next heading
  7178. (when (outline-invisible-p)
  7179. (show-entry)) ; display invisible text
  7180. (run-hooks 'org-agenda-after-show-hook)))))
  7181. (defun org-agenda-goto-mouse (ev)
  7182. "Go to the Org-mode file which contains the item at the mouse click."
  7183. (interactive "e")
  7184. (mouse-set-point ev)
  7185. (org-agenda-goto))
  7186. (defun org-agenda-show (&optional full-entry)
  7187. "Display the Org-mode file which contains the item at point.
  7188. With prefix argument FULL-ENTRY, make the entire entry visible
  7189. if it was hidden in the outline."
  7190. (interactive "P")
  7191. (let ((win (selected-window)))
  7192. (if full-entry
  7193. (let ((org-show-entry-below t))
  7194. (org-agenda-goto t))
  7195. (org-agenda-goto t))
  7196. (select-window win)))
  7197. (defvar org-agenda-show-window nil)
  7198. (defun org-agenda-show-and-scroll-up (&optional arg)
  7199. "Display the Org-mode file which contains the item at point.
  7200. When called repeatedly, scroll the window that is displaying the buffer.
  7201. With a \\[universal-argument] prefix, use `org-show-entry' instead of
  7202. `show-subtree' to display the item, so that drawers and logbooks stay
  7203. folded."
  7204. (interactive "P")
  7205. (let ((win (selected-window)))
  7206. (if (and (window-live-p org-agenda-show-window)
  7207. (eq this-command last-command))
  7208. (progn
  7209. (select-window org-agenda-show-window)
  7210. (ignore-errors (scroll-up)))
  7211. (org-agenda-goto t)
  7212. (if arg (org-show-entry) (show-subtree))
  7213. (setq org-agenda-show-window (selected-window)))
  7214. (select-window win)))
  7215. (defun org-agenda-show-scroll-down ()
  7216. "Scroll down the window showing the agenda."
  7217. (interactive)
  7218. (let ((win (selected-window)))
  7219. (when (window-live-p org-agenda-show-window)
  7220. (select-window org-agenda-show-window)
  7221. (ignore-errors (scroll-down))
  7222. (select-window win))))
  7223. (defun org-agenda-show-1 (&optional more)
  7224. "Display the Org-mode file which contains the item at point.
  7225. The prefix arg selects the amount of information to display:
  7226. 0 hide the subtree
  7227. 1 just show the entry according to defaults.
  7228. 2 show the children view
  7229. 3 show the subtree view
  7230. 4 show the entire subtree and any LOGBOOK drawers
  7231. 5 show the entire subtree and any drawers
  7232. With prefix argument FULL-ENTRY, make the entire entry visible
  7233. if it was hidden in the outline."
  7234. (interactive "p")
  7235. (let ((win (selected-window)))
  7236. (org-agenda-goto t)
  7237. (org-recenter-heading 1)
  7238. (cond
  7239. ((= more 0)
  7240. (hide-subtree)
  7241. (save-excursion
  7242. (org-back-to-heading)
  7243. (run-hook-with-args 'org-cycle-hook 'folded))
  7244. (message "Remote: FOLDED"))
  7245. ((and (org-called-interactively-p 'any) (= more 1))
  7246. (message "Remote: show with default settings"))
  7247. ((= more 2)
  7248. (show-entry)
  7249. (show-children)
  7250. (save-excursion
  7251. (org-back-to-heading)
  7252. (run-hook-with-args 'org-cycle-hook 'children))
  7253. (message "Remote: CHILDREN"))
  7254. ((= more 3)
  7255. (show-subtree)
  7256. (save-excursion
  7257. (org-back-to-heading)
  7258. (run-hook-with-args 'org-cycle-hook 'subtree))
  7259. (message "Remote: SUBTREE"))
  7260. ((= more 4)
  7261. (let* ((org-drawers (delete "LOGBOOK" (copy-sequence org-drawers)))
  7262. (org-drawer-regexp
  7263. (concat "^[ \t]*:\\("
  7264. (mapconcat 'regexp-quote org-drawers "\\|")
  7265. "\\):[ \t]*$")))
  7266. (show-subtree)
  7267. (save-excursion
  7268. (org-back-to-heading)
  7269. (org-cycle-hide-drawers 'subtree)))
  7270. (message "Remote: SUBTREE AND LOGBOOK"))
  7271. ((> more 4)
  7272. (show-subtree)
  7273. (message "Remote: SUBTREE AND ALL DRAWERS")))
  7274. (select-window win)))
  7275. (defun org-recenter-heading (n)
  7276. (save-excursion
  7277. (org-back-to-heading)
  7278. (recenter n)))
  7279. (defvar org-agenda-cycle-counter nil)
  7280. (defun org-agenda-cycle-show (&optional n)
  7281. "Show the current entry in another window, with default settings.
  7282. Default settings are taken from `org-show-hierarchy-above' and siblings.
  7283. When use repeatedly in immediate succession, the remote entry will cycle
  7284. through visibility
  7285. children -> subtree -> folded
  7286. When called with a numeric prefix arg, that arg will be passed through to
  7287. `org-agenda-show-1'. For the interpretation of that argument, see the
  7288. docstring of `org-agenda-show-1'."
  7289. (interactive "P")
  7290. (if (integerp n)
  7291. (setq org-agenda-cycle-counter n)
  7292. (if (not (eq last-command this-command))
  7293. (setq org-agenda-cycle-counter 1)
  7294. (if (equal org-agenda-cycle-counter 0)
  7295. (setq org-agenda-cycle-counter 2)
  7296. (setq org-agenda-cycle-counter (1+ org-agenda-cycle-counter))
  7297. (if (> org-agenda-cycle-counter 3)
  7298. (setq org-agenda-cycle-counter 0)))))
  7299. (org-agenda-show-1 org-agenda-cycle-counter))
  7300. (defun org-agenda-recenter (arg)
  7301. "Display the Org-mode file which contains the item at point and recenter."
  7302. (interactive "P")
  7303. (let ((win (selected-window)))
  7304. (org-agenda-goto t)
  7305. (recenter arg)
  7306. (select-window win)))
  7307. (defun org-agenda-show-mouse (ev)
  7308. "Display the Org-mode file which contains the item at the mouse click."
  7309. (interactive "e")
  7310. (mouse-set-point ev)
  7311. (org-agenda-show))
  7312. (defun org-agenda-check-no-diary ()
  7313. "Check if the entry is a diary link and abort if yes."
  7314. (if (org-get-at-bol 'org-agenda-diary-link)
  7315. (org-agenda-error)))
  7316. (defun org-agenda-error ()
  7317. (error "Command not allowed in this line"))
  7318. (defun org-agenda-tree-to-indirect-buffer ()
  7319. "Show the subtree corresponding to the current entry in an indirect buffer.
  7320. This calls the command `org-tree-to-indirect-buffer' from the original
  7321. Org-mode buffer.
  7322. With numerical prefix arg ARG, go up to this level and then take that tree.
  7323. With a \\[universal-argument] prefix, make a separate frame for this tree (i.e. don't
  7324. use the dedicated frame)."
  7325. (interactive)
  7326. (if (and current-prefix-arg (listp current-prefix-arg))
  7327. (org-agenda-do-tree-to-indirect-buffer)
  7328. (let ((agenda-window (selected-window))
  7329. (indirect-window
  7330. (and org-last-indirect-buffer
  7331. (get-buffer-window org-last-indirect-buffer))))
  7332. (save-window-excursion (org-agenda-do-tree-to-indirect-buffer))
  7333. (unwind-protect
  7334. (progn
  7335. (unless (and indirect-window (window-live-p indirect-window))
  7336. (setq indirect-window (split-window agenda-window)))
  7337. (select-window indirect-window)
  7338. (switch-to-buffer org-last-indirect-buffer :norecord)
  7339. (fit-window-to-buffer indirect-window))
  7340. (select-window (get-buffer-window org-agenda-buffer-name))))))
  7341. (defun org-agenda-do-tree-to-indirect-buffer ()
  7342. "Same as `org-agenda-tree-to-indirect-buffer' without saving window."
  7343. (org-agenda-check-no-diary)
  7344. (let* ((marker (or (org-get-at-bol 'org-marker)
  7345. (org-agenda-error)))
  7346. (buffer (marker-buffer marker))
  7347. (pos (marker-position marker)))
  7348. (with-current-buffer buffer
  7349. (save-excursion
  7350. (goto-char pos)
  7351. (call-interactively 'org-tree-to-indirect-buffer)))))
  7352. (defvar org-last-heading-marker (make-marker)
  7353. "Marker pointing to the headline that last changed its TODO state
  7354. by a remote command from the agenda.")
  7355. (defun org-agenda-todo-nextset ()
  7356. "Switch TODO entry to next sequence."
  7357. (interactive)
  7358. (org-agenda-todo 'nextset))
  7359. (defun org-agenda-todo-previousset ()
  7360. "Switch TODO entry to previous sequence."
  7361. (interactive)
  7362. (org-agenda-todo 'previousset))
  7363. (defun org-agenda-todo (&optional arg)
  7364. "Cycle TODO state of line at point, also in Org-mode file.
  7365. This changes the line at point, all other lines in the agenda referring to
  7366. the same tree node, and the headline of the tree node in the Org-mode file."
  7367. (interactive "P")
  7368. (org-agenda-check-no-diary)
  7369. (let* ((col (current-column))
  7370. (marker (or (org-get-at-bol 'org-marker)
  7371. (org-agenda-error)))
  7372. (buffer (marker-buffer marker))
  7373. (pos (marker-position marker))
  7374. (hdmarker (org-get-at-bol 'org-hd-marker))
  7375. (todayp (org-agenda-todayp (org-get-at-bol 'day)))
  7376. (inhibit-read-only t)
  7377. org-agenda-headline-snapshot-before-repeat newhead just-one)
  7378. (org-with-remote-undo buffer
  7379. (with-current-buffer buffer
  7380. (widen)
  7381. (goto-char pos)
  7382. (org-show-context 'agenda)
  7383. (save-excursion
  7384. (and (outline-next-heading)
  7385. (org-flag-heading nil))) ; show the next heading
  7386. (let ((current-prefix-arg arg))
  7387. (call-interactively 'org-todo))
  7388. (and (bolp) (forward-char 1))
  7389. (setq newhead (org-get-heading))
  7390. (when (and (org-bound-and-true-p
  7391. org-agenda-headline-snapshot-before-repeat)
  7392. (not (equal org-agenda-headline-snapshot-before-repeat
  7393. newhead))
  7394. todayp)
  7395. (setq newhead org-agenda-headline-snapshot-before-repeat
  7396. just-one t))
  7397. (save-excursion
  7398. (org-back-to-heading)
  7399. (move-marker org-last-heading-marker (point))))
  7400. (beginning-of-line 1)
  7401. (save-excursion
  7402. (org-agenda-change-all-lines newhead hdmarker 'fixface just-one))
  7403. (org-move-to-column col))))
  7404. (defun org-agenda-add-note (&optional arg)
  7405. "Add a time-stamped note to the entry at point."
  7406. (interactive "P")
  7407. (org-agenda-check-no-diary)
  7408. (let* ((marker (or (org-get-at-bol 'org-marker)
  7409. (org-agenda-error)))
  7410. (buffer (marker-buffer marker))
  7411. (pos (marker-position marker))
  7412. (hdmarker (org-get-at-bol 'org-hd-marker))
  7413. (inhibit-read-only t))
  7414. (with-current-buffer buffer
  7415. (widen)
  7416. (goto-char pos)
  7417. (org-show-context 'agenda)
  7418. (save-excursion
  7419. (and (outline-next-heading)
  7420. (org-flag-heading nil))) ; show the next heading
  7421. (org-add-note))))
  7422. (defun org-agenda-change-all-lines (newhead hdmarker
  7423. &optional fixface just-this)
  7424. "Change all lines in the agenda buffer which match HDMARKER.
  7425. The new content of the line will be NEWHEAD (as modified by
  7426. `org-agenda-format-item'). HDMARKER is checked with
  7427. `equal' against all `org-hd-marker' text properties in the file.
  7428. If FIXFACE is non-nil, the face of each item is modified according to
  7429. the new TODO state.
  7430. If JUST-THIS is non-nil, change just the current line, not all.
  7431. If FORCE-TAGS is non nil, the car of it returns the new tags."
  7432. (let* ((inhibit-read-only t)
  7433. (line (org-current-line))
  7434. (org-agenda-buffer (current-buffer))
  7435. (thetags (with-current-buffer (marker-buffer hdmarker)
  7436. (save-excursion (save-restriction (widen)
  7437. (goto-char hdmarker)
  7438. (org-get-tags-at)))))
  7439. props m pl undone-face done-face finish new dotime cat tags)
  7440. (save-excursion
  7441. (goto-char (point-max))
  7442. (beginning-of-line 1)
  7443. (while (not finish)
  7444. (setq finish (bobp))
  7445. (when (and (setq m (org-get-at-bol 'org-hd-marker))
  7446. (or (not just-this) (= (org-current-line) line))
  7447. (equal m hdmarker))
  7448. (setq props (text-properties-at (point))
  7449. dotime (org-get-at-bol 'dotime)
  7450. cat (org-get-at-bol 'org-category)
  7451. tags thetags
  7452. new
  7453. (let ((org-prefix-format-compiled
  7454. (or (get-text-property (point) 'format)
  7455. org-prefix-format-compiled))
  7456. (extra (org-get-at-bol 'extra)))
  7457. (with-current-buffer (marker-buffer hdmarker)
  7458. (save-excursion
  7459. (save-restriction
  7460. (widen)
  7461. (org-agenda-format-item extra newhead cat tags dotime)))))
  7462. pl (text-property-any (point-at-bol) (point-at-eol) 'org-heading t)
  7463. undone-face (org-get-at-bol 'undone-face)
  7464. done-face (org-get-at-bol 'done-face))
  7465. (beginning-of-line 1)
  7466. (cond
  7467. ((equal new "")
  7468. (and (looking-at ".*\n?") (replace-match "")))
  7469. ((looking-at ".*")
  7470. (replace-match new t t)
  7471. (beginning-of-line 1)
  7472. (add-text-properties (point-at-bol) (point-at-eol) props)
  7473. (when fixface
  7474. (add-text-properties
  7475. (point-at-bol) (point-at-eol)
  7476. (list 'face
  7477. (if org-last-todo-state-is-todo
  7478. undone-face done-face))))
  7479. (org-agenda-highlight-todo 'line)
  7480. (beginning-of-line 1))
  7481. (t (error "Line update did not work"))))
  7482. (beginning-of-line 0)))
  7483. (org-agenda-finalize)))
  7484. (defun org-agenda-align-tags (&optional line)
  7485. "Align all tags in agenda items to `org-agenda-tags-column'."
  7486. (let ((inhibit-read-only t) l c)
  7487. (save-excursion
  7488. (goto-char (if line (point-at-bol) (point-min)))
  7489. (while (re-search-forward (org-re "\\([ \t]+\\)\\(:[[:alnum:]_@#%:]+:\\)[ \t]*$")
  7490. (if line (point-at-eol) nil) t)
  7491. (add-text-properties
  7492. (match-beginning 2) (match-end 2)
  7493. (list 'face (delq nil (let ((prop (get-text-property
  7494. (match-beginning 2) 'face)))
  7495. (or (listp prop) (setq prop (list prop)))
  7496. (if (memq 'org-tag prop)
  7497. prop
  7498. (cons 'org-tag prop))))))
  7499. (setq l (- (match-end 2) (match-beginning 2))
  7500. c (if (< org-agenda-tags-column 0)
  7501. (- (abs org-agenda-tags-column) l)
  7502. org-agenda-tags-column))
  7503. (delete-region (match-beginning 1) (match-end 1))
  7504. (goto-char (match-beginning 1))
  7505. (insert (org-add-props
  7506. (make-string (max 1 (- c (current-column))) ?\ )
  7507. (plist-put (copy-sequence (text-properties-at (point)))
  7508. 'face nil))))
  7509. (goto-char (point-min))
  7510. (org-font-lock-add-tag-faces (point-max)))))
  7511. (defun org-agenda-priority-up ()
  7512. "Increase the priority of line at point, also in Org-mode file."
  7513. (interactive)
  7514. (org-agenda-priority 'up))
  7515. (defun org-agenda-priority-down ()
  7516. "Decrease the priority of line at point, also in Org-mode file."
  7517. (interactive)
  7518. (org-agenda-priority 'down))
  7519. (defun org-agenda-priority (&optional force-direction)
  7520. "Set the priority of line at point, also in Org-mode file.
  7521. This changes the line at point, all other lines in the agenda referring to
  7522. the same tree node, and the headline of the tree node in the Org-mode file."
  7523. (interactive)
  7524. (unless org-enable-priority-commands
  7525. (error "Priority commands are disabled"))
  7526. (org-agenda-check-no-diary)
  7527. (let* ((marker (or (org-get-at-bol 'org-marker)
  7528. (org-agenda-error)))
  7529. (hdmarker (org-get-at-bol 'org-hd-marker))
  7530. (buffer (marker-buffer hdmarker))
  7531. (pos (marker-position hdmarker))
  7532. (inhibit-read-only t)
  7533. newhead)
  7534. (org-with-remote-undo buffer
  7535. (with-current-buffer buffer
  7536. (widen)
  7537. (goto-char pos)
  7538. (org-show-context 'agenda)
  7539. (save-excursion
  7540. (and (outline-next-heading)
  7541. (org-flag-heading nil))) ; show the next heading
  7542. (funcall 'org-priority force-direction)
  7543. (end-of-line 1)
  7544. (setq newhead (org-get-heading)))
  7545. (org-agenda-change-all-lines newhead hdmarker)
  7546. (beginning-of-line 1))))
  7547. ;; FIXME: should fix the tags property of the agenda line.
  7548. (defun org-agenda-set-tags (&optional tag onoff)
  7549. "Set tags for the current headline."
  7550. (interactive)
  7551. (org-agenda-check-no-diary)
  7552. (if (and (org-region-active-p) (org-called-interactively-p 'any))
  7553. (call-interactively 'org-change-tag-in-region)
  7554. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  7555. (org-agenda-error)))
  7556. (buffer (marker-buffer hdmarker))
  7557. (pos (marker-position hdmarker))
  7558. (inhibit-read-only t)
  7559. newhead)
  7560. (org-with-remote-undo buffer
  7561. (with-current-buffer buffer
  7562. (widen)
  7563. (goto-char pos)
  7564. (save-excursion
  7565. (org-show-context 'agenda))
  7566. (save-excursion
  7567. (and (outline-next-heading)
  7568. (org-flag-heading nil))) ; show the next heading
  7569. (goto-char pos)
  7570. (if tag
  7571. (org-toggle-tag tag onoff)
  7572. (call-interactively 'org-set-tags))
  7573. (end-of-line 1)
  7574. (setq newhead (org-get-heading)))
  7575. (org-agenda-change-all-lines newhead hdmarker)
  7576. (beginning-of-line 1)))))
  7577. (defun org-agenda-set-property ()
  7578. "Set a property for the current headline."
  7579. (interactive)
  7580. (org-agenda-check-no-diary)
  7581. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  7582. (org-agenda-error)))
  7583. (buffer (marker-buffer hdmarker))
  7584. (pos (marker-position hdmarker))
  7585. (inhibit-read-only t)
  7586. newhead)
  7587. (org-with-remote-undo buffer
  7588. (with-current-buffer buffer
  7589. (widen)
  7590. (goto-char pos)
  7591. (save-excursion
  7592. (org-show-context 'agenda))
  7593. (save-excursion
  7594. (and (outline-next-heading)
  7595. (org-flag-heading nil))) ; show the next heading
  7596. (goto-char pos)
  7597. (call-interactively 'org-set-property)))))
  7598. (defun org-agenda-set-effort ()
  7599. "Set the effort property for the current headline."
  7600. (interactive)
  7601. (org-agenda-check-no-diary)
  7602. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  7603. (org-agenda-error)))
  7604. (buffer (marker-buffer hdmarker))
  7605. (pos (marker-position hdmarker))
  7606. (inhibit-read-only t)
  7607. newhead)
  7608. (org-with-remote-undo buffer
  7609. (with-current-buffer buffer
  7610. (widen)
  7611. (goto-char pos)
  7612. (save-excursion
  7613. (org-show-context 'agenda))
  7614. (save-excursion
  7615. (and (outline-next-heading)
  7616. (org-flag-heading nil))) ; show the next heading
  7617. (goto-char pos)
  7618. (call-interactively 'org-set-effort)
  7619. (end-of-line 1)
  7620. (setq newhead (org-get-heading)))
  7621. (org-agenda-change-all-lines newhead hdmarker))))
  7622. (defun org-agenda-toggle-archive-tag ()
  7623. "Toggle the archive tag for the current entry."
  7624. (interactive)
  7625. (org-agenda-check-no-diary)
  7626. (let* ((hdmarker (or (org-get-at-bol 'org-hd-marker)
  7627. (org-agenda-error)))
  7628. (buffer (marker-buffer hdmarker))
  7629. (pos (marker-position hdmarker))
  7630. (inhibit-read-only t)
  7631. newhead)
  7632. (org-with-remote-undo buffer
  7633. (with-current-buffer buffer
  7634. (widen)
  7635. (goto-char pos)
  7636. (org-show-context 'agenda)
  7637. (save-excursion
  7638. (and (outline-next-heading)
  7639. (org-flag-heading nil))) ; show the next heading
  7640. (call-interactively 'org-toggle-archive-tag)
  7641. (end-of-line 1)
  7642. (setq newhead (org-get-heading)))
  7643. (org-agenda-change-all-lines newhead hdmarker)
  7644. (beginning-of-line 1))))
  7645. (defun org-agenda-do-date-later (arg)
  7646. (interactive "P")
  7647. (cond
  7648. ((or (equal arg '(16))
  7649. (memq last-command
  7650. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  7651. (setq this-command 'org-agenda-date-later-minutes)
  7652. (org-agenda-date-later-minutes 1))
  7653. ((or (equal arg '(4))
  7654. (memq last-command
  7655. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  7656. (setq this-command 'org-agenda-date-later-hours)
  7657. (org-agenda-date-later-hours 1))
  7658. (t
  7659. (org-agenda-date-later (prefix-numeric-value arg)))))
  7660. (defun org-agenda-do-date-earlier (arg)
  7661. (interactive "P")
  7662. (cond
  7663. ((or (equal arg '(16))
  7664. (memq last-command
  7665. '(org-agenda-date-later-minutes org-agenda-date-earlier-minutes)))
  7666. (setq this-command 'org-agenda-date-earlier-minutes)
  7667. (org-agenda-date-earlier-minutes 1))
  7668. ((or (equal arg '(4))
  7669. (memq last-command
  7670. '(org-agenda-date-later-hours org-agenda-date-earlier-hours)))
  7671. (setq this-command 'org-agenda-date-earlier-hours)
  7672. (org-agenda-date-earlier-hours 1))
  7673. (t
  7674. (org-agenda-date-earlier (prefix-numeric-value arg)))))
  7675. (defun org-agenda-date-later (arg &optional what)
  7676. "Change the date of this item to ARG day(s) later."
  7677. (interactive "p")
  7678. (org-agenda-check-type t 'agenda 'timeline)
  7679. (org-agenda-check-no-diary)
  7680. (let* ((marker (or (org-get-at-bol 'org-marker)
  7681. (org-agenda-error)))
  7682. (buffer (marker-buffer marker))
  7683. (pos (marker-position marker))
  7684. cdate today)
  7685. (org-with-remote-undo buffer
  7686. (with-current-buffer buffer
  7687. (widen)
  7688. (goto-char pos)
  7689. (if (not (org-at-timestamp-p))
  7690. (error "Cannot find time stamp"))
  7691. (when (and org-agenda-move-date-from-past-immediately-to-today
  7692. (equal arg 1)
  7693. (or (not what) (eq what 'day))
  7694. (not (save-match-data (org-at-date-range-p))))
  7695. (setq cdate (org-parse-time-string (match-string 0) 'nodefault)
  7696. cdate (calendar-absolute-from-gregorian
  7697. (list (nth 4 cdate) (nth 3 cdate) (nth 5 cdate)))
  7698. today (org-today))
  7699. (if (> today cdate)
  7700. ;; immediately shift to today
  7701. (setq arg (- today cdate))))
  7702. (org-timestamp-change arg (or what 'day))
  7703. (when (and (org-at-date-range-p)
  7704. (re-search-backward org-tr-regexp-both (point-at-bol)))
  7705. (let ((end org-last-changed-timestamp))
  7706. (org-timestamp-change arg (or what 'day))
  7707. (setq org-last-changed-timestamp
  7708. (concat org-last-changed-timestamp "--" end)))))
  7709. (org-agenda-show-new-time marker org-last-changed-timestamp))
  7710. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  7711. (defun org-agenda-date-earlier (arg &optional what)
  7712. "Change the date of this item to ARG day(s) earlier."
  7713. (interactive "p")
  7714. (org-agenda-date-later (- arg) what))
  7715. (defun org-agenda-date-later-minutes (arg)
  7716. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  7717. (interactive "p")
  7718. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  7719. (org-agenda-date-later arg 'minute))
  7720. (defun org-agenda-date-earlier-minutes (arg)
  7721. "Change the time of this item, in units of `org-time-stamp-rounding-minutes'."
  7722. (interactive "p")
  7723. (setq arg (* arg (cadr org-time-stamp-rounding-minutes)))
  7724. (org-agenda-date-earlier arg 'minute))
  7725. (defun org-agenda-date-later-hours (arg)
  7726. "Change the time of this item, in hour steps."
  7727. (interactive "p")
  7728. (org-agenda-date-later arg 'hour))
  7729. (defun org-agenda-date-earlier-hours (arg)
  7730. "Change the time of this item, in hour steps."
  7731. (interactive "p")
  7732. (org-agenda-date-earlier arg 'hour))
  7733. (defun org-agenda-show-new-time (marker stamp &optional prefix)
  7734. "Show new date stamp via text properties."
  7735. ;; We use text properties to make this undoable
  7736. (let ((inhibit-read-only t)
  7737. (buffer-invisibility-spec))
  7738. (setq stamp (concat " " prefix " => " stamp))
  7739. (save-excursion
  7740. (goto-char (point-max))
  7741. (while (not (bobp))
  7742. (when (equal marker (org-get-at-bol 'org-marker))
  7743. (org-move-to-column (- (window-width) (length stamp)) t)
  7744. (org-agenda-fix-tags-filter-overlays-at (point))
  7745. (if (featurep 'xemacs)
  7746. ;; Use `duplicable' property to trigger undo recording
  7747. (let ((ex (make-extent nil nil))
  7748. (gl (make-glyph stamp)))
  7749. (set-glyph-face gl 'secondary-selection)
  7750. (set-extent-properties
  7751. ex (list 'invisible t 'end-glyph gl 'duplicable t))
  7752. (insert-extent ex (1- (point)) (point-at-eol)))
  7753. (add-text-properties
  7754. (1- (point)) (point-at-eol)
  7755. (list 'display (org-add-props stamp nil
  7756. 'face 'secondary-selection))))
  7757. (beginning-of-line 1))
  7758. (beginning-of-line 0)))))
  7759. (defun org-agenda-date-prompt (arg)
  7760. "Change the date of this item. Date is prompted for, with default today.
  7761. The prefix ARG is passed to the `org-time-stamp' command and can therefore
  7762. be used to request time specification in the time stamp."
  7763. (interactive "P")
  7764. (org-agenda-check-type t 'agenda 'timeline)
  7765. (org-agenda-check-no-diary)
  7766. (let* ((marker (or (org-get-at-bol 'org-marker)
  7767. (org-agenda-error)))
  7768. (buffer (marker-buffer marker))
  7769. (pos (marker-position marker)))
  7770. (org-with-remote-undo buffer
  7771. (with-current-buffer buffer
  7772. (widen)
  7773. (goto-char pos)
  7774. (if (not (org-at-timestamp-p t))
  7775. (error "Cannot find time stamp"))
  7776. (org-time-stamp arg (equal (char-after (match-beginning 0)) ?\[)))
  7777. (org-agenda-show-new-time marker org-last-changed-timestamp))
  7778. (message "Time stamp changed to %s" org-last-changed-timestamp)))
  7779. (defun org-agenda-schedule (arg &optional time)
  7780. "Schedule the item at point.
  7781. ARG is passed through to `org-schedule'."
  7782. (interactive "P")
  7783. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  7784. (org-agenda-check-no-diary)
  7785. (let* ((marker (or (org-get-at-bol 'org-marker)
  7786. (org-agenda-error)))
  7787. (type (marker-insertion-type marker))
  7788. (buffer (marker-buffer marker))
  7789. (pos (marker-position marker))
  7790. (org-insert-labeled-timestamps-at-point nil)
  7791. ts)
  7792. (set-marker-insertion-type marker t)
  7793. (org-with-remote-undo buffer
  7794. (with-current-buffer buffer
  7795. (widen)
  7796. (goto-char pos)
  7797. (setq ts (org-schedule arg time)))
  7798. (org-agenda-show-new-time marker ts "S"))
  7799. (message "Item scheduled for %s" ts)))
  7800. (defun org-agenda-deadline (arg &optional time)
  7801. "Schedule the item at point.
  7802. ARG is passed through to `org-deadline'."
  7803. (interactive "P")
  7804. (org-agenda-check-type t 'agenda 'timeline 'todo 'tags 'search)
  7805. (org-agenda-check-no-diary)
  7806. (let* ((marker (or (org-get-at-bol 'org-marker)
  7807. (org-agenda-error)))
  7808. (buffer (marker-buffer marker))
  7809. (pos (marker-position marker))
  7810. (org-insert-labeled-timestamps-at-point nil)
  7811. ts)
  7812. (org-with-remote-undo buffer
  7813. (with-current-buffer buffer
  7814. (widen)
  7815. (goto-char pos)
  7816. (setq ts (org-deadline arg time)))
  7817. (org-agenda-show-new-time marker ts "D"))
  7818. (message "Deadline for this item set to %s" ts)))
  7819. (defun org-agenda-clock-in (&optional arg)
  7820. "Start the clock on the currently selected item."
  7821. (interactive "P")
  7822. (org-agenda-check-no-diary)
  7823. (if (equal arg '(4))
  7824. (org-clock-in arg)
  7825. (let* ((marker (or (org-get-at-bol 'org-marker)
  7826. (org-agenda-error)))
  7827. (hdmarker (or (org-get-at-bol 'org-hd-marker)
  7828. marker))
  7829. (pos (marker-position marker))
  7830. newhead)
  7831. (org-with-remote-undo (marker-buffer marker)
  7832. (with-current-buffer (marker-buffer marker)
  7833. (widen)
  7834. (goto-char pos)
  7835. (org-show-context 'agenda)
  7836. (org-show-entry)
  7837. (org-cycle-hide-drawers 'children)
  7838. (org-clock-in arg)
  7839. (setq newhead (org-get-heading)))
  7840. (org-agenda-change-all-lines newhead hdmarker)))))
  7841. (defun org-agenda-clock-out ()
  7842. "Stop the currently running clock."
  7843. (interactive)
  7844. (unless (marker-buffer org-clock-marker)
  7845. (error "No running clock"))
  7846. (let ((marker (make-marker)) newhead)
  7847. (org-with-remote-undo (marker-buffer org-clock-marker)
  7848. (with-current-buffer (marker-buffer org-clock-marker)
  7849. (save-excursion
  7850. (save-restriction
  7851. (widen)
  7852. (goto-char org-clock-marker)
  7853. (org-back-to-heading t)
  7854. (move-marker marker (point))
  7855. (org-clock-out)
  7856. (setq newhead (org-get-heading))))))
  7857. (org-agenda-change-all-lines newhead marker)
  7858. (move-marker marker nil)))
  7859. (defun org-agenda-clock-cancel (&optional arg)
  7860. "Cancel the currently running clock."
  7861. (interactive "P")
  7862. (unless (marker-buffer org-clock-marker)
  7863. (error "No running clock"))
  7864. (org-with-remote-undo (marker-buffer org-clock-marker)
  7865. (org-clock-cancel)))
  7866. (defun org-agenda-clock-goto ()
  7867. "Jump to the currently clocked in task within the agenda.
  7868. If the currently clocked in task is not listed in the agenda
  7869. buffer, display it in another window."
  7870. (interactive)
  7871. (let (pos)
  7872. (mapc (lambda (o)
  7873. (if (eq (overlay-get o 'type) 'org-agenda-clocking)
  7874. (setq pos (overlay-start o))))
  7875. (overlays-in (point-min) (point-max)))
  7876. (cond (pos (goto-char pos))
  7877. ;; If the currently clocked entry is not in the agenda
  7878. ;; buffer, we visit it in another window:
  7879. (org-clock-current-task
  7880. (org-switch-to-buffer-other-window (org-clock-goto)))
  7881. (t (message "No running clock, use `C-c C-x C-j' to jump to the most recent one")))))
  7882. (defun org-agenda-diary-entry-in-org-file ()
  7883. "Make a diary entry in the file `org-agenda-diary-file'."
  7884. (let (d1 d2 char (text "") dp1 dp2)
  7885. (if (equal (buffer-name) "*Calendar*")
  7886. (setq d1 (calendar-cursor-to-date t)
  7887. d2 (car calendar-mark-ring))
  7888. (setq dp1 (get-text-property (point-at-bol) 'day))
  7889. (unless dp1 (error "No date defined in current line"))
  7890. (setq d1 (calendar-gregorian-from-absolute dp1)
  7891. d2 (and (ignore-errors (mark))
  7892. (save-excursion
  7893. (goto-char (mark))
  7894. (setq dp2 (get-text-property (point-at-bol) 'day)))
  7895. (calendar-gregorian-from-absolute dp2))))
  7896. (message "Diary entry: [d]ay [a]nniversary [b]lock [j]ump to date tree")
  7897. (setq char (read-char-exclusive))
  7898. (cond
  7899. ((equal char ?d)
  7900. (setq text (read-string "Day entry: "))
  7901. (org-agenda-add-entry-to-org-agenda-diary-file 'day text d1)
  7902. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  7903. ((equal char ?a)
  7904. (setq d1 (list (car d1) (nth 1 d1)
  7905. (read-number (format "Reference year [%d]: " (nth 2 d1))
  7906. (nth 2 d1))))
  7907. (setq text (read-string "Anniversary (use %d to show years): "))
  7908. (org-agenda-add-entry-to-org-agenda-diary-file 'anniversary text d1)
  7909. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  7910. ((equal char ?b)
  7911. (setq text (read-string "Block entry: "))
  7912. (unless (and d1 d2 (not (equal d1 d2)))
  7913. (error "No block of days selected"))
  7914. (org-agenda-add-entry-to-org-agenda-diary-file 'block text d1 d2)
  7915. (and (equal (buffer-name) org-agenda-buffer-name) (org-agenda-redo)))
  7916. ((equal char ?j)
  7917. (org-switch-to-buffer-other-window
  7918. (find-file-noselect org-agenda-diary-file))
  7919. (require 'org-datetree)
  7920. (org-datetree-find-date-create d1)
  7921. (org-reveal t))
  7922. (t (error "Invalid selection character `%c'" char)))))
  7923. (defcustom org-agenda-insert-diary-strategy 'date-tree
  7924. "Where in `org-agenda-diary-file' should new entries be added?
  7925. Valid values:
  7926. date-tree in the date tree, as child of the date
  7927. top-level as top-level entries at the end of the file."
  7928. :group 'org-agenda
  7929. :type '(choice
  7930. (const :tag "in a date tree" date-tree)
  7931. (const :tag "as top level at end of file" top-level)))
  7932. (defcustom org-agenda-insert-diary-extract-time nil
  7933. "Non-nil means extract any time specification from the diary entry."
  7934. :group 'org-agenda
  7935. :version "24.1"
  7936. :type 'boolean)
  7937. (defcustom org-agenda-bulk-mark-char ">"
  7938. "A single-character string to be used as the bulk mark."
  7939. :group 'org-agenda
  7940. :version "24.1"
  7941. :type 'string)
  7942. (defun org-agenda-add-entry-to-org-agenda-diary-file (type text &optional d1 d2)
  7943. "Add a diary entry with TYPE to `org-agenda-diary-file'.
  7944. If TEXT is not empty, it will become the headline of the new entry, and
  7945. the resulting entry will not be shown. When TEXT is empty, switch to
  7946. `org-agenda-diary-file' and let the user finish the entry there."
  7947. (let ((cw (current-window-configuration)))
  7948. (org-switch-to-buffer-other-window
  7949. (find-file-noselect org-agenda-diary-file))
  7950. (widen)
  7951. (goto-char (point-min))
  7952. (cond
  7953. ((eq type 'anniversary)
  7954. (or (re-search-forward "^*[ \t]+Anniversaries" nil t)
  7955. (progn
  7956. (or (org-at-heading-p t)
  7957. (progn
  7958. (outline-next-heading)
  7959. (insert "* Anniversaries\n\n")
  7960. (beginning-of-line -1)))))
  7961. (outline-next-heading)
  7962. (org-back-over-empty-lines)
  7963. (backward-char 1)
  7964. (insert "\n")
  7965. (insert (format "%%%%(org-anniversary %d %2d %2d) %s"
  7966. (nth 2 d1) (car d1) (nth 1 d1) text)))
  7967. ((eq type 'day)
  7968. (let ((org-prefix-has-time t)
  7969. (org-agenda-time-leading-zero t)
  7970. fmt time time2)
  7971. (if org-agenda-insert-diary-extract-time
  7972. ;; Use org-agenda-format-item to parse text for a time-range and
  7973. ;; remove it. FIXME: This is a hack, we should refactor
  7974. ;; that function to make time extraction available separately
  7975. (setq fmt (org-agenda-format-item nil text nil nil t)
  7976. time (get-text-property 0 'time fmt)
  7977. time2 (if (> (length time) 0)
  7978. ;; split-string removes trailing ...... if
  7979. ;; no end time given. First space
  7980. ;; separates time from date.
  7981. (concat " " (car (split-string time "\\.")))
  7982. nil)
  7983. text (get-text-property 0 'txt fmt)))
  7984. (if (eq org-agenda-insert-diary-strategy 'top-level)
  7985. (org-agenda-insert-diary-as-top-level text)
  7986. (require 'org-datetree)
  7987. (org-datetree-find-date-create d1)
  7988. (org-agenda-insert-diary-make-new-entry text))
  7989. (org-insert-time-stamp (org-time-from-absolute
  7990. (calendar-absolute-from-gregorian d1))
  7991. nil nil nil nil time2))
  7992. (end-of-line 0))
  7993. ((eq type 'block)
  7994. (if (> (calendar-absolute-from-gregorian d1)
  7995. (calendar-absolute-from-gregorian d2))
  7996. (setq d1 (prog1 d2 (setq d2 d1))))
  7997. (if (eq org-agenda-insert-diary-strategy 'top-level)
  7998. (org-agenda-insert-diary-as-top-level text)
  7999. (require 'org-datetree)
  8000. (org-datetree-find-date-create d1)
  8001. (org-agenda-insert-diary-make-new-entry text))
  8002. (org-insert-time-stamp (org-time-from-absolute
  8003. (calendar-absolute-from-gregorian d1)))
  8004. (insert "--")
  8005. (org-insert-time-stamp (org-time-from-absolute
  8006. (calendar-absolute-from-gregorian d2)))
  8007. (end-of-line 0)))
  8008. (if (string-match "\\S-" text)
  8009. (progn
  8010. (set-window-configuration cw)
  8011. (message "%s entry added to %s"
  8012. (capitalize (symbol-name type))
  8013. (abbreviate-file-name org-agenda-diary-file)))
  8014. (org-reveal t)
  8015. (message "Please finish entry here"))))
  8016. (defun org-agenda-insert-diary-as-top-level (text)
  8017. "Make new entry as a top-level entry at the end of the file.
  8018. Add TEXT as headline, and position the cursor in the second line so that
  8019. a timestamp can be added there."
  8020. (widen)
  8021. (goto-char (point-max))
  8022. (or (bolp) (insert "\n"))
  8023. (insert "* " text "\n")
  8024. (if org-adapt-indentation (org-indent-to-column 2)))
  8025. (defun org-agenda-insert-diary-make-new-entry (text)
  8026. "Make new entry as last child of current entry.
  8027. Add TEXT as headline, and position the cursor in the second line so that
  8028. a timestamp can be added there."
  8029. (let ((org-show-following-heading t)
  8030. (org-show-siblings t)
  8031. (org-show-hierarchy-above t)
  8032. (org-show-entry-below t)
  8033. col)
  8034. (outline-next-heading)
  8035. (org-back-over-empty-lines)
  8036. (or (looking-at "[ \t]*$")
  8037. (progn (insert "\n") (backward-char 1)))
  8038. (org-insert-heading nil t)
  8039. (org-do-demote)
  8040. (setq col (current-column))
  8041. (insert text "\n")
  8042. (if org-adapt-indentation (org-indent-to-column col))
  8043. (let ((org-show-following-heading t)
  8044. (org-show-siblings t)
  8045. (org-show-hierarchy-above t)
  8046. (org-show-entry-below t))
  8047. (org-show-context))))
  8048. (defun org-agenda-diary-entry ()
  8049. "Make a diary entry, like the `i' command from the calendar.
  8050. All the standard commands work: block, weekly etc.
  8051. When `org-agenda-diary-file' points to a file,
  8052. `org-agenda-diary-entry-in-org-file' is called instead to create
  8053. entries in that Org-mode file."
  8054. (interactive)
  8055. (org-agenda-check-type t 'agenda 'timeline)
  8056. (if (not (eq org-agenda-diary-file 'diary-file))
  8057. (org-agenda-diary-entry-in-org-file)
  8058. (require 'diary-lib)
  8059. (let* ((char (progn
  8060. (message "Diary entry: [d]ay [w]eekly [m]onthly [y]early [a]nniversary [b]lock [c]yclic")
  8061. (read-char-exclusive)))
  8062. (cmd (cdr (assoc char
  8063. '((?d . insert-diary-entry)
  8064. (?w . insert-weekly-diary-entry)
  8065. (?m . insert-monthly-diary-entry)
  8066. (?y . insert-yearly-diary-entry)
  8067. (?a . insert-anniversary-diary-entry)
  8068. (?b . insert-block-diary-entry)
  8069. (?c . insert-cyclic-diary-entry)))))
  8070. (oldf (symbol-function 'calendar-cursor-to-date))
  8071. ;; (buf (get-file-buffer (substitute-in-file-name diary-file)))
  8072. (point (point))
  8073. (mark (or (mark t) (point))))
  8074. (unless cmd
  8075. (error "No command associated with <%c>" char))
  8076. (unless (and (get-text-property point 'day)
  8077. (or (not (equal ?b char))
  8078. (get-text-property mark 'day)))
  8079. (error "Don't know which date to use for diary entry"))
  8080. ;; We implement this by hacking the `calendar-cursor-to-date' function
  8081. ;; and the `calendar-mark-ring' variable. Saves a lot of code.
  8082. (let ((calendar-mark-ring
  8083. (list (calendar-gregorian-from-absolute
  8084. (or (get-text-property mark 'day)
  8085. (get-text-property point 'day))))))
  8086. (unwind-protect
  8087. (progn
  8088. (fset 'calendar-cursor-to-date
  8089. (lambda (&optional error dummy)
  8090. (calendar-gregorian-from-absolute
  8091. (get-text-property point 'day))))
  8092. (call-interactively cmd))
  8093. (fset 'calendar-cursor-to-date oldf))))))
  8094. (defun org-agenda-execute-calendar-command (cmd)
  8095. "Execute a calendar command from the agenda, with the date associated to
  8096. the cursor position."
  8097. (org-agenda-check-type t 'agenda 'timeline)
  8098. (require 'diary-lib)
  8099. (unless (get-text-property (point) 'day)
  8100. (error "Don't know which date to use for calendar command"))
  8101. (let* ((oldf (symbol-function 'calendar-cursor-to-date))
  8102. (point (point))
  8103. (date (calendar-gregorian-from-absolute
  8104. (get-text-property point 'day)))
  8105. ;; the following 2 vars are needed in the calendar
  8106. (displayed-month (car date))
  8107. (displayed-year (nth 2 date)))
  8108. (unwind-protect
  8109. (progn
  8110. (fset 'calendar-cursor-to-date
  8111. (lambda (&optional error dummy)
  8112. (calendar-gregorian-from-absolute
  8113. (get-text-property point 'day))))
  8114. (call-interactively cmd))
  8115. (fset 'calendar-cursor-to-date oldf))))
  8116. (defun org-agenda-phases-of-moon ()
  8117. "Display the phases of the moon for the 3 months around the cursor date."
  8118. (interactive)
  8119. (org-agenda-execute-calendar-command 'calendar-phases-of-moon))
  8120. (defun org-agenda-holidays ()
  8121. "Display the holidays for the 3 months around the cursor date."
  8122. (interactive)
  8123. (org-agenda-execute-calendar-command 'list-calendar-holidays))
  8124. (defvar calendar-longitude) ; defined in calendar.el
  8125. (defvar calendar-latitude) ; defined in calendar.el
  8126. (defvar calendar-location-name) ; defined in calendar.el
  8127. (defun org-agenda-sunrise-sunset (arg)
  8128. "Display sunrise and sunset for the cursor date.
  8129. Latitude and longitude can be specified with the variables
  8130. `calendar-latitude' and `calendar-longitude'. When called with prefix
  8131. argument, latitude and longitude will be prompted for."
  8132. (interactive "P")
  8133. (require 'solar)
  8134. (let ((calendar-longitude (if arg nil calendar-longitude))
  8135. (calendar-latitude (if arg nil calendar-latitude))
  8136. (calendar-location-name
  8137. (if arg "the given coordinates" calendar-location-name)))
  8138. (org-agenda-execute-calendar-command 'calendar-sunrise-sunset)))
  8139. (defun org-agenda-goto-calendar ()
  8140. "Open the Emacs calendar with the date at the cursor."
  8141. (interactive)
  8142. (org-agenda-check-type t 'agenda 'timeline)
  8143. (let* ((day (or (get-text-property (point) 'day)
  8144. (error "Don't know which date to open in calendar")))
  8145. (date (calendar-gregorian-from-absolute day))
  8146. (calendar-move-hook nil)
  8147. (calendar-view-holidays-initially-flag nil)
  8148. (calendar-view-diary-initially-flag nil))
  8149. (calendar)
  8150. (calendar-goto-date date)))
  8151. ;;;###autoload
  8152. (defun org-calendar-goto-agenda ()
  8153. "Compute the Org-mode agenda for the calendar date displayed at the cursor.
  8154. This is a command that has to be installed in `calendar-mode-map'."
  8155. (interactive)
  8156. (org-agenda-list nil (calendar-absolute-from-gregorian
  8157. (calendar-cursor-to-date))
  8158. nil))
  8159. (defun org-agenda-convert-date ()
  8160. (interactive)
  8161. (org-agenda-check-type t 'agenda 'timeline)
  8162. (let ((day (get-text-property (point) 'day))
  8163. date s)
  8164. (unless day
  8165. (error "Don't know which date to convert"))
  8166. (setq date (calendar-gregorian-from-absolute day))
  8167. (setq s (concat
  8168. "Gregorian: " (calendar-date-string date) "\n"
  8169. "ISO: " (calendar-iso-date-string date) "\n"
  8170. "Day of Yr: " (calendar-day-of-year-string date) "\n"
  8171. "Julian: " (calendar-julian-date-string date) "\n"
  8172. "Astron. JD: " (calendar-astro-date-string date)
  8173. " (Julian date number at noon UTC)\n"
  8174. "Hebrew: " (calendar-hebrew-date-string date) " (until sunset)\n"
  8175. "Islamic: " (calendar-islamic-date-string date) " (until sunset)\n"
  8176. "French: " (calendar-french-date-string date) "\n"
  8177. "Baha'i: " (calendar-bahai-date-string date) " (until sunset)\n"
  8178. "Mayan: " (calendar-mayan-date-string date) "\n"
  8179. "Coptic: " (calendar-coptic-date-string date) "\n"
  8180. "Ethiopic: " (calendar-ethiopic-date-string date) "\n"
  8181. "Persian: " (calendar-persian-date-string date) "\n"
  8182. "Chinese: " (calendar-chinese-date-string date) "\n"))
  8183. (with-output-to-temp-buffer "*Dates*"
  8184. (princ s))
  8185. (org-fit-window-to-buffer (get-buffer-window "*Dates*"))))
  8186. ;;; Bulk commands
  8187. (defun org-agenda-bulk-marked-p ()
  8188. (eq (get-char-property (point-at-bol) 'type)
  8189. 'org-marked-entry-overlay))
  8190. (defun org-agenda-bulk-mark (&optional arg)
  8191. "Mark the entry at point for future bulk action."
  8192. (interactive "p")
  8193. (dotimes (i (or arg 1))
  8194. (unless (org-get-at-bol 'org-agenda-diary-link)
  8195. (let* ((m (org-get-at-bol 'org-hd-marker))
  8196. ov)
  8197. (unless (org-agenda-bulk-marked-p)
  8198. (unless m (error "Nothing to mark at point"))
  8199. (push m org-agenda-bulk-marked-entries)
  8200. (setq ov (make-overlay (point-at-bol) (+ 2 (point-at-bol))))
  8201. (org-overlay-display ov (concat org-agenda-bulk-mark-char " ")
  8202. (org-get-todo-face "TODO")
  8203. 'evaporate)
  8204. (overlay-put ov 'type 'org-marked-entry-overlay))
  8205. (beginning-of-line 2)
  8206. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  8207. (beginning-of-line 2))
  8208. (message "%d entries marked for bulk action"
  8209. (length org-agenda-bulk-marked-entries))))))
  8210. (defun org-agenda-bulk-mark-all ()
  8211. "Mark all entries for future agenda bulk action."
  8212. (interactive)
  8213. (org-agenda-bulk-mark-regexp "."))
  8214. (defun org-agenda-bulk-mark-regexp (regexp)
  8215. "Mark entries matching REGEXP for future agenda bulk action."
  8216. (interactive "sMark entries matching regexp: ")
  8217. (let ((entries-marked 0))
  8218. (save-excursion
  8219. (goto-char (point-min))
  8220. (goto-char (next-single-property-change (point) 'txt))
  8221. (while (re-search-forward regexp nil t)
  8222. (when (string-match regexp (get-text-property (point) 'txt))
  8223. (setq entries-marked (1+ entries-marked))
  8224. (call-interactively 'org-agenda-bulk-mark))))
  8225. (if (not entries-marked)
  8226. (message "No entry matching this regexp."))))
  8227. (defun org-agenda-bulk-unmark (&optional arg)
  8228. "Unmark the entry at point for future bulk action."
  8229. (interactive "P")
  8230. (if arg
  8231. (org-agenda-bulk-unmark-all)
  8232. (cond ((org-agenda-bulk-marked-p)
  8233. (org-agenda-bulk-remove-overlays
  8234. (point-at-bol) (+ 2 (point-at-bol)))
  8235. (setq org-agenda-bulk-marked-entries
  8236. (delete (org-get-at-bol 'org-hd-marker)
  8237. org-agenda-bulk-marked-entries))
  8238. (beginning-of-line 2)
  8239. (while (and (get-char-property (point) 'invisible) (not (eobp)))
  8240. (beginning-of-line 2))
  8241. (message "%d entries left marked for bulk action"
  8242. (length org-agenda-bulk-marked-entries)))
  8243. (t (message "No entry to unmark here")))))
  8244. (defun org-agenda-bulk-toggle ()
  8245. "Toggle marking the entry at point for bulk action."
  8246. (interactive)
  8247. (if (org-agenda-bulk-marked-p)
  8248. (org-agenda-bulk-unmark)
  8249. (org-agenda-bulk-mark)))
  8250. (defun org-agenda-bulk-remove-overlays (&optional beg end)
  8251. "Remove the mark overlays between BEG and END in the agenda buffer.
  8252. BEG and END default to the buffer limits.
  8253. This only removes the overlays, it does not remove the markers
  8254. from the list in `org-agenda-bulk-marked-entries'."
  8255. (interactive)
  8256. (mapc (lambda (ov)
  8257. (and (eq (overlay-get ov 'type) 'org-marked-entry-overlay)
  8258. (delete-overlay ov)))
  8259. (overlays-in (or beg (point-min)) (or end (point-max)))))
  8260. (defun org-agenda-bulk-unmark-all ()
  8261. "Remove all marks in the agenda buffer.
  8262. This will remove the markers and the overlays."
  8263. (interactive)
  8264. (if (null org-agenda-bulk-marked-entries)
  8265. (message "No entry to unmark")
  8266. (mapc (lambda (m) (move-marker m nil)) org-agenda-bulk-marked-entries)
  8267. (setq org-agenda-bulk-marked-entries nil)
  8268. (org-agenda-bulk-remove-overlays (point-min) (point-max))))
  8269. (defcustom org-agenda-persistent-marks nil
  8270. "Non-nil means marked items will stay marked after a bulk action.
  8271. You can toggle this interactively by typing `p' when prompted for a
  8272. bulk action."
  8273. :group 'org-agenda
  8274. :version "24.1"
  8275. :type 'boolean)
  8276. (defun org-agenda-bulk-action (&optional arg)
  8277. "Execute an remote-editing action on all marked entries.
  8278. The prefix arg is passed through to the command if possible."
  8279. (interactive "P")
  8280. ;; Make sure we have markers, and only valid ones
  8281. (unless org-agenda-bulk-marked-entries (error "No entries are marked"))
  8282. (mapc
  8283. (lambda (m)
  8284. (unless (and (markerp m)
  8285. (marker-buffer m)
  8286. (buffer-live-p (marker-buffer m))
  8287. (marker-position m))
  8288. (error "Marker %s for bulk command is invalid" m)))
  8289. org-agenda-bulk-marked-entries)
  8290. ;; Prompt for the bulk command
  8291. (let* ((msg (if org-agenda-persistent-marks "Bulk (persistent): " "Bulk: ")))
  8292. (message (concat msg "[$]arch [A]rch->sib [t]odo [+/-]tag [s]chd [d]eadline [r]efile "
  8293. "[S]catter [f]unction "
  8294. (when org-agenda-bulk-custom-functions
  8295. (concat " Custom: ["
  8296. (mapconcat (lambda(f) (char-to-string (car f)))
  8297. org-agenda-bulk-custom-functions "")
  8298. "]"))))
  8299. (catch 'exit
  8300. (let* ((action (read-char-exclusive))
  8301. (org-log-refile (if org-log-refile 'time nil))
  8302. (entries (reverse org-agenda-bulk-marked-entries))
  8303. (org-overriding-default-time
  8304. (if (get-text-property (point) 'org-agenda-date-header)
  8305. (org-get-cursor-date)))
  8306. redo-at-end
  8307. cmd rfloc state e tag pos (cnt 0) (cntskip 0))
  8308. (cond
  8309. ((equal action ?p)
  8310. (let ((org-agenda-persistent-marks
  8311. (not org-agenda-persistent-marks)))
  8312. (org-agenda-bulk-action)
  8313. (throw 'exit nil)))
  8314. ((equal action ?$)
  8315. (setq cmd '(org-agenda-archive)))
  8316. ((equal action ?A)
  8317. (setq cmd '(org-agenda-archive-to-archive-sibling)))
  8318. ((member action '(?r ?w))
  8319. (setq rfloc (org-refile-get-location
  8320. "Refile to"
  8321. (marker-buffer (car entries))
  8322. org-refile-allow-creating-parent-nodes))
  8323. (if (nth 3 rfloc)
  8324. (setcar (nthcdr 3 rfloc)
  8325. (move-marker (make-marker) (nth 3 rfloc)
  8326. (or (get-file-buffer (nth 1 rfloc))
  8327. (find-buffer-visiting (nth 1 rfloc))
  8328. (error "This should not happen")))))
  8329. (setq cmd (list 'org-agenda-refile nil (list 'quote rfloc) t)
  8330. redo-at-end t))
  8331. ((equal action ?t)
  8332. (setq state (org-icompleting-read
  8333. "Todo state: "
  8334. (with-current-buffer (marker-buffer (car entries))
  8335. (mapcar 'list org-todo-keywords-1))))
  8336. (setq cmd `(let ((org-inhibit-blocking t)
  8337. (org-inhibit-logging 'note))
  8338. (org-agenda-todo ,state))))
  8339. ((memq action '(?- ?+))
  8340. (setq tag (org-icompleting-read
  8341. (format "Tag to %s: " (if (eq action ?+) "add" "remove"))
  8342. (with-current-buffer (marker-buffer (car entries))
  8343. (delq nil
  8344. (mapcar (lambda (x)
  8345. (if (stringp (car x)) x)) org-tag-alist)))))
  8346. (setq cmd `(org-agenda-set-tags ,tag ,(if (eq action ?+) ''on ''off))))
  8347. ((memq action '(?s ?d))
  8348. (let* ((date (unless arg
  8349. (or org-overriding-default-time
  8350. (org-read-date
  8351. nil nil nil
  8352. (if (eq action ?s) "(Re)Schedule to" "(Re)Set Deadline to")
  8353. nil (format-time-string (car org-time-stamp-formats)
  8354. (org-get-cursor-date))))))
  8355. (ans (if arg nil org-read-date-final-answer))
  8356. (c1 (if (eq action ?s) 'org-agenda-schedule 'org-agenda-deadline)))
  8357. (setq cmd `(let* ((bound (fboundp 'read-string))
  8358. (old (and bound (symbol-function 'read-string))))
  8359. (unwind-protect
  8360. (progn
  8361. (fset 'read-string (lambda (&rest ignore) ,ans))
  8362. (eval '(,c1 arg)))
  8363. (if bound
  8364. (fset 'read-string old)
  8365. (fmakunbound 'read-string)))))))
  8366. ((equal action ?S)
  8367. (if (not (org-agenda-check-type nil 'agenda 'timeline 'todo))
  8368. (error "Can't scatter tasks in \"%s\" agenda view" org-agenda-type)
  8369. (let ((days (read-number
  8370. (format "Scatter tasks across how many %sdays: "
  8371. (if arg "week" "")) 7)))
  8372. (setq cmd
  8373. `(let ((distance (1+ (random ,days))))
  8374. (if arg
  8375. (let ((dist distance)
  8376. (day-of-week
  8377. (calendar-day-of-week
  8378. (calendar-gregorian-from-absolute (org-today)))))
  8379. (dotimes (i (1+ dist))
  8380. (while (member day-of-week org-agenda-weekend-days)
  8381. (incf distance)
  8382. (incf day-of-week)
  8383. (if (= day-of-week 7)
  8384. (setq day-of-week 0)))
  8385. (incf day-of-week)
  8386. (if (= day-of-week 7)
  8387. (setq day-of-week 0)))))
  8388. ;; silently fail when try to replan a sexp entry
  8389. (condition-case nil
  8390. (let* ((date (calendar-gregorian-from-absolute
  8391. (+ (org-today) distance)))
  8392. (time (encode-time 0 0 0 (nth 1 date) (nth 0 date)
  8393. (nth 2 date))))
  8394. (org-agenda-schedule nil time))
  8395. (error nil)))))))
  8396. ((assoc action org-agenda-bulk-custom-functions)
  8397. (setq cmd (list (cadr (assoc action org-agenda-bulk-custom-functions)))
  8398. redo-at-end t))
  8399. ((equal action ?f)
  8400. (setq cmd (list (intern
  8401. (org-icompleting-read "Function: "
  8402. obarray 'fboundp t nil nil)))))
  8403. (t (error "Invalid bulk action")))
  8404. ;; Sort the markers, to make sure that parents are handled before children
  8405. (setq entries (sort entries
  8406. (lambda (a b)
  8407. (cond
  8408. ((equal (marker-buffer a) (marker-buffer b))
  8409. (< (marker-position a) (marker-position b)))
  8410. (t
  8411. (string< (buffer-name (marker-buffer a))
  8412. (buffer-name (marker-buffer b))))))))
  8413. ;; Now loop over all markers and apply cmd
  8414. (while (setq e (pop entries))
  8415. (setq pos (text-property-any (point-min) (point-max) 'org-hd-marker e))
  8416. (if (not pos)
  8417. (progn (message "Skipping removed entry at %s" e)
  8418. (setq cntskip (1+ cntskip)))
  8419. (goto-char pos)
  8420. (let (org-loop-over-headlines-in-active-region)
  8421. (eval cmd))
  8422. (setq cnt (1+ cnt))))
  8423. (when redo-at-end (org-agenda-redo))
  8424. (unless org-agenda-persistent-marks
  8425. (org-agenda-bulk-unmark-all))
  8426. (message "Acted on %d entries%s%s"
  8427. cnt
  8428. (if (= cntskip 0)
  8429. ""
  8430. (format ", skipped %d (disappeared before their turn)"
  8431. cntskip))
  8432. (if (not org-agenda-persistent-marks)
  8433. "" " (kept marked)"))))))
  8434. (defun org-agenda-capture ()
  8435. "Call `org-capture' with the date at point."
  8436. (interactive)
  8437. (if (not (eq major-mode 'org-agenda-mode))
  8438. (error "You cannot do this outside of agenda buffers")
  8439. (let ((org-overriding-default-time
  8440. (org-get-cursor-date)))
  8441. (call-interactively 'org-capture))))
  8442. ;;; Flagging notes
  8443. (defun org-agenda-show-the-flagging-note ()
  8444. "Display the flagging note in the other window.
  8445. When called a second time in direct sequence, offer to remove the FLAGGING
  8446. tag and (if present) the flagging note."
  8447. (interactive)
  8448. (let ((hdmarker (org-get-at-bol 'org-hd-marker))
  8449. (win (selected-window))
  8450. note heading newhead)
  8451. (unless hdmarker
  8452. (error "No linked entry at point"))
  8453. (if (and (eq this-command last-command)
  8454. (y-or-n-p "Unflag and remove any flagging note? "))
  8455. (progn
  8456. (org-agenda-remove-flag hdmarker)
  8457. (let ((win (get-buffer-window "*Flagging Note*")))
  8458. (and win (delete-window win)))
  8459. (message "Entry unflagged"))
  8460. (setq note (org-entry-get hdmarker "THEFLAGGINGNOTE"))
  8461. (unless note
  8462. (error "No flagging note"))
  8463. (org-kill-new note)
  8464. (org-switch-to-buffer-other-window "*Flagging Note*")
  8465. (erase-buffer)
  8466. (insert note)
  8467. (goto-char (point-min))
  8468. (while (re-search-forward "\\\\n" nil t)
  8469. (replace-match "\n" t t))
  8470. (goto-char (point-min))
  8471. (select-window win)
  8472. (message "Flagging note pushed to kill ring. Press [?] again to remove tag and note"))))
  8473. (defun org-agenda-remove-flag (marker)
  8474. "Remove the FLAGGED tag and any flagging note in the entry."
  8475. (let (newhead)
  8476. (org-with-point-at marker
  8477. (org-toggle-tag "FLAGGED" 'off)
  8478. (org-entry-delete nil "THEFLAGGINGNOTE")
  8479. (setq newhead (org-get-heading)))
  8480. (org-agenda-change-all-lines newhead marker)
  8481. (message "Entry unflagged")))
  8482. (defun org-agenda-get-any-marker (&optional pos)
  8483. (or (get-text-property (or pos (point-at-bol)) 'org-hd-marker)
  8484. (get-text-property (or pos (point-at-bol)) 'org-marker)))
  8485. ;;; Appointment reminders
  8486. (defvar appt-time-msg-list) ; defined in appt.el
  8487. ;;;###autoload
  8488. (defun org-agenda-to-appt (&optional refresh filter &rest args)
  8489. "Activate appointments found in `org-agenda-files'.
  8490. With a \\[universal-argument] prefix, refresh the list of
  8491. appointments.
  8492. If FILTER is t, interactively prompt the user for a regular
  8493. expression, and filter out entries that don't match it.
  8494. If FILTER is a string, use this string as a regular expression
  8495. for filtering entries out.
  8496. If FILTER is a function, filter out entries against which
  8497. calling the function returns nil. This function takes one
  8498. argument: an entry from `org-agenda-get-day-entries'.
  8499. FILTER can also be an alist with the car of each cell being
  8500. either 'headline or 'category. For example:
  8501. '((headline \"IMPORTANT\")
  8502. (category \"Work\"))
  8503. will only add headlines containing IMPORTANT or headlines
  8504. belonging to the \"Work\" category.
  8505. ARGS are symbols indicating what kind of entries to consider.
  8506. By default `org-agenda-to-appt' will use :deadline, :scheduled
  8507. and :timestamp entries. See the docstring of `org-diary' for
  8508. details and examples.
  8509. If an entry as a APPT_WARNTIME property, its value will be used
  8510. to override `appt-message-warning-time'."
  8511. (interactive "P")
  8512. (if refresh (setq appt-time-msg-list nil))
  8513. (if (eq filter t)
  8514. (setq filter (read-from-minibuffer "Regexp filter: ")))
  8515. (let* ((cnt 0) ; count added events
  8516. (scope (or args '(:deadline :scheduled :timestamp)))
  8517. (org-agenda-new-buffers nil)
  8518. (org-deadline-warning-days 0)
  8519. ;; Do not use `org-today' here because appt only takes
  8520. ;; time and without date as argument, so it may pass wrong
  8521. ;; information otherwise
  8522. (today (org-date-to-gregorian
  8523. (time-to-days (current-time))))
  8524. (org-agenda-restrict nil)
  8525. (files (org-agenda-files 'unrestricted)) entries file
  8526. (org-agenda-buffer nil))
  8527. ;; Get all entries which may contain an appt
  8528. (org-agenda-prepare-buffers files)
  8529. (while (setq file (pop files))
  8530. (setq entries
  8531. (delq nil
  8532. (append entries
  8533. (apply 'org-agenda-get-day-entries
  8534. file today scope)))))
  8535. ;; Map thru entries and find if we should filter them out
  8536. (mapc
  8537. (lambda(x)
  8538. (let* ((evt (org-trim (or (get-text-property 1 'txt x) "")))
  8539. (cat (get-text-property 1 'org-category x))
  8540. (tod (get-text-property 1 'time-of-day x))
  8541. (ok (or (null filter)
  8542. (and (stringp filter) (string-match filter evt))
  8543. (and (functionp filter) (funcall filter x))
  8544. (and (listp filter)
  8545. (let ((cat-filter (cadr (assoc 'category filter)))
  8546. (evt-filter (cadr (assoc 'headline filter))))
  8547. (or (and (stringp cat-filter)
  8548. (string-match cat-filter cat))
  8549. (and (stringp evt-filter)
  8550. (string-match evt-filter evt)))))))
  8551. (wrn (get-text-property 1 'warntime x)))
  8552. ;; FIXME: Shall we remove text-properties for the appt text?
  8553. ;; (setq evt (set-text-properties 0 (length evt) nil evt))
  8554. (when (and ok tod)
  8555. (setq tod (concat "00" (number-to-string tod))
  8556. tod (when (string-match
  8557. "\\([0-9]\\{1,2\\}\\)\\([0-9]\\{2\\}\\)\\'" tod)
  8558. (concat (match-string 1 tod) ":"
  8559. (match-string 2 tod))))
  8560. (if (version< emacs-version "23.3")
  8561. (appt-add tod evt)
  8562. (appt-add tod evt wrn))
  8563. (setq cnt (1+ cnt))))) entries)
  8564. (org-release-buffers org-agenda-new-buffers)
  8565. (if (eq cnt 0)
  8566. (message "No event to add")
  8567. (message "Added %d event%s for today" cnt (if (> cnt 1) "s" "")))))
  8568. (defun org-agenda-todayp (date)
  8569. "Does DATE mean today, when considering `org-extend-today-until'?"
  8570. (let ((today (org-today))
  8571. (date (if (and date (listp date)) (calendar-absolute-from-gregorian date)
  8572. date)))
  8573. (eq date today)))
  8574. (defun org-agenda-todo-yesterday (&optional arg)
  8575. "Like `org-agenda-todo' but the time of change will be 23:59 of yesterday."
  8576. (interactive "P")
  8577. (let* ((hour (third (decode-time
  8578. (org-current-time))))
  8579. (org-extend-today-until (1+ hour)))
  8580. (org-agenda-todo arg)))
  8581. (provide 'org-agenda)
  8582. ;;; org-agenda.el ends here