diff options
author | Alexander Sulfrian <alexander@sulfrian.net> | 2009-11-19 01:44:52 +0100 |
---|---|---|
committer | Alexander Sulfrian <alexander@sulfrian.net> | 2009-11-19 01:44:52 +0100 |
commit | 07963cfc7b5bd985bf01ef22c90970501104352d (patch) | |
tree | 8166a4c5ff56dfb5a2c8860cd34cb2c04d601fd3 /emacs.d/lisp/rudel/telepathy | |
parent | 91d3e89c924fb8a932599ccfcf18bc364878ac17 (diff) | |
download | dotfiles-07963cfc7b5bd985bf01ef22c90970501104352d.tar.gz dotfiles-07963cfc7b5bd985bf01ef22c90970501104352d.tar.xz dotfiles-07963cfc7b5bd985bf01ef22c90970501104352d.zip |
added rudel (obby and other colab framework for emacs)
Diffstat (limited to 'emacs.d/lisp/rudel/telepathy')
-rw-r--r-- | emacs.d/lisp/rudel/telepathy/.svn/all-wcprops | 11 | ||||
-rw-r--r-- | emacs.d/lisp/rudel/telepathy/.svn/entries | 62 | ||||
-rw-r--r-- | emacs.d/lisp/rudel/telepathy/.svn/text-base/rudel-telepathy.el.svn-base | 76 | ||||
-rw-r--r-- | emacs.d/lisp/rudel/telepathy/rudel-telepathy.el | 76 |
4 files changed, 225 insertions, 0 deletions
diff --git a/emacs.d/lisp/rudel/telepathy/.svn/all-wcprops b/emacs.d/lisp/rudel/telepathy/.svn/all-wcprops new file mode 100644 index 0000000..e89bd10 --- /dev/null +++ b/emacs.d/lisp/rudel/telepathy/.svn/all-wcprops @@ -0,0 +1,11 @@ +K 25 +svn:wc:ra_dav:version-url +V 43 +/svnroot/rudel/!svn/ver/301/trunk/telepathy +END +rudel-telepathy.el +K 25 +svn:wc:ra_dav:version-url +V 62 +/svnroot/rudel/!svn/ver/301/trunk/telepathy/rudel-telepathy.el +END diff --git a/emacs.d/lisp/rudel/telepathy/.svn/entries b/emacs.d/lisp/rudel/telepathy/.svn/entries new file mode 100644 index 0000000..ee21fde --- /dev/null +++ b/emacs.d/lisp/rudel/telepathy/.svn/entries @@ -0,0 +1,62 @@ +10 + +dir +545 +https://rudel.svn.sourceforge.net/svnroot/rudel/trunk/telepathy +https://rudel.svn.sourceforge.net/svnroot/rudel + + + +2009-10-03T01:27:08.697881Z +301 +scymtym + + + + + + + + + + + + + + +694b31df-dcbb-44e8-af88-74c7ea918228 + +rudel-telepathy.el +file + + + + +2009-11-18T14:01:46.000000Z +d4713da73fb5f147e0c7afcbcdb269b9 +2009-10-03T01:27:08.697881Z +301 +scymtym + + + + + + + + + + + + + + + + + + + + + +1882 + diff --git a/emacs.d/lisp/rudel/telepathy/.svn/text-base/rudel-telepathy.el.svn-base b/emacs.d/lisp/rudel/telepathy/.svn/text-base/rudel-telepathy.el.svn-base new file mode 100644 index 0000000..3d41643 --- /dev/null +++ b/emacs.d/lisp/rudel/telepathy/.svn/text-base/rudel-telepathy.el.svn-base @@ -0,0 +1,76 @@ +;;; rudel-telepathy.el --- A telepathy backend for Rudel +;; +;; Copyright (C) 2008, 2009 Jan Moringen +;; +;; Author: Jan Moringen <scymtym@users.sourceforge.net> +;; Keywords: Rudel, telepathy, backend +;; X-RCS: $Id:$ +;; +;; This file is part of Rudel. +;; +;; Rudel 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 3 of the License, or +;; (at your option) any later version. +;; +;; Rudel 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 rudel. If not, see <http://www.gnu.org/licenses>. + + +;;; Commentary: +;; +;; This file contains a Rudel backend which realizes session +;; initiation and transport of Rudel data through freedesktop's +;; Telepathy framework. + + +;;; History: +;; +;; 0.1 - Initial revision. + + +;;; Code: +;; + +(require 'eieio) + +(require 'rudel-backend) +(require 'rudel-transport) + + +;;; Constants +;; + +(defconst rudel-telepathy-version '(0 1) + "Version of the telepathy backend for Rudel.") + + +;;; Class rudel-telepathy-backend +;; + +(defclass rudel-telepathy-backend (rudel-transport-backend) + ((capabilities :initform '())) + "Class rudel-telepathy-backend ") + +(defmethod initialize-instance ((this rudel-telepathy-backend) &rest slots) + "Initialize slots of THIS according to SLOTS." + (when (next-method-p) + (call-next-method)) + + (oset this :version rudel-telepathy-version)) + + +;;; Autoloading +;; + +;;;###autoload +(rudel-add-backend (rudel-backend-get-factory 'transport) + 'telepathy 'rudel-telepathy-backend) + +(provide 'rudel-telepathy) +;;; rudel-telepathy.el ends here diff --git a/emacs.d/lisp/rudel/telepathy/rudel-telepathy.el b/emacs.d/lisp/rudel/telepathy/rudel-telepathy.el new file mode 100644 index 0000000..3d41643 --- /dev/null +++ b/emacs.d/lisp/rudel/telepathy/rudel-telepathy.el @@ -0,0 +1,76 @@ +;;; rudel-telepathy.el --- A telepathy backend for Rudel +;; +;; Copyright (C) 2008, 2009 Jan Moringen +;; +;; Author: Jan Moringen <scymtym@users.sourceforge.net> +;; Keywords: Rudel, telepathy, backend +;; X-RCS: $Id:$ +;; +;; This file is part of Rudel. +;; +;; Rudel 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 3 of the License, or +;; (at your option) any later version. +;; +;; Rudel 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 rudel. If not, see <http://www.gnu.org/licenses>. + + +;;; Commentary: +;; +;; This file contains a Rudel backend which realizes session +;; initiation and transport of Rudel data through freedesktop's +;; Telepathy framework. + + +;;; History: +;; +;; 0.1 - Initial revision. + + +;;; Code: +;; + +(require 'eieio) + +(require 'rudel-backend) +(require 'rudel-transport) + + +;;; Constants +;; + +(defconst rudel-telepathy-version '(0 1) + "Version of the telepathy backend for Rudel.") + + +;;; Class rudel-telepathy-backend +;; + +(defclass rudel-telepathy-backend (rudel-transport-backend) + ((capabilities :initform '())) + "Class rudel-telepathy-backend ") + +(defmethod initialize-instance ((this rudel-telepathy-backend) &rest slots) + "Initialize slots of THIS according to SLOTS." + (when (next-method-p) + (call-next-method)) + + (oset this :version rudel-telepathy-version)) + + +;;; Autoloading +;; + +;;;###autoload +(rudel-add-backend (rudel-backend-get-factory 'transport) + 'telepathy 'rudel-telepathy-backend) + +(provide 'rudel-telepathy) +;;; rudel-telepathy.el ends here |