ต่อไปนี้เป็นตัวอย่างของวิธีตรวจสอบคุณสมบัติข้อความของรายการที่สร้างโดยorg-agenda-list
และแก้ไขสตริงตามเกณฑ์ที่แน่นอน ในตัวอย่างนี้ts-date
จะได้รับค่าของคุณสมบัติข้อความและเปรียบเทียบกับวันที่ปัจจุบัน - ถ้าเกินกำหนดเราจะเพิ่มOLD:
; ถ้ามันเป็นปัจจุบันเราเพิ่มถ้าในอนาคตเราเพิ่มCURRENT:
FUTURE:
โปสเตอร์ต้นฉบับสามารถปรับแต่งตัวอย่างนี้เพิ่มบรรทัดใหม่และ / หรือบรรทัดตัวแบ่งที่ตำแหน่งที่เลือก การปรับแต่งอาจแตกต่างกันไปขึ้นอยู่กับเกณฑ์การเรียงลำดับที่เลือกโดยโปสเตอร์ต้นฉบับในorg-agenda-sorting-strategy
ฯลฯ
ในตัวอย่างนี้ฟังก์ชั่นorg-agenda-finalize-entries
ได้รับการแก้ไขอยู่ด้านล่างระหว่างส่วนที่มีข้อความและ;; BEGIN modification
;; END modification
(require 'org-agenda)
(defun org-agenda-finalize-entries (list &optional type)
"Sort, limit and concatenate the LIST of agenda items.
The optional argument TYPE tells the agenda type."
(let ((max-effort (cond ((listp org-agenda-max-effort)
(cdr (assoc type org-agenda-max-effort)))
(t org-agenda-max-effort)))
(max-todo (cond ((listp org-agenda-max-todos)
(cdr (assoc type org-agenda-max-todos)))
(t org-agenda-max-todos)))
(max-tags (cond ((listp org-agenda-max-tags)
(cdr (assoc type org-agenda-max-tags)))
(t org-agenda-max-tags)))
(max-entries (cond ((listp org-agenda-max-entries)
(cdr (assoc type org-agenda-max-entries)))
(t org-agenda-max-entries))) l)
(when org-agenda-before-sorting-filter-function
(setq list
(delq nil
(mapcar
org-agenda-before-sorting-filter-function list))))
(setq list (mapcar 'org-agenda-highlight-todo list)
list (mapcar 'identity (sort list 'org-entries-lessp)))
(when max-effort
(setq list (org-agenda-limit-entries
list 'effort-minutes max-effort 'identity)))
(when max-todo
(setq list (org-agenda-limit-entries list 'todo-state max-todo)))
(when max-tags
(setq list (org-agenda-limit-entries list 'tags max-tags)))
(when max-entries
(setq list (org-agenda-limit-entries list 'org-hd-marker max-entries)))
;; BEGIN modification
(setq list
(mapcar
(lambda (string)
(let* (
(current-date (time-to-days (current-time)))
(ts-date (get-text-property 0 'ts-date string)) )
(if ts-date
(cond
((< ts-date current-date)
(message "The task dated %s is overdue." ts-date)
;; The new value of `string' is returned/thrown as a result.
(replace-regexp-in-string "^" "OLD: " string))
((= ts-date current-date)
(message "The task dated %s is due today." ts-date)
;; The new value of `string' is returned/thrown as a result.
(replace-regexp-in-string "^" "CURRENT: " string))
((> ts-date current-date)
(message "The task dated %s is not due yet." ts-date)
;; The new value of `string' is returned/thrown as a result.
(replace-regexp-in-string "^" "FUTURE: " string)))
string)))
list))
;; END modification
(mapconcat 'identity list "\n")))
replace-regexp-in-string
(เพิ่มบรรทัดตัวแบ่งและ / หรือบรรทัดใหม่เป็น คุณต้องการ); คุณสามารถมีstring-equals
หรือตรงกับเกณฑ์บางอย่างหรือเกณฑ์อื่น ๆ ที่คุณต้องการ ตรวจสอบคุณสมบัติข้อความที่มีอยู่ด้วยค่าเพื่อทำความคุ้นเคยกับสิ่งที่รวมอยู่ในกล่องแล้วใช้งาน