Carsten Dominik | 2 Nov 2004 09:40
Picon

org-mode Version 3.00


;;; org.el --- Outline-based notes management and organizer 
;; Copyright (c) 2003, 2004 Carsten Dominik
;;
;; Author: Carsten Dominik <dominik <at> science.uva.nl>
;; Keywords: outlines, hypermedia, calendar
;; Version: 3.00  (internal CVS version is $Revision: 1.83 $)
;;
;; This file is not part of GNU Emacs
;;
;; This program is free software you can redistribute it and/or modify it
;; under the terms of the GNU General Public License as published by the Free
;; Software Foundation; either version 2 of the License, or (at your option)
;; any later version.
;;
;; This program is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
;; or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
;; for more details.
;;
;; You should have received a copy of the GNU General Public License along
;; with GNU Emacs.  If you did not, write to the Free Software Foundation,
;; Inc., 675 Mass Ave., Cambridge, MA 02139, USA.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Commentary:
;;
;; Org-mode is a mode for keeping notes, maintaining ToDo lists, and doing
;; project planning with a fast and effective plain-text system.
(Continue reading)

Carsten Dominik | 2 Nov 2004 09:43
Picon

Re: org-mode Version 3.00


I forgot some additional information:

Documentation for org-mode is now available in TeXInfo format, and
therefore alos in HTML, PDF, you name it.  Get it here, along with the
newest version of org-mode.

 http://www.astro.uva.nl/~dominik/Tools/org/
Ulf Jasper | 2 Nov 2004 21:10
Picon

icalendar.el 0.08

This is version 0.08 of icalendar.el, an iCalendar implementation for
Emacs. Please see the Commentary section for instructions. 

