org-agenda.el 278 KB

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