emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
From: David Emery <dave@skiddlydee.com>
To: dominik@science.uva.nl
Cc: emacs-orgmode@gnu.org
Subject: Re: Org-mode version 4.74
Date: Mon, 14 May 2007 02:02:43 +0900 (JST)	[thread overview]
Message-ID: <20070514.020243.151481750.dave@skiddlydee.com> (raw)
In-Reply-To: <b2e362700334e5a647744f095182626a@science.uva.nl>

[-- Attachment #1: Type: Text/Plain, Size: 2630 bytes --]

On Date: Sun, 13 May 2007 09:35:15 +0200, Carsten Dominik <dominik@science.uva.nl> wrote:
> I have released version 4.74 of Org-mode at
> 
> http://www.astro.uva.nl/~dominik/Tools/org/
> * Overview
> 
>    This release is about exporting agenda views, to HTML, to
>    postscript for printing, and to a special format (CSV) for
>    further processing in scripts.

Great stuff! But of course as soon as I tried the agenda export to HTML, I
wanted to be able to customize the CSS. So here's a patch that adds a setting:
org-export-agenda-html-style. It's my first attempt at lisp, so I imagine it
could be improved, but it works OK for me so far.

I had originally thought to make the agenda export use org-export-html-style,
(easy enough to do) and add the agenda-specific styles to that. But the fact
that the agenda content gets wrapped in <pre> tags complicates things a
bit. That still might be a better approach, but I think for most people, the
style for <PRE> in regular html export would conflict with that for agenda
export.


Dave



> 
> * Incompatible Changes
> 
>    - The variable `org-agenda-remove-tags-when-in-prefix' has
>      been renamed to `org-agenda-remove-tags'.
> 
> * Details
> 
>    - Agenda views can be exported as plain text, as HTML, and as
>      Postscript(R).  This can simply be done from the agenda
>      buffer with `C-x C-w' and then specifying a filename like
>      `myagenda.html' or `myagenda.ps'.  See section 8.6.4 of the
>      manual.
> 
>    - Each custom agenda view can specify a list of associated
>      files names.  The command `C-c a e' then creates all views
>      that have associated file names and exports the views to
>      these files.  This is great for producing paper versions of
>      your views, to take with you when you don't have your
>      computer.  The manual has an example on how to do this, and
>      in particular on how to customize the format of the printed
>      version.  See section 8.6.4 of the manual.
> 
>    - You can produce a CSV format of agenda information with an
>      Emacs batch command.  This is greate for further processing
>      in scipts.  Thanks to Jason F. McBrayer for this idea.
>      See section 8.6.5 of the manual.
> 
>    - New variable `org-agenda-skip-deadline-if-done'.  When set,
>      a deadline associated with a DONE item will not be shown in
>      the agenda.  This is based upon a report by Denis Bueno.
> 
>    - Quite a few bug fixes.
> 
> 
> 
> _______________________________________________
> Emacs-orgmode mailing list
> Emacs-orgmode@gnu.org
> http://lists.gnu.org/mailman/listinfo/emacs-orgmode

[-- Attachment #2: set_agenda_export_style.diff --]
[-- Type: Text/Plain, Size: 3347 bytes --]

--- org-4.74/org.el	2007-05-13 16:25:40.000000000 +0900
+++ org.el		2007-05-14 01:12:13.000000000 +0900
@@ -2708,6 +2708,90 @@
   :group 'org-export-html
   :type 'string)
 
+(defcustom org-export-agenda-html-style
+"<style type=\"text/css\">
+  html {
+	font-family: Times, serif;
+	font-size: 12pt;
+  }
+  .org-level-1 {
+    font-size: 150%;
+    color: #003399;
+    font-weight: 600;
+  }
+  .org-level-2 {
+    font-size: 130%;
+    color: #003399;
+   font-weight: 600;
+  }
+  .org-level-3 {
+    font-size: 110%;
+    color: #003399;
+   font-weight: 600;
+  }
+  .org-todo {
+    color: #cc6666;Week-agenda:
+    font-weight: bold;
+  }
+  .org-done {
+    color: #339933;
+  }
+  .org-scheduled-today {
+    color: #cc6666;
+  }
+  .org-warning {
+    color: #cc6666;
+    font-weight: 600;
+  }
+
+  a {
+    color: inherit;
+    background-color: inherit;
+    font: inherit;
+    text-decoration: inherit;
+  }
+  a:hover {
+    text-decoration: underline;
+  }
+</style>"
+  "The default style specification for exported HTML Agenda files.
+Since there are different ways of setting style information, this variable
+needs to contain the full HTML structure to provide a style, including the
+surrounding HTML tags.  The style specifications should include definitions
+for new classes todo, done, title, and deadline.  For example, legal values
+would be:
+
+   <style type=\"text/css\">
+       p { font-weight: normal; color: gray; }
+       .org-level-1 { color: black; }
+       .org-level-3 {
+          font-size: 110%;
+          color: #003399;
+          font-weight: 600;
+       }
+       .org-todo {
+          color: #cc6666;Week-agenda:
+          font-weight: bold;
+        }
+        .org-done {
+          color: #339933;
+        }
+        .title { text-align: center; }
+        .todo, .deadline { color: red; }
+        .done { color: green; }
+    </style>
+
+or, if you want to keep the style in a file,
+
+   <link rel=\"stylesheet\" type=\"text/css\" href=\"mystyles.css\">
+
+As the value of this option simply gets inserted into the HTML <head> header,
+you can \"misuse\" it to add arbitrary text to the header."
+  :group 'org-export-html
+  :type 'string)
+
+
+
 (defcustom org-export-html-title-format "<h1 class=\"title\">%s</h1>\n"
   "Format for typesetting the document title in HTML export."
   :group 'org-export-html
@@ -14292,6 +14376,15 @@
 	  ((string-match "\\.html?\\'" file)
 	   (require 'htmlize)
 	   (set-buffer (htmlize-buffer (current-buffer)))
+
+	   ;; replace the <style>...</style> section with org-export-agenda-html-style
+	   (goto-char (point-min))
+	   (kill-region (- (search-forward "<style") 6) 
+			(search-forward "</style>")
+	   )
+	   (insert org-export-agenda-html-style) 
+
+
 	   (write-file file)
 	   (kill-buffer (current-buffer))
 	   (message "HTML written to %s" file))
@@ -17269,6 +17362,8 @@
     (:tables               . org-export-with-tables)
     (:table-auto-headline  . org-export-highlight-first-table-line)
     (:style                . org-export-html-style)
+    ;;; added for agenda html export
+    (:agenda-style         . org-export-agenda-html-style)
     (:convert-org-links    . org-export-html-link-org-files-as-html)
     (:inline-images        . org-export-html-inline-images)
     (:expand-quoted-html   . org-export-html-expand)

[-- Attachment #3: Type: text/plain, Size: 149 bytes --]

_______________________________________________
Emacs-orgmode mailing list
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

  parent reply	other threads:[~2007-05-13 17:09 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2007-05-13  7:35 Org-mode version 4.74 Carsten Dominik
2007-05-13 11:43 ` Leo
2007-05-13 13:02   ` Leo
2007-05-13 17:02 ` David Emery [this message]
2007-05-15 11:41   ` Carsten Dominik
2007-05-15 22:34     ` dave
2007-05-21  4:51 ` Possible bug in " Ruslan Kosolapov
2007-05-21  8:27   ` Carsten Dominik

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.orgmode.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20070514.020243.151481750.dave@skiddlydee.com \
    --to=dave@skiddlydee.com \
    --cc=dominik@science.uva.nl \
    --cc=emacs-orgmode@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).