Changes since version 0.07:

  - Fixed problems with export of weekly events: pick correct
    start day, make weekly events start in the year 2000.
  - Write export-errors to buffer ` *icalendar-errors*'.
  - Hopefully XEmacs compatible, again.

Enjoy

 ulf

;;; icalendar.el --- iCalendar implementation -*-coding: utf-8 -*-

;; Copyright (C) 2002, 2003, 2004  Free Software Foundation, Inc.

;; Author:         Ulf Jasper <ulf.jasper <at> web.de>
;; Created:        August 2002
;; Keywords:       calendar
;; Human-Keywords: calendar, diary, iCalendar, vCalendar

;; This file is part of GNU Emacs.

;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.

(Continue reading)

Rob Walker | 5 Nov 2004 00:24
Picon

branch.el (0.1) - working with multiple branches

This is a minor mode to facilitate working with multiple branches of a project.
It allows you to open the file equivalent to the current buffer in other 
branches and also to compare files and directories using ediff.
It has been tested on GNU Emacs 21.3 & CVS, but other emacs variants should
work

Rob

-- 
Rob Walker <rob <at> tenfoot.org.uk>
http://www.tenfoot.org.uk

;;; branch.el --- working with multiple branches of projects

;; Copyright (C) 2004 Rob Walker <rob <at> tenfoot.org.uk>

;; Author: Rob Walker <rob <at> tenfoot.org.uk>
;; Version: 0.1
;; Keywords: branch ediff compare
;; X-URL: http://www.tenfoot.org.uk/emacs/

;; This file is NOT part of GNU Emacs.

;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2 of the License, or
;; (at your option) any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
(Continue reading)

Frederik Fouvry | 5 Nov 2004 19:12
Picon
Favicon

df-mode.el


A slightly updated version of df-mode.el (a minor mode that checks if
there is sufficient disk space before a buffer is saved; very useful
on disks that are almost full).

Frederik Fouvry


;;; df-mode.el --- Minor mode to show space left on devices in the mode line 

;; Copyright (C) 1999 by Association April
;; Copyright (C) 2004 by Frederik Fouvry

;; Author: Benjamin Drieu <bdrieu <at> april.org>
;;         Frederik Fouvry <Frederik.Fouvry <at> coli.uni-saarland.de>
;; Keywords: unix, tools

;; This file is NOT part of GNU Emacs.
;; This is free software.

;; GNU Emacs as this program are free software; you can redistribute
;; them and/or modify them under the terms of the GNU General Public
;; License as published by the Free Software Foundation; either
;; version 2, or (at your option) any later version.

;; They are both distributed in the hope that they will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
;; General Public License for more details.

(Continue reading)

Daniel Pfeiffer | 6 Nov 2004 20:40
Picon

conf-mode almost ready

Hi,

Please find at the link below a mode that handles thousands of config files
fairly well.  These are Windows .ini, .lst and .reg (all of which can also be
found on Unix), Java properties and a whole bunch of /etc/*, .cf, .cfg, .conf
etc. files on Unix.

On my PC (including a nearly unused Windows partition) I have found almost
2000 of these, with varying syntaxes for comments (;, #, //, /* */ or !),
assignment (var = value, var : value, var value or keyword var value) and
sections ([section] or section { }).  All of this is handled by this mode.

I'd like to make this part of Emacs, so any feedback is welcome!  To start it
up, use:

(autoload 'conf-mode "conf-mode" () t)
(autoload 'conf-unix-mode "conf-mode" () t)
(autoload 'conf-windows-mode "conf-mode" () t)
(autoload 'conf-javaprop-mode "conf-mode" () t)
(autoload 'conf-space-mode "conf-mode" () t)
(autoload 'conf-xdefaults-mode "conf-mode" () t)

(setq auto-mode-alist
      `(, <at> auto-mode-alist
	("\\.docbook\\'" . sgml-mode)
	("/config\\.\\(?:bat\\|log\\)\\'" . fundamental-mode)

	;; Windows candidates may be opened case sensitively on Unix
	("\\.\\(?:[iI][nN][iI]\\|[lL][sS][tT]\\|[rR][eE][gG]\\|[sS][yY][sS]\\)\\'" .
conf-mode)
(Continue reading)

Nic Ferrier | 7 Nov 2004 01:14
Picon

java-complete.el

A new java-completion system. Source and some description is available
here:

  http://www.tapsellferrier.co.uk/nics-blog/emacs-java-completion.html

But because this is a source forum, here is the elisp:

;; Java completion.
;; (C) Tapsell-Ferrier Limited 2004

;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.

;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.

;; You should have received a copy of the GNU General Public License
;; along with this program; see the file COPYING.  If not, write to the
;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.

;; I have always wanted 3 sorts of completion in Java:
;;
;; 1. complete a class name;  for when you're declaring variables
;;
;; 2. complete a method call; given text:
(Continue reading)

Peter Heslin | 7 Nov 2004 23:50
Picon

fold-dwim.el -- Unified user interface for Emacs folding/outlining modes

;;; fold-dwim.el -- Unified user interface for Emacs folding modes
;;
;; Copyright (C) 2004 P J Heslin
;;
;; Author: Peter Heslin <p.j.heslin <at> dur.ac.uk>
;; URL: http://www.dur.ac.uk/p.j.heslin/emacs/download/fold-dwim.el
;; Version: 1.0
;;
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation; either version 2, or (at your option)
;; any later version.
;;
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU General Public License for more details.
;;
;; If you do not have a copy of the GNU General Public License, you
;; can obtain one by writing to the Free Software Foundation, Inc., 59
;; Temple Place - Suite 330, Boston, MA 02111-1307, USA.

;;; Overview:
;;
;; DWIM stands for "do what I mean", as in the idea that one keystroke
;; can do different things depending on the context. In this package,
;; it means that, if the cursor is in a currently hidden folded
;; construction, we want to show it; if it's not, we want to hide
;; whatever fold the cursor is in.
;;
(Continue reading)

Paul Kinnucan | 9 Nov 2004 21:52
Picon
Favicon

JDEE 2.3.4 available at

http://jdee.sunsite.dk/rootpage.html#Downloading

The Java Development Environment for Emacs (JDEE) is
a free software package that turns Emacs into a complete
environment for developing, testing, and debugging 
Java applications. Features include:

* Commands for compiling, building (via make or Ant), 
  running, and debugging the application
  or applet displayed in the current buffer.

* Intelligent completion of class member names.

* Automatic generation of import statements for all
  classes referenced in the current buffer or for
  the class referenced at point.

* Automatic generation of control flow (if-then, while,
  for, etc.) statements from abbreviations.

* Automatic generation of interface and abstract
  method stubs.

* Source level debugging of applications and applets.

* Java source code interpreter

* Context-sensitive Javadoc help for Java API and custom 
  API functions.

(Continue reading)

Ulf Jasper | 10 Nov 2004 21:15
Picon

newsticker.el 1.6

This is version 1.6 of newsticker.el, a newsticker (RSS reader, RSS
aggregator) for Emacs. 

Newsticker is hosted on savannah, see http://www.nongnu.org/newsticker/.

A brief texinfo manual is available from the savannah page.

Changes since version 1.5:
* More features.
* Less bugs.

For details see the Commentary in the file.

Enjoy!

 ulf

;;; newsticker.el --- A Newsticker for Emacs.

;; Copyright (C) 2003-2004 by Ulf Jasper

;; This file is NOT part of GNU Emacs.

;; Author:      Ulf Jasper <ulf.jasper <at> web.de>
;; Filename:    newsticker.el
;; URL:         http://www.nongnu.org/newsticker
;; Created:     17. June 2003
;; Keywords:    News, RSS
;; Time-stamp:  "10. November 2004, 20:36:53 (ulf)"
;; CVS-Version: $Id: newsticker.el,v 1.89 2004/11/10 19:42:12 u11 Exp $
(Continue reading)


Gmane