summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorsten Hilbrich <torsten.hilbrich@gmx.net>2013-10-05 04:46:21 +0200
committerTorsten Hilbrich <torsten.hilbrich@gmx.net>2013-10-05 05:12:23 +0200
commit41f2e0b385ac5f63e6cbda2c8978c291934efc6f (patch)
treefcaab89069eda2cf7f3efad97fb3494c0cb750b1
parente6dd652cc18be717f4274d58706c8ead50cb228a (diff)
Completed some information for package support
- added package description files - added some basic in-place documentation
-rw-r--r--connection-pkg.el3
-rwxr-xr-xconnection.el5
-rw-r--r--dictionary-pkg.el6
-rwxr-xr-xdictionary.el10
-rw-r--r--link-pkg.el4
-rwxr-xr-xlink.el7
6 files changed, 33 insertions, 2 deletions
diff --git a/connection-pkg.el b/connection-pkg.el
new file mode 100644
index 0000000..75eb290
--- /dev/null
+++ b/connection-pkg.el
@@ -0,0 +1,3 @@
+(define-package "connection"
+ "1.10"
+ "TCP-based client connetion")
diff --git a/connection.el b/connection.el
index f5bb2c7..04cdcf9 100755
--- a/connection.el
+++ b/connection.el
@@ -18,6 +18,11 @@
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
+;; connection allows to handle TCP-based connections in client mode
+;; where text-based information are exchanged. There is special
+;; support for handling CR LF (and the usual CR LF . CR LF
+;; terminater).
+
(eval-when-compile
(require 'cl))
diff --git a/dictionary-pkg.el b/dictionary-pkg.el
index b380081..86a7630 100644
--- a/dictionary-pkg.el
+++ b/dictionary-pkg.el
@@ -1 +1,5 @@
-(define-package "dictionary" "1.10" "client for rfc2229 dictionary servers")
+(define-package "dictionary"
+ "1.10"
+ "client for rfc2229 dictionary servers"
+ '((connection "1.10")
+ (link "1.10")))
diff --git a/dictionary.el b/dictionary.el
index 04a47e9..a8a4a2c 100755
--- a/dictionary.el
+++ b/dictionary.el
@@ -18,6 +18,16 @@
;; the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
;; Boston, MA 02111-1307, USA.
+;; dictionary allows you to interact with dictionary servers. Use M-x
+;; customize-group dictioanry to modify all user settings.
+;;
+;; Main functions for interaction are:
+;; dictionary - opens a new dictionary buffer
+;; dictionary-search - search for the definition of a word
+;;
+;; You can find more information in the README file of the gibhub
+;; repository https://github.com/myrkr/dictionary-el
+
(eval-when-compile
(require 'cl))
diff --git a/link-pkg.el b/link-pkg.el
new file mode 100644
index 0000000..75f15ad
--- /dev/null
+++ b/link-pkg.el
@@ -0,0 +1,4 @@
+(define-package "link"
+ "1.10"
+ "hypertext links in text buffers")
+
diff --git a/link.el b/link.el
index d7e1b7f..1d815fe 100755
--- a/link.el
+++ b/link.el
@@ -26,7 +26,12 @@
;; pressing return or clicking the button2.
;; Which each link a function and some data are associated. Upon
-;; clicking the function is called with the data as only argument.
+;; clicking the function is called with the data as only
+;; argument. Both the function and the data are stored in text
+;; properties.
+;;
+;; link-create-link - insert a new link for the text in the given range
+;; link-initialize-keymap - install the keybinding for selecting links
(eval-when-compile
(require 'cl))