How to add RefTeX support
[Worg/babel-doc.git] / org-mailing-list.org
blobaef5c219110d20b04926a7a229cb6d7e32a8cb1c
1 #+OPTIONS:    H:3 num:nil toc:t \n:nil @:t ::t |:t ^:t -:t f:t *:t TeX:t LaTeX:t skip:nil d:(HIDE) tags:not-in-toc
2 #+STARTUP:    align fold nodlcheck hidestars oddeven lognotestate
3 #+SEQ_TODO:   TODO(t) INPROGRESS(i) WAITING(w@) | DONE(d) CANCELED(c@)
4 #+TAGS:       Write(w) Update(u) Fix(f) Check(c) 
5 #+TITLE:      Org mailing list
6 #+AUTHOR:     Worg people
7 #+EMAIL:      bzg AT altern DOT org
8 #+LANGUAGE:   en
9 #+PRIORITIES: A C B
10 #+CATEGORY:   worg
12 # This file is the default header for new Org files in Worg.  Feel free
13 # to tailor it to your needs.
15 [[file:index.org][{Back to Worg's index}]]
17 * Search in Org mailing list
19 The [[file:org-mailing-list.org][Org mailing list]] is very active.  
21 #+BEGIN_HTML
22 <form method="get" action="http://search.gmane.org/">
23 <input type="text" name="query">
24 <input type="hidden" name="group" value="gmane.emacs.orgmode">
25 <input type="submit" value="Search gmane.emacs.orgmode">
26 </form>
27 #+END_HTML
29 * Last messages from the mailing list
31 #+BEGIN_HTML
32 <?php
34 define('MAGPIE_DIR', '/home/guerry/wikiprof.net/magpie/');
35 require_once(MAGPIE_DIR.'rss_fetch.inc');
36 $url1 = "http://rss.gmane.org/topics/excerpts/gmane.emacs.orgmode";
38 if ( $url1 ) 
39    {
40    $rss1 = fetch_rss( $url1 );
41    echo "<div><h3><a href=\"http://rss.gmane.org/topics/excerpts/gmane.emacs.orgmode\">";
42    echo "Org-mode mailing list</a></h3>\n\n";
43    echo "<div class=\"content\">";
44    echo "<ul>\n";
46    foreach ($rss1->items as $item) {
47             $href1 = $item['link'];
48             $title1 = htmlentities($item['title']);     
49             echo "<li><a class=\"feed\" href=\"$href1\">$title1</a></li>\n";
50             }
51             echo "</ul>\n</div>\n</div>\n";}
53 #+END_HTML