Skip to content

Commit d223a34

Browse files
committed
improved documentation, added version tag
1 parent 1e742c2 commit d223a34

File tree

3 files changed

+43
-15
lines changed

3 files changed

+43
-15
lines changed

cologne-phonetics.lisp

Lines changed: 12 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,24 @@
11
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2-
;;; cologne-phonetics
2+
;;; FILE
3+
;;; cologne-phonetics.lisp
34
;;;
4-
;;; Purpose: Common Lisp implementation of the Cologne Phonetics algorithm
5+
;;; PURPOSE
6+
;;; Common Lisp implementation of the Cologne Phonetics algorithm
57
;;;
68
;;; Credits: This package is based on the Python implementation
79
;;; by Janek Nouvertné
810
;;; (https://github.com/provinzkraut/cologne_phonetics)
911
;;;
10-
;;; Author: Ruben Philipp <[email protected]>
12+
;;; AUTHOR
13+
;;; Ruben Philipp <[email protected]>
1114
;;;
12-
;;; Creation date: 2023-02-01
15+
;;; CREATED
16+
;;; 2023-02-01
1317
;;;
14-
;;; $$ Last modified: 22:13:51 Mon Mar 27 2023 CEST
18+
;;; VERSION
19+
;;; 1.0.1
20+
;;;
21+
;;; $$ Last modified: 11:02:00 Tue Mar 28 2023 CEST
1522
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1623

1724
(in-package :cologne-phonetics)

example.lisp

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2-
;;; Filename: example.lisp
2+
;;; FILE
3+
;;; example.lisp
34
;;;
4-
;;; Purpose: examples usage
5+
;;; PURPOSE
6+
;;; Example for using the cologne-phonetics package.
57
;;;
6-
;;; Author: Ruben Philipp
7-
;;; Created: 2023-02-01
8-
;;; $$ Last modified: 15:10:32 Thu Feb 2 2023 CET
8+
;;; AUTHOR
9+
;;; Ruben Philipp
10+
;;;
11+
;;; CREATED
12+
;;; 2023-02-01
13+
;;;
14+
;;; $$ Last modified: 11:03:04 Tue Mar 28 2023 CEST
915
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1016

1117
(in-package :cl-user)
@@ -15,3 +21,6 @@
1521

1622

1723
(cologne-phonetics::encode "Philipp Philip Filip Filipp Fillipp")
24+
25+
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
26+
;;; EOF example.lisp

package.lisp

Lines changed: 17 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,20 @@
11
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2-
;;; filename: package.lisp
2+
;;; FILE
3+
;;; package.lisp
34
;;;
4-
;;; Purpose: definition of the cologne-phonetics package
5+
;;; PURPOSE
6+
;;; Definition of the cologne-phonetics package.
57
;;;
6-
;;; Author: Ruben Philipp <[email protected]>
7-
;;; Created: 2023-02-01, Essen
8-
;;; $$ Last modified: 20:08:20 Wed Feb 1 2023 CET
8+
;;; VERSION
9+
;;; 1.0.1
10+
;;;
11+
;;; AUTHOR
12+
;;; Ruben Philipp <[email protected]>
13+
;;;
14+
;;; CREATED
15+
;;; 2023-02-01, Essen
16+
;;;
17+
;;; $$ Last modified: 11:03:55 Tue Mar 28 2023 CEST
918
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
1019

1120
(in-package :cl-user)
@@ -19,3 +28,6 @@
1928
(ql:quickload "split-sequence")
2029

2130
(in-package :cologne-phonetics)
31+
32+
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
33+
;;; EOF package.lisp

0 commit comments

Comments
 (0)