id int64 0 45.1k | file_name stringlengths 4 68 | file_path stringlengths 14 193 | content stringlengths 32 9.62M | size int64 32 9.62M | language stringclasses 1
value | extension stringclasses 6
values | total_lines int64 1 136k | avg_line_length float64 3 903k | max_line_length int64 3 4.51M | alphanum_fraction float64 0 1 | repo_name stringclasses 779
values | repo_stars int64 0 882 | repo_forks int64 0 108 | repo_open_issues int64 0 90 | repo_license stringclasses 8
values | repo_extraction_date stringclasses 146
values | sha stringlengths 64 64 | __index_level_0__ int64 0 45.1k | exdup_ids_cmlisp_stkv2 listlengths 1 47 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
18,440 | editfns.lisp | spacebat_lice/src/editfns.lisp | (in-package "LICE")
(defvar *inhibit-field-text-motion* nil
"Non-nil means text motion commands don't notice fields.")
(defvar *buffer-access-fontify-functions* nil
"List of functions called by `buffer-substring' to fontify if necessary.
Each function is called with two arguments which specify the range
of the buff... | 28,898 | Common Lisp | .lisp | 618 | 41.982201 | 108 | 0.704296 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 142efab4147cad6f4c9b0a968099e006bb5e0b93ddc9231ea9b9cef612a933e1 | 18,440 | [
-1
] |
18,441 | custom.lisp | spacebat_lice/src/custom.lisp | (in-package "LICE")
;; FIXME: obviously this is incomplete
(defmacro defcustom (symbol value doc &rest args)
(declare (ignore args))
`(defvar ,symbol ,value ,doc))
;; FIXME: empty
(defmacro defgroup (name something docstring &rest stuff)
(declare (ignore name something docstring stuff))
)
;; FIXME: empty
(de... | 588 | Common Lisp | .lisp | 17 | 32.411765 | 62 | 0.747795 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 12093367b3fb95e4f27f43860402427af46bf2d382f9bd25a26fb3311d85ee89 | 18,441 | [
-1
] |
18,442 | mcl-render.lisp | spacebat_lice/src/mcl-render.lisp | (in-package "LICE")
(defclass mcl-window (ccl:window)
())
(defclass mcl-frame (frame mcl-window)
((double-buffer :type (array character 1) :initarg :double-buffer :accessor frame-double-buffer :documentation
"The display double buffer. This structure is compared to
the characters we want to blit. Only differe... | 10,495 | Common Lisp | .lisp | 244 | 36.946721 | 157 | 0.628557 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 3a6f960de30f9a0259033a916d5abee7ebd692116ed956786963d7e046cbea7a | 18,442 | [
-1
] |
18,443 | tty-render.lisp | spacebat_lice/src/tty-render.lisp | ;; TTY rendering routines
(in-package "LICE")
(defclass tty-frame (frame)
((double-buffer :type (array character 1) :initarg :double-buffer :accessor frame-double-buffer :documentation
"The display double buffer. This structure is compared to
the characters we want to blit. Only differences are sent to the vide... | 9,886 | Common Lisp | .lisp | 260 | 32.965385 | 121 | 0.648468 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 7249f8860624c014b219bc78f0b04f945082756ef7c4ac161db73da0957e8859 | 18,443 | [
-1
] |
18,444 | major-mode.lisp | spacebat_lice/src/major-mode.lisp | ;;; Implement the major mode system
(in-package "LICE")
(defclass major-mode ()
((name :type string :initarg :name :accessor major-mode-name)
(map :type keymap :initarg :map :accessor major-mode-map)
(syntax :initarg :syntax-table :accessor major-mode-syntax-table)
(hook :initarg :hook :accessor major-mode... | 1,554 | Common Lisp | .lisp | 37 | 37.864865 | 91 | 0.706623 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | a08a32d932e43dcbf2f3d7e8af6c0ccfd0a0038874f2e8be114b729eb5c0fa09 | 18,444 | [
-1
] |
18,445 | files.lisp | spacebat_lice/src/files.lisp | (in-package :lice)
(defcustom *mode-require-final-newline* t
"Whether to add a newline at end of file, in certain major modes.
Those modes set `require-final-newline' to this value when you enable them.
They do so because they are often used for files that are supposed
to end in newlines, and the question is how to ... | 8,070 | Common Lisp | .lisp | 180 | 40.522222 | 109 | 0.687738 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 606af3bd34e3b1cc159457a4cb4ae754755a34d31820c38af3d4c86e598e3a77 | 18,445 | [
-1
] |
18,446 | buffer-local.lisp | spacebat_lice/src/buffer-local.lisp | ;;; buffer local variables
(in-package "LICE")
(defstruct buffer-local-binding
symbol value local-p doc-string)
(defvar *global-buffer-locals* (make-hash-table)
"The default values of buffer locals and a hash table containing all possible buffer locals")
(defun buffer-local-exists-p (symbol)
(multiple-value-b... | 6,493 | Common Lisp | .lisp | 125 | 48.192 | 102 | 0.742627 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 87fcd4c86f235d5dba88b217ad03d1e259bdc98357c77ed30f4e16a9392b1dbc | 18,446 | [
-1
] |
18,447 | main.lisp | spacebat_lice/src/main.lisp | (in-package "LICE")
;;
#+cmu (setf extensions:*gc-notify-after* (lambda (&rest r))
extensions:*gc-notify-before* (lambda (&rest r)))
(defun init-mode-line-format ()
(setf *default-mode-line-format*
(list "--:" ;; fake it for hype
(lambda (buffer)
(format nil "~C~C"
... | 9,384 | Common Lisp | .lisp | 232 | 33.827586 | 146 | 0.613475 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | eba47baaaf79f7b1e9584a5556863c1d033a73394039cdea54de4d710208ca18 | 18,447 | [
-1
] |
18,448 | insdel.lisp | spacebat_lice/src/insdel.lisp | ;;; buffer inserting, deleting, gap management, etc
(in-package "LICE")
;; (defun gap-close (buf)
;; "Move the gap to the end of the buffer."
;; (let ((gap-start (buffer-gap-start buf))
;; (gap-end (gap-end buf)))
;; (setf (buffer-gap-start buf) (- (length (buffer-data buf)) (buffer-gap-size buf)))
;; (r... | 6,140 | Common Lisp | .lisp | 142 | 39.485915 | 89 | 0.679819 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | ea0dfa1bf205b15717f29f87128cda65c38b073d1afeac703cbe2a1611b5eb8b | 18,448 | [
-1
] |
18,449 | window.lisp | spacebat_lice/src/window.lisp | (in-package "LICE")
(defvar *next-screen-context-lines* 2
"Number of lines of continuity when scrolling by screenfuls.")
(defvar *window-min-height* 4
"Delete any window less than this tall (including its mode line).")
(defvar *window-min-width* 10
"Delete any window less than this wide.")
(defmacro check-liv... | 40,879 | Common Lisp | .lisp | 912 | 40.945175 | 101 | 0.662251 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 096b1d542c7618132dde9aaace54c676a1383db978c965660691174ff519f9c9 | 18,449 | [
-1
] |
18,450 | clisp.lisp | spacebat_lice/src/clisp.lisp | (defpackage :lice
(:use :cl))
(labels ((cnl (file)
(compile-file file)
(load file)))
(cnl "wrappers")
(cnl "global")
(cnl "major-mode")
(cnl "buffer")
(cnl "window")
(cnl "frame")
(cnl "clisp-render")
(cnl "intervals")
(cnl "textprop")
(cnl "editfns")
(cnl "input")
(cnl "subr")
(... | 498 | Common Lisp | .lisp | 27 | 15.296296 | 24 | 0.580851 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 4ada1a7d25c7c40d79d344f4640cca5ec877d5a4cccb8b02aa0d801d83eec8e3 | 18,450 | [
-1
] |
18,451 | elisp.lisp | spacebat_lice/src/elisp.lisp | (cl:defpackage "ELISP"
(:nicknames "EL")
(:use "CL")
(:shadow cl:if cl:defun)
(:export #:if #:defun))
(in-package "ELISP")
(defmacro if (test pass &rest else)
"Elisp version of IF."
`(cl:if ,test
,pass
(progn
,@else)))
(cl:defun parse-interactive (thing)
(error "unimpl... | 1,024 | Common Lisp | .lisp | 28 | 27.75 | 79 | 0.558022 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 03ce0e54dc5a757018e23b6d09d74b9870cd7c7febbee869935856046114dd18 | 18,451 | [
-1
] |
18,452 | load.lisp | spacebat_lice/src/load.lisp | (defpackage :lice
(:use :cl))
#+sbcl (require :sb-posix)
(require 'cl-ncurses)
(require 'cl-ppcre)
(labels ((cnl (file)
(load (compile-file file))))
(cnl "wrappers")
(cnl "global")
(cnl "custom")
(cnl "commands")
(cnl "keymap")
(cnl "major-mode")
(cnl "buffer")
(cnl "subr")
(cnl "files")
(c... | 798 | Common Lisp | .lisp | 43 | 15.674419 | 32 | 0.598667 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 30dc4cf727d2bd9e7e6e86fafde0fa67f8df0f4371fe25e49a262254b7c04eb1 | 18,452 | [
-1
] |
18,453 | clisp-render.lisp | spacebat_lice/src/clisp-render.lisp | ;; TTY rendering routines
(in-package :lice)
(defclass clisp-frame (frame)
((window-stream :type window-stream :initarg :window-stream :accessor frame-window-stream)
(double-buffer :type (array character 1) :initarg :double-buffer :accessor frame-double-buffer :documentation
"The display double buffer. This ... | 7,413 | Common Lisp | .lisp | 173 | 37.427746 | 121 | 0.656224 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | ce0b95ad58d1752ff1fd67848de58f99b04e58c8104e75a27b6f60c18f7adca4 | 18,453 | [
-1
] |
18,454 | intervals.lisp | spacebat_lice/src/intervals.lisp | ;;; implentation of an interval tree
(in-package "LICE")
(defvar *text-property-default-nonsticky* nil
"Alist of properties vs the corresponding non-stickinesses.
Each element has the form (PROPERTY . NONSTICKINESS).
If a character in a buffer has PROPERTY, new text inserted adjacent to
the character doesn't inher... | 37,771 | Common Lisp | .lisp | 945 | 34.966138 | 83 | 0.671639 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | fcd90ae0a5d71c8b68cf86d145f2bd756c7e2f9af7418a73e80c4b675ab3eeaa | 18,454 | [
-1
] |
18,455 | data-types.lisp | spacebat_lice/src/data-types.lisp | ;;; declare all our data types
(in-package "LICE")
;;; Markers
(deftype marker-insertion-type () '(member :before :after))
(defclass marker ()
((position :type integer :initform 0 :accessor marker-position)
(buffer #|:type (or buffer null)|# :initform nil :accessor marker-buffer)
(insertion-type :type mar... | 11,525 | Common Lisp | .lisp | 220 | 48.213636 | 111 | 0.72972 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | adb341f6bc6e3e438fb17cefb4e611f14ba53602dc3fa7c385799fe086a98076 | 18,455 | [
-1
] |
18,456 | charset.lisp | spacebat_lice/src/charset.lisp | (in-package "LICE")
(defun define-charset ()
(error "unimplemented define-charset"))
(defun generic-character-list ()
(error "unimplemented generic-character-list"))
(defun get-unused-iso-final-char ()
(error "unimplemented get-unused-iso-final-char"))
(defun declare-equiv-charset ()
(error "unimplemented d... | 1,657 | Common Lisp | .lisp | 44 | 35.295455 | 71 | 0.744507 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 89b3b823ea7c68287409a6b50cdd4a0d88e346b7a4427067fee068f7f1494c5c | 18,456 | [
-1
] |
18,457 | help.lisp | spacebat_lice/src/help.lisp | ;;; Documentation and help related commands
(in-package "LICE")
(defcommand describe-symbol ()
"Display the full documentation of a symbol."
(let* ((pkgs (mapcar (lambda (p)
(cons (package-name p) p))
(list-all-packages)))
(pkg (cdr (find (completing-read "... | 778 | Common Lisp | .lisp | 17 | 37.058824 | 98 | 0.607662 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 164f43f6adb6354f1897141ffbf510e272f1e661101b9493fcc1c1c9ed718b9f | 18,457 | [
-1
] |
18,458 | frame.lisp | spacebat_lice/src/frame.lisp | (in-package :lice)
(defvar *frame-list* nil
"List of frames lice frames.")
(defun set-frame-minibuffer (frame minibuffer)
"Make MINIBUFFER the minibuffer for FRAME."
(setf (window-buffer (frame-minibuffer-window frame)) minibuffer))
(defun resize-window (window amount &optional (dir :height))
"grow or shrink... | 5,387 | Common Lisp | .lisp | 134 | 37.544776 | 104 | 0.740684 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 9a613e37cbe3f4d5f516f74491e2c36a0fbe279f3693f7c2e8cf600e5730f686 | 18,458 | [
-1
] |
18,459 | textprop.lisp | spacebat_lice/src/textprop.lisp | (in-package "LICE")
(defvar *inhibit-point-motion-hooks* nil
"If non-nil, don't run `point-left' and `point-entered' text properties.
This also inhibits the use of the `intangible' text property.")
;; This function is not translated well
(defun validate-interval-range (object begin end force)
(let (i searchpos)
;... | 21,918 | Common Lisp | .lisp | 494 | 39.172065 | 101 | 0.687123 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | b953518753f502a566702e6feb02f71aef93269580d2963de37ccd7b18472ce0 | 18,459 | [
-1
] |
18,460 | undo.lisp | spacebat_lice/src/undo.lisp | ;;; undo code from undo.c
(in-package "LICE")
(defvar *last-undo-buffer* nil
"Last buffer for which undo information was recorded.")
;; FIXME: a global used in these functions is probably bad wrt concurrency
(defvar *pending-boundary* nil
"The first time a command records something for undo.
it also allocates th... | 9,667 | Common Lisp | .lisp | 210 | 39.880952 | 108 | 0.671832 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 0929ad0d70828a815a3f50db13579c126b5a5a0e603745d5e0fe05d9e51bbb35 | 18,460 | [
-1
] |
18,461 | dired.lisp | spacebat_lice/src/dired.lisp | ;;; Lisp functions for making directory listings.
(in-package "LICE")
(defvar completion-ignored-extensions nil
"Completion ignores file names ending in any string in this list.
It does not ignore them if all possible completions end in one of
these strings or when displaying a list of completions.
It ignores direc... | 886 | Common Lisp | .lisp | 20 | 42.2 | 70 | 0.787879 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 051ef578087a2cb72271b061a65f8bd209034d461b67f2a2b47098216e8415c1 | 18,461 | [
-1
] |
18,462 | wm.lisp | spacebat_lice/src/wm.lisp | ;;; window configuration code
(in-package "LICE")
(defstruct window-bk
"A structure that stores the vital data needed to restore a window."
x y w h seperator top bpoint buffer)
(defstruct frame-bk
current-window
window-tree)
(defun current-window-configuration (&optional (frame (selected-frame)))
"Return ... | 3,462 | Common Lisp | .lisp | 79 | 32.379747 | 95 | 0.568249 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | e6d49ceac360eefc89b1c7f3ad61d096868193d444a87b6b8a95683363941a4b | 18,462 | [
-1
] |
18,463 | minibuffer.lisp | spacebat_lice/src/minibuffer.lisp | (in-package "LICE")
(defvar *history-length* 30
"Maximum length for history lists before truncation takes place.
A number means that length; t means infinite. Truncation takes place
just after a new element is inserted. Setting the :HISTORY-LENGTH
property of a history variable overrides this default.")
(defvar *... | 22,187 | Common Lisp | .lisp | 459 | 43.923747 | 116 | 0.709928 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 95f90bb86300b49e14b3b56c4f6e7a82cfd7d9030915b9f6a996d99ade97c03a | 18,463 | [
-1
] |
18,464 | callproc.lisp | spacebat_lice/src/callproc.lisp | ;; Synchronous subprocess invocation for GNU Emacs.
(in-package "LICE")
;; FIXME: Fill these with real values
(defvar shell-file-name nil
"*File name to load inferior shells from.
Initialized from the SHELL environment variable, or to a system-dependent
default if SHELL is not set.")
(defvar exec-path nil
"*List of... | 2,123 | Common Lisp | .lisp | 45 | 45.866667 | 75 | 0.807841 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | b756d8c17e392b856aada98ace2ef283153631a102e8d06efffef0249f0ff7e7 | 18,464 | [
-1
] |
18,465 | search.lisp | spacebat_lice/src/search.lisp | (in-package "LICE")
;; because gnu emacs' match-data is not reentrant we create this
;; structure that is returned for all searching functions. It is
;; passed into the match-data related functions.
(defstruct match-data
obj start end reg-starts reg-ends)
(defvar *match-data* nil
"store the match data for searche... | 23,361 | Common Lisp | .lisp | 474 | 39.833333 | 122 | 0.625826 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 893f8747c59284ec65766b17db522acbe27d7775a86beee46234073e1e782b55 | 18,465 | [
-1
] |
18,466 | recursive-edit.lisp | spacebat_lice/src/recursive-edit.lisp | ;;; Implement the recursive edit.
(in-package "LICE")
(defvar *recursive-edit-depth* 0
"The current recursive-edit depth.")
;; TODO: Restore the window/buffer layout
(defun recursive-edit ()
(let* ((*recursive-edit-depth* (1+ *recursive-edit-depth*))
;; reset the command keys for the recursive edit
(*this-co... | 636 | Common Lisp | .lisp | 19 | 28.684211 | 61 | 0.647635 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | f86111dfc048c683ebd7f77990f1833276386c711c2a5f5d10da863c63467f6d | 18,466 | [
-1
] |
18,467 | all.lisp | spacebat_lice/src/all.lisp | (provide :lice-0.1/all :load-priority -1)
(defpackage :lice
(:use :cl))
(require :lice-0.1/wrappers)
(require :lice-0.1/global)
(require :lice-0.1/major-mode)
(require :lice-0.1/buffer)
(require :lice-0.1/window)
(require :lice-0.1/frame)
(require :lice-0.1/movitz-render)
(require :lice-0.1/intervals)
(require :l... | 2,075 | Common Lisp | .lisp | 43 | 46.953488 | 82 | 0.695695 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 0346268cc7b18247068ba1fd657246e312a2b603aaed3ad0c1123ff27c137e7f | 18,467 | [
-1
] |
18,468 | fns.lisp | spacebat_lice/src/fns.lisp | ;;; fns.lisp --- compatibility function from emacs
(in-package "LICE")
(defun concat (&rest strings)
"Concatenate all the arguments and make the result a string.
The result is a string whose elements are the elements of all the arguments.
Each argument must be a string."
(apply 'concatenate 'string strings))
(de... | 2,150 | Common Lisp | .lisp | 47 | 43.595745 | 77 | 0.748686 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 700f8a6c4a00c9328866c8d2937ddc7e3bbbf88c6174e419e5fe82007956e483 | 18,468 | [
-1
] |
18,469 | cmds.lisp | spacebat_lice/src/cmds.lisp | ;;; Simple built-in editing commands.
(in-package "LICE")
(defun forward-point (n)
"Return buffer position N characters after (before if N negative) point."
(check-type n integer)
(+ (pt) n))
(defcommand forward-char ((&optional (n 1))
:prefix)
"Move the point forward N characters in the current buffer.... | 4,648 | Common Lisp | .lisp | 107 | 33.588785 | 104 | 0.515901 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | fa5330b987f349d221b8962c9d9912b958e35d30dc23918d4be2990a48f1bdc8 | 18,469 | [
-1
] |
18,470 | indent.lisp | spacebat_lice/src/indent.lisp | ;;; Indentation functions
(in-package "LICE")
(define-buffer-local indent-tabs-mode t
"*Indentation can insert tabs if this is non-nil.
Setting this variable automatically makes it local to the current buffer.")
(define-buffer-local *indent-line-function* 'indent-relative
"Function to indent the current line.
This... | 14,440 | Common Lisp | .lisp | 333 | 37.642643 | 80 | 0.665813 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 3adf5ed183dd817dbf461089c9c5d2ae5415ba6bef618c27bd73448e31171f30 | 18,470 | [
-1
] |
18,471 | render.lisp | spacebat_lice/src/render.lisp | ;;; frame rendering routines
(in-package "LICE")
;; The defmethods are found in the *-render.lisp files
(defgeneric frame-start-render (frame)
(:documentation "Do any setup we need before we beginning rendering the frame."))
(defgeneric frame-end-render (frame)
(:documentation "Do any cleanup or refreshing after... | 1,651 | Common Lisp | .lisp | 39 | 37.076923 | 88 | 0.676012 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 9dfc246bd58f10f1da4997aae31c9ba4cacc4553ba4e588dc73716c03c7b48c9 | 18,471 | [
-1
] |
18,472 | subprocesses.lisp | spacebat_lice/src/subprocesses.lisp | ;;; handle subprocesses and threads
(in-package "LICE")
(defclass base-process ()
((input-stream :initarg :error-stream :accessor process-input-stream)
(output-stream :initarg :output-stream :accessor process-output-stream)
(error-stream :initarg :error-stream :accessor process-error-stream)
(name :initarg... | 9,577 | Common Lisp | .lisp | 215 | 41.013953 | 101 | 0.736503 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | a8e8ced0e5694109501aadecd4990f34ce9513378b536e1912f0cc1feeb7f0ca | 18,472 | [
-1
] |
18,473 | commands.lisp | spacebat_lice/src/commands.lisp | ;; Command related functions
(in-package "LICE")
(defclass command ()
((name :type symbol :initarg :name :accessor command-name)
(args :type list :initarg :args :accessor command-args)
(fn :type function :initarg :fn :accessor command-fn)
(doc :type (or null string) :initarg :doc :accessor command-doc))
... | 1,927 | Common Lisp | .lisp | 44 | 40.272727 | 78 | 0.726108 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 75b0a0d9b06c7121d991d7720fc2926fd5c4f9e1cd0da297c7e938171f23c6bc | 18,473 | [
-1
] |
18,474 | echo-area.lisp | spacebat_lice/src/echo-area.lisp | ;;; echo area related function. this stuff is in xdisp.c in emacs
(in-package "LICE")
(defun ensure-echo-area-buffers ()
"Make sure echo area buffers in `echo_buffers' are live.
If they aren't, make new ones."
(unless (and (bufferp (frame-echo-area-current (selected-frame)))
(buffer-live-p (fram... | 855 | Common Lisp | .lisp | 16 | 47 | 74 | 0.653524 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 5382859551721b103a93ee0d54337392e0ccfcebc75f1c7e28542358e96ac0df | 18,474 | [
-1
] |
18,475 | wrappers.lisp | spacebat_lice/src/wrappers.lisp | ;;; A collection of wrappers around extended functionality that may be
;;; different across CL implementations.
;;; To add support for a new CL implementation, an entry in each of
;;; these functions must be made for it.
;; don't print the unable to optimize notes
#+sbcl (declaim (sb-ext:muffle-conditions sb-ext:comp... | 4,454 | Common Lisp | .lisp | 118 | 34 | 116 | 0.683659 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | fe914a2e484534b83c265d36f30bc6f7b07d64cc9df7c76886ce3876891df0cf | 18,475 | [
-1
] |
18,476 | callint.lisp | spacebat_lice/src/callint.lisp | ;;; Call a Lisp function interactively.
(in-package #:lice)
(defvar *prefix-arg* nil
"The value of the prefix argument for the next editing command.
It may be a number, or the symbol `-' for just a minus sign as arg,
or a list whose car is a number for just one or more C-u's
or nil if no argument has been specified... | 3,475 | Common Lisp | .lisp | 73 | 43.753425 | 87 | 0.72368 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | e1b53ac61f1ff52b6d83e708f1496dea0d911d32dc438968299f7fd893a3c633 | 18,476 | [
-1
] |
18,477 | lisp-indent.lisp | spacebat_lice/src/lisp/lisp-indent.lisp | ;;; lisp-indent.lisp --- enhanced lisp-indent mode
;; to implement: backward-up-list concat downcase intern-soft match-beginning parse-partial-sexp regexp-opt skip-chars-forward substring
;;; Commentary:
;; This package supplies a single entry point, common-lisp-indent-function,
;; which performs indentation in the... | 23,811 | Common Lisp | .lisp | 549 | 31.879781 | 136 | 0.528357 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | c0a2e99d30d1098cf9cd7d7011e108a0f304395657f32bb371f12d16a5c70537 | 18,477 | [
-1
] |
18,478 | paren.lisp | spacebat_lice/src/lisp/paren.lisp | ;;; paren.el --- highlight matching paren
;; Copyright (C) 1993, 1996, 2001, 2002, 2003, 2004,
;; 2005, 2006 Free Software Foundation, Inc.
;; Author: rms@gnu.org
;; Maintainer: FSF
;; Keywords: languages, faces
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modif... | 9,537 | Common Lisp | .lisp | 233 | 35.905579 | 78 | 0.675722 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | a148e59b6bea694205cf191c1c0eb607be8d62029779be8f5443dd221761a1c6 | 18,478 | [
-1
] |
18,479 | subr.lisp | spacebat_lice/src/lisp/subr.lisp | ;;; subr.lice --- basic lisp subroutines for Emacs
(in-package "LICE")
;;; Argument types
(defun interactive (&rest prompts)
"Read input from the minibuffer and return it in a list."
(loop for p in prompts
collect (read-from-minibuffer p)))
(defvar *extended-command-history* nil)
(defun read-command (prompt)
... | 21,155 | Common Lisp | .lisp | 438 | 44.182648 | 113 | 0.713995 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 8a984074d8cb5d904650a8b2b856e724b7a695ca42abc490c2a4a934df4ad33b | 18,479 | [
-1
] |
18,480 | bindings.lisp | spacebat_lice/src/lisp/bindings.lisp | ;;; bindings.el --- define standard key bindings and some variables
;; Copyright (C) 1985, 1986, 1987, 1992, 1993, 1994, 1995, 1996, 1999,
;; 2000, 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
;; Maintainer: FSF
;; Keywords: internal
;; This file is part of GNU Emacs.
;; GNU Emacs is free sof... | 45,906 | Common Lisp | .lisp | 975 | 44.821538 | 98 | 0.6751 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 9eedbc5a337333caf312881a40b37e117bb504224f37f2949faf2148e2a2b2af | 18,480 | [
-1
] |
18,481 | simple.lisp | spacebat_lice/src/lisp/simple.lisp | (in-package "LICE")
(defvar *kill-ring* nil
"The kill ring.")
(defvar *kill-ring-max* 60
"Maximum length of kill ring before oldest elements are thrown away.")
(defvar *kill-ring-yank-pointer* nil
"The tail of the kill ring whose car is the last thing yanked.")
(defcustom *eval-expression-print-level* 4
"Va... | 71,111 | Common Lisp | .lisp | 1,632 | 38.495098 | 128 | 0.653416 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | bb9e5a1027d8df852bce58f1a2e0931f7d2f6184004672592e5e1a6a27f7bffd | 18,481 | [
-1
] |
18,482 | text-mode.lisp | spacebat_lice/src/textmodes/text-mode.lisp | ;;; text-mode.el --- text mode, and its idiosyncratic commands
;; Copyright (C) 1985, 1992, 1994, 2002, 2003, 2004,
;; 2005, 2006 Free Software Foundation, Inc.
;; Maintainer: FSF
;; Keywords: wp
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under th... | 7,536 | Common Lisp | .lisp | 175 | 38.04 | 79 | 0.680535 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | d3d499d2a1f024950ad50e17cfb0cc72214c89c7222427d71bf5124ca321f16e | 18,482 | [
-1
] |
18,483 | easy-mmode.lisp | spacebat_lice/src/emacs-lisp/easy-mmode.lisp | ;;; easy-mmode.el --- easy definition for major and minor modes
;; Copyright (C) 1997, 2000, 2001, 2002, 2003, 2004, 2005,
;; 2006 Free Software Foundation, Inc.
;; Author: Georges Brun-Cottan <Georges.Brun-Cottan@inria.fr>
;; Maintainer: Stefan Monnier <monnier@gnu.org>
;; Keywords: extensions lisp
;; This file ... | 20,664 | Common Lisp | .lisp | 456 | 39.605263 | 94 | 0.657618 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | d4ab8d63f9e027d5d5bf2e775e23255bf3a157b0375cbe900477da4498243e6e | 18,483 | [
-1
] |
18,484 | lisp-mode.lisp | spacebat_lice/src/emacs-lisp/lisp-mode.lisp | ;;; This is a cheap, pigeon lisp mode. One Day, it'll be replaced with
;;; something amazing.
(in-package "LICE")
(defcustom *defun-prompt-regexp* nil
"*If non-nil, a regexp to ignore before a defun.
This is only necessary if the opening paren or brace is not in column 0.
See function `beginning-of-defun'."
:type... | 30,949 | Common Lisp | .lisp | 662 | 37.699396 | 132 | 0.606688 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 000f7a17db5501145794ba33b8b072cbf8cb95d9a03e479edb8431a48e186d47 | 18,484 | [
-1
] |
18,485 | dissociate.lisp | spacebat_lice/src/play/dissociate.lisp | ;;; dissociate.lisp --- scramble text amusingly for Emacs
;; Copyright (C) 1985, 2002, 2003, 2004, 2005,
;; 2006 Free Software Foundation, Inc.
;; Maintainer: FSF
;; Keywords: games
;; GNU Emacs is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as publi... | 3,436 | Common Lisp | .lisp | 93 | 33.010753 | 71 | 0.675173 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | e50780c3d0d94985bccc47bc5769eb0a1554ddf860ab115bd54921ef9ae49944 | 18,485 | [
-1
] |
18,486 | doctor.lisp | spacebat_lice/src/play/doctor.lisp | ;;; doctor.el --- psychological help for frustrated users
;; Copyright (C) 1985, 1987, 1994, 1996, 2000, 2002, 2003, 2004,
;; 2005, 2006 Free Software Foundation, Inc.
;; Maintainer: FSF
;; Keywords: games
;; This file is part of GNU Emacs.
;; GNU Emacs is free software; you can redistribute it and/or modify
;; ... | 57,840 | Common Lisp | .lisp | 1,576 | 32.411168 | 126 | 0.657428 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | cf42b1d91876b4134d045a445af7863b03c8519e4e0a2e858b9ccff79d5ff2e3 | 18,486 | [
-1
] |
18,487 | hanoi.lisp | spacebat_lice/src/play/hanoi.lisp | ;;; hanoi.el --- towers of hanoi in Emacs
;; Author: Damon Anton Permezel
;; Maintainer: FSF
;; Keywords: games
; Author (a) 1985, Damon Anton Permezel
; This is in the public domain
; since he distributed it without copyright notice in 1985.
;; This file is part of GNU Emacs.
;
; Support for horizontal poles, large ... | 17,794 | Common Lisp | .lisp | 410 | 39.419512 | 91 | 0.674546 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 40a14756b2c165b74c53dd3fbbcb7d52e3bdd0772eefb5bc5a0752062e027b88 | 18,487 | [
-1
] |
18,488 | lice.asd | spacebat_lice/src/lice.asd | ;; -*- lisp -*-
(defpackage :lice-system (:use :cl :asdf))
(in-package :lice-system)
(defsystem :lice
:depends-on (#-clisp cl-ncurses cl-ppcre #+sbcl sb-posix)
:serial t
:components ((:file "package")
(:file "wrappers")
(:file "emacs")
(:file "callproc")
... | 2,899 | Common Lisp | .asd | 72 | 19.972222 | 106 | 0.338418 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | e687c4e057a9da8bab66e5630897efa645fd02fc39440d6275d4ecf6b4d45971 | 18,488 | [
-1
] |
18,492 | Makefile.in | spacebat_lice/Makefile.in | # Nothing to do at the top level
all:
cd src && $(MAKE)
| 57 | Common Lisp | .l | 3 | 17.666667 | 32 | 0.666667 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 689f6ec65fa97d010fdddc342ebf728eae7faa29d346c47fb67c9f58328eb4fd | 18,492 | [
-1
] |
18,493 | changelog | spacebat_lice/debian/changelog | lice (2-1) unstable; urgency=low
* Initial release Closes: #nnnn (nnnn is the bug number of your ITP)
-- Trent Buck <trentbuck@gmail.com> Sun, 6 Nov 2005 08:45:08 +1100
| 178 | Common Lisp | .l | 3 | 56.333333 | 71 | 0.709302 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | c642e3dc191424f56932320e9b39bb6751d3d67b2fa89e2fa0062ff86a299170 | 18,493 | [
-1
] |
18,494 | rules | spacebat_lice/debian/rules | #!/usr/bin/make -f
pkg := lice
debpkg := $(pkg)
clc-source := usr/share/common-lisp/source
clc-systems := usr/share/common-lisp/systems
clc-files := $(clc-source)/$(pkg)
configure: configure-stamp
configure-stamp:
dh_testdir
touch configure-stamp
build: build-stamp
build-stamp: configure-stamp
dh_testdir
touch... | 1,032 | Common Lisp | .l | 47 | 20.191489 | 69 | 0.775407 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | b9e91f46f452c5ea79f813341a3db33232396011543f88c551baa3e715af7fa3 | 18,494 | [
-1
] |
18,495 | control | spacebat_lice/debian/control | Source: lice
Section: editors
Priority: optional
Maintainer: Trent Buck <trentbuck@gmail.com>
Build-Depends: debhelper (>= 4.0.0)
Standards-Version: 3.6.2
Package: lice
Architecture: all
Depends: ${shlibs:Depends}, ${misc:Depends}, cl-uffi, cl-ncurses
Description: The Lisp Computing Environment (Emacs for Common Lisp)... | 487 | Common Lisp | .l | 14 | 33.357143 | 67 | 0.783898 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | d4826129304cb6a503952ec383e0b4435fc9777b9678827540198d42e9b73890 | 18,495 | [
-1
] |
18,525 | Makefile.in | spacebat_lice/src/Makefile.in | # choose your lisp and appropriate lisp_opts
LISP=@LISP_PROGRAM@
clisp_OPTS=-K full -on-error exit -i ~/.clisprc ./make-image.lisp
sbcl_OPTS=--load ./make-image.lisp
LISP_OPTS= $(@LISP@_OPTS)
# This is copied from the .asd file. It'd be nice to have the list in
# one place, but oh well.
FILES=package.lisp wrappers.l... | 1,110 | Common Lisp | .l | 15 | 72.333333 | 630 | 0.780331 | spacebat/lice | 3 | 1 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 753a2936ec5ae18a987708f3c57ed312b53d2771ab9423180492aaedf71d312a | 18,525 | [
-1
] |
18,570 | ex-colors.lisp | justjoheinz_controlcl/examples/ex-colors.lisp | (in-package :cl-user)
(uiop:define-package controlcl/ex-colors
(:use :cl :controlcl :cl-sdl2-hershey)
(:export
#:main))
(in-package :controlcl/ex-colors)
(defun main ()
(sdl2:with-init (:everything)
(sdl2:with-window (window :title "ControlCL Example-Colors" :w 700 :h 300 :flags '(:shown))
(sdl2:w... | 1,570 | Common Lisp | .lisp | 33 | 32.30303 | 95 | 0.494785 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | f2f960b3f1ba5ca21ce30e64ae9cdc7048608d478bbaf63d7f090806a51a2abc | 18,570 | [
-1
] |
18,571 | ex-ctrl.lisp | justjoheinz_controlcl/examples/ex-ctrl.lisp | (in-package :cl-user)
(uiop:define-package controlcl/ex-ctrl
(:use :cl :controlcl :sdl2)
(:export
#:main))
(in-package :controlcl/ex-ctrl)
(defmethod on-event ((ctrl controller) (evt event-value))
(let ((source (event-source evt))
(target (controller-id ctrl)))
(if (and (eq target 'rocket)
... | 4,629 | Common Lisp | .lisp | 86 | 36.674419 | 89 | 0.505628 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | c4813a16dc0015554f70b77cc71edefe96a1f3b0cf19aa5c115e6b841ffac896 | 18,571 | [
-1
] |
18,572 | ex-theme.lisp | justjoheinz_controlcl/examples/ex-theme.lisp | (uiop:define-package controlcl/ex-theme
(:use :cl :controlcl :sdl2 :cl-sdl2-hershey)
(:export
#:main))
(in-package :controlcl/ex-theme)
(defun render-theme (renderer y &optional (*current-theme* *current-theme*))
(sdl2:with-rects ((rect-000 0 y 100 100)
(rect-100 100 y 100 100)
... | 2,163 | Common Lisp | .lisp | 50 | 32.42 | 94 | 0.570409 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 8b9b613421e32bf135b7d241a0d5bb654fcb40031f617c213639cc5a1d477444 | 18,572 | [
-1
] |
18,573 | package.lisp | justjoheinz_controlcl/src/package.lisp | (in-package :cl-user)
(uiop:define-package :controlcl
(:use :cl :cl-sdl2-hershey)
(:import-from :alexandria
#:clamp)
(:import-from :assoc-utils
#:aget
#:alist-values)
(:import-from :event-emitter
#:event-emitter
#:on
... | 2,028 | Common Lisp | .lisp | 95 | 16.494737 | 36 | 0.627847 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 6c2a47d85cbbf66fe5615de61cb5e34d4286e25304a1e8c7b73ca6f3377756a1 | 18,573 | [
-1
] |
18,574 | checkbox.lisp | justjoheinz_controlcl/src/checkbox.lisp | (in-package :controlcl)
;; BANG
(defclass checkbox (controller)
((name :initarg :name :accessor bang-name :initform nil)
(w :initform (error "you must provide a width"))
(h :initform (error "you must provide a height"))))
(defun set-checkbox-color (ctrl)
(with-slots (value renderer) ctrl
(if value
... | 1,059 | Common Lisp | .lisp | 25 | 37.24 | 71 | 0.666667 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | a8c56f38ce778d28a299e22b814b0ab03297e2dcc1eae1235a95acb84714cc0c | 18,574 | [
-1
] |
18,575 | image.lisp | justjoheinz_controlcl/src/image.lisp | (in-package :controlcl)
;; IMAGE
(defclass image (controller)
((name :initarg :name :accessor image-name :initform nil)
(surface :initarg :surface :accessor image-surface :initform nil)
(w :initform nil)
(h :initform nil)))
(defmethod controller-draw ((ctrl image))
(with-slots (x y w h surface renderer)... | 543 | Common Lisp | .lisp | 13 | 37.538462 | 75 | 0.70019 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 2163595664542683db430d2ccde02949320b69847c33f89aac55dfd3b26daa28 | 18,575 | [
-1
] |
18,576 | utils.lisp | justjoheinz_controlcl/src/utils.lisp | (in-package :controlcl)
;; UTILITIES
(defvar *controlcl-event* (sdl2:register-user-event-type :controlcl))
(declaim (ftype (function (number number number number number number) boolean) point-in-rect))
(defun point-in-rect (x y w h x1 y1)
"Return true if the point x1,y1 is inside the rectangle x,y,w,h"
(and (<=... | 1,231 | Common Lisp | .lisp | 28 | 41 | 94 | 0.707809 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 49f0e226bda858262086fee1581abcbb5c1daa56d1563f8a1a8e485629096827 | 18,576 | [
-1
] |
18,577 | ctrl.lisp | justjoheinz_controlcl/src/ctrl.lisp | (in-package :controlcl)
;; CONTROLLER
(defclass controller (event-emitter)
((x :initarg :x
:accessor controller-x :initform nil
:documentation "x position of the controller")
(y :initarg :y
:accessor controller-y :initform nil
:documentation "y position of the controller")
(w :initarg ... | 5,364 | Common Lisp | .lisp | 114 | 39.429825 | 95 | 0.662651 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | a1d392a52c138442b085a2f9e9693f5b47dddb0846476772e7734cdfb9c6cdfa | 18,577 | [
-1
] |
18,578 | events.lisp | justjoheinz_controlcl/src/events.lisp | (in-package :controlcl)
(defclass event ()
((id :reader event-id :initarg :id :initform nil :allocation :class)
(source :initarg :source :accessor event-source :initform nil)
(target :initarg :target :accessor event-target :initform nil))
(:documentation "An event is a message sent from one object to another... | 1,571 | Common Lisp | .lisp | 29 | 51.068966 | 112 | 0.735849 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 30bb6c82eb811340e2cb2c461d7ef69867bcca6a7746c5bcc2c2ff25ceff1b14 | 18,578 | [
-1
] |
18,579 | controlcl.lisp | justjoheinz_controlcl/src/controlcl.lisp | (in-package :controlcl)
;; CONTROLCL
(defclass controlcl (event-emitter)
((controllers :initarg :controllers :accessor controlcl-controllers :initform nil)
(renderer :initarg :renderer :accessor controlcl-renderer :initform nil))
(:documentation "ControlCL main class.
An instance holds references to all cont... | 4,384 | Common Lisp | .lisp | 90 | 37.766667 | 107 | 0.58796 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 4b4f0b00bbc4008bc89649066bc30ba27df4c789ecd83a31cac791ba57bdb855 | 18,579 | [
-1
] |
18,580 | bang.lisp | justjoheinz_controlcl/src/bang.lisp | (in-package :controlcl)
;; BANG
(defclass bang (controller)
((name :initarg :name :accessor bang-name :initform nil)
(w :initform (error "you must provide a width"))
(h :initform (error "you must provide a height"))))
(defmethod controller-draw ((ctrl bang))
(with-slots (x y w h renderer) ctrl
(control... | 581 | Common Lisp | .lisp | 14 | 37.571429 | 61 | 0.680851 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | e69f849076f726f2a6a270cc40efe5a316fe00cbedc2fd6181e0e4caa686fff2 | 18,580 | [
-1
] |
18,581 | slider.lisp | justjoheinz_controlcl/src/slider.lisp | (in-package :controlcl)
;; SLIDER
(defclass slider (controller)
((name :initarg :name :accessor slider-name :initform nil)
(min-value :initarg :min-value :accessor slider-min-value :initform 0)
(max-value :initarg :max-value :accessor slider-max-value :initform 100)
(value :initform 0)
(w :initform (er... | 1,421 | Common Lisp | .lisp | 30 | 39.933333 | 75 | 0.628344 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | f010cc154253fc80ca20016285c6555c7eff64fb4f34f932a906f7f2a8aa7f0c | 18,581 | [
-1
] |
18,582 | theme.lisp | justjoheinz_controlcl/src/theme.lisp | (in-package :controlcl)
;; /* http://clrs.cc/ */
;;other colors: #ff3838 red-salmon; #08ffb4 turquoise; #40afff light-blue; #f3eddb beige;
(defvar *colors* '(:navy #xFF001F3F :blue #xFF0074D9 :aqua #xFF7FDBFF :teal #xFF39CCCC
:olive #xFF3D9970 :green #xFF2ECC40 :lime #xFF01FF70 :yellow #xFFFFDC00... | 3,532 | Common Lisp | .lisp | 59 | 55.372881 | 114 | 0.709986 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 74535586960b3db6aa4f8ea7fc3b71ec6c1575f8263da41eb32e7c979b7e7fc4 | 18,582 | [
-1
] |
18,583 | tests-slider.lisp | justjoheinz_controlcl/t/tests-slider.lisp | (in-package :controlcl/tests)
(defvar *slider* nil)
(defhook setup :before
(setq *controlcl* (make-instance 'controlcl:controlcl))
(setq *slider* (make-instance 'slider :id 'slider :name "test-slider"
:x 10 :y 10 :w 100 :h 20
:value ... | 1,381 | Common Lisp | .lisp | 24 | 38.958333 | 89 | 0.488166 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 0fcabd15c939362fb61d36a92b53f6d1859982aa3934869287a3555e6392066e | 18,583 | [
-1
] |
18,584 | tests-controlcl.lisp | justjoheinz_controlcl/t/tests-controlcl.lisp |
;; internal tests
(in-package :controlcl/tests)
(deftest v-factor-tests
(testing "v-factor"
(ok (= (v-factor 50 0 100) 1/2))
(ok (= (v-factor 100 0 100) 1))
(ok (= (v-factor 0 0 100) 0))))
| 207 | Common Lisp | .lisp | 7 | 26 | 36 | 0.602041 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 25c890acf799d715cf537ecf6b47d7dff610959a04943929494b4077c0475230 | 18,584 | [
-1
] |
18,585 | controlcl.asd | justjoheinz_controlcl/controlcl.asd | (asdf:defsystem controlcl
:version "0.0.1"
:homepage "https://github.com/justjoheinz/controlcl"
:source-control (:git "https://github.com/justjoheinz/controlcl.git")
:license "LGPL V3"
:depends-on ("sdl2"
"cl-sdl2-hershey"
"sdl2-image"
"event-emitter"
... | 1,631 | Common Lisp | .asd | 42 | 24.714286 | 71 | 0.463138 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 5befdfb6ddeaa1effe06c76ad40082b8391ec6f2c46afcb7e1c441e8fa388e88 | 18,585 | [
-1
] |
18,588 | controlcl.html | justjoheinz_controlcl/docs/controlcl.html | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" href="default.css" type="text/css" />
<title>controlcl
package</title>
</head>
<body>
<div id="controlcl-package" class="... | 16,691 | Common Lisp | .cl | 223 | 73.838565 | 221 | 0.7064 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | a68c06002f0e94ab53bf9d5392696d66d3abb0ae7f7da71a03873cfd65a2f12b | 18,588 | [
-1
] |
18,591 | Makefile | justjoheinz_controlcl/Makefile |
LISP=qlot exec ros run -- --dynamic-space-size 2048
.PHONY: help all clean ex-colors ex-theme ex-ctrl qlot-update run-all
help: ## show help message
@awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m\n"} /^[$$()% a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "... | 1,690 | Common Lisp | .l | 39 | 40.846154 | 226 | 0.657509 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 871c1762f10eff7d8e0d34c342f6a61044743156b62e28351045ad9d8911ae5d | 18,591 | [
-1
] |
18,592 | qlfile.lock | justjoheinz_controlcl/qlfile.lock | ("quicklisp" .
(:class qlot/source/dist:source-dist
:initargs (:distribution "https://beta.quicklisp.org/dist/quicklisp.txt" :%version :latest)
:version "2023-10-21"))
("ultralisp" .
(:class qlot/source/dist:source-dist
:initargs (:distribution "https://dist.ultralisp.org/" :%version :latest)
:version "202409... | 1,355 | Common Lisp | .l | 32 | 40.09375 | 93 | 0.745276 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | ede7d5718e4e086b8427f1587c8590bda308329fbb9a574dc3d1020b9b8bfade | 18,592 | [
-1
] |
18,593 | qlfile | justjoheinz_controlcl/qlfile | dist ultralisp http://dist.ultralisp.org/
ql alexandria
ql assoc-utils
github ellisvelo/cl-sdl2
github ellisvelo/cl-sdl2-image
github justjoheinz/cl-sdl2-hershey
github justjoheinz/event-emitter
| 195 | Common Lisp | .l | 7 | 26.857143 | 41 | 0.867021 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | d1846e9bf8840a99ef6ab770c304c07cf6bd4b0b2cc3fa3c0c57107003db6d44 | 18,593 | [
-1
] |
18,609 | default.css | justjoheinz_controlcl/docs/default.css | /*
:Author: David Goodger (goodger@python.org)
:Id: $Id: html4css1.css 5196 2007-06-03 20:25:28Z wiemann $
:Copyright: This stylesheet has been placed in the public domain.
Default cascading style sheet for the HTML output of Docutils.
See http://docutils.sf.net/docs/howto/html-stylesheets.html for how... | 7,174 | Common Lisp | .l | 272 | 22.625 | 105 | 0.681338 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 53239bcd00e656c1019392340bcb5d90e0dcc72b875d7f02766d25888d87eed5 | 18,609 | [
-1
] |
18,610 | index.html | justjoheinz_controlcl/docs/index.html | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="stylesheet" href="default.css" type="text/css" />
<title>controlcl</title>
</head>
<body>
<div id="id1" class="document"><h1 class="tit... | 1,211 | Common Lisp | .l | 29 | 40.758621 | 223 | 0.689772 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 4aeb645a74ea43ce8a0e8e3782767c1670ff33f2b7062d190f84279bae13e4e0 | 18,610 | [
-1
] |
18,613 | ci.yaml | justjoheinz_controlcl/.github/workflows/ci.yaml | name: CI
on:
push:
schedule:
- cron: "0 13 * * FRI"
jobs:
test:
name: ${{ matrix.lisp }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
lisp: [sbcl-bin/2.4.5]
os: [ubuntu-latest]
fail-fast: false
steps:
- uses: actions/checkout@v1
- n... | 1,235 | Common Lisp | .l | 40 | 23.375 | 129 | 0.59194 | justjoheinz/controlcl | 3 | 0 | 2 | LGPL-3.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 81e8ea507622c0bc62e112bcc269b4e7524aba508618abc0431c02ede7a9f6a7 | 18,613 | [
-1
] |
18,628 | web-utility.lisp | hbock_periscope/lisp/web-utility.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 1,476 | Common Lisp | .lisp | 26 | 54.115385 | 94 | 0.704782 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 1537bbf6ab451d855e00c8c99403782d7648b93595e19fee12c4c051700ebe94 | 18,628 | [
-1
] |
18,629 | utility.lisp | hbock_periscope/lisp/utility.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 11,289 | Common Lisp | .lisp | 240 | 43.4375 | 112 | 0.692461 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | a3ddfc9308a31739ec38238eaf96b540dc7e28e4a15e3cef9e87952563eb299e | 18,629 | [
-1
] |
18,630 | specials.lisp | hbock_periscope/lisp/specials.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 3,036 | Common Lisp | .lisp | 71 | 41.211268 | 79 | 0.730639 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 36ae66c61aece52e03e36004c9f6f0471a87cdcbe1f19b154168cc475679101a | 18,630 | [
-1
] |
18,631 | main.lisp | hbock_periscope/lisp/main.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 3,617 | Common Lisp | .lisp | 84 | 38.821429 | 93 | 0.688356 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 7118550a104db802f8c87e961733e0e52df06c52f6564989d3eefe36eb62d229 | 18,631 | [
-1
] |
18,632 | argus-cffi.lisp | hbock_periscope/lisp/argus-cffi.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 5,473 | Common Lisp | .lisp | 157 | 31.828025 | 95 | 0.70775 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 019d56df9d1691407b9a2ed6f5d0b35be0e316e388919e47c9d42de744df2c13 | 18,632 | [
-1
] |
18,633 | config.lisp | hbock_periscope/lisp/config.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 4,101 | Common Lisp | .lisp | 90 | 41.533333 | 94 | 0.6975 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 7cb88891615b294abef21fe5e1f738faba89c9f2c606bf09345a4a0d9b68acc5 | 18,633 | [
-1
] |
18,634 | collector.lisp | hbock_periscope/lisp/collector.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 8,347 | Common Lisp | .lisp | 185 | 41.259459 | 92 | 0.705868 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | f3156aa0bbfc5317f8083a14cc18fbef903f499e165fce7eb74a905e7f257059 | 18,634 | [
-1
] |
18,635 | conditions.lisp | hbock_periscope/lisp/conditions.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 3,327 | Common Lisp | .lisp | 62 | 50.725806 | 89 | 0.759926 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 1f367f4a9818d317c6d383482d0413e5f7f61fe93505af0e677be7437344866a | 18,635 | [
-1
] |
18,636 | periscope-cffi.lisp | hbock_periscope/lisp/periscope-cffi.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 3,945 | Common Lisp | .lisp | 103 | 35.786408 | 88 | 0.750984 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | b1546ec849a5e7496e51cbd6da3df304525cbe39eccc69c2328edcd40ab62586 | 18,636 | [
-1
] |
18,637 | report-handlers.lisp | hbock_periscope/lisp/report-handlers.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 6,391 | Common Lisp | .lisp | 152 | 37.394737 | 95 | 0.66715 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 7069528e2172b80220ee3ba064f0fee89547b922ab06cecceea11bab05a231bc | 18,637 | [
-1
] |
18,638 | time.lisp | hbock_periscope/lisp/time.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 6,270 | Common Lisp | .lisp | 139 | 41.23741 | 91 | 0.668524 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | f8f8ad801df9c34d88c07cf841e0228f97eaa1c48bda50778fda0da2b02cca52 | 18,638 | [
-1
] |
18,639 | dns.lisp | hbock_periscope/lisp/dns.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 4,013 | Common Lisp | .lisp | 104 | 34.701923 | 87 | 0.674807 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 2efb397ab99b9e2be7c8c6a47d36f713b10b70bd05296f4e53e6d2207fc31440 | 18,639 | [
-1
] |
18,640 | unit-tests.lisp | hbock_periscope/lisp/unit-tests.lisp | ;;; Some code borrowed from BABEL-TESTS.
;;; Copyright (C) 2007-2008, Luis Oliveira <loliveira@common-lisp.net>
(defpackage :periscope-test
(:use :common-lisp :periscope :cffi :stefil))
(in-package :periscope-test)
(in-root-suite)
(defsuite* utility-tests)
(defmacro returns (form &rest values)
"Asserts, throug... | 12,067 | Common Lisp | .lisp | 236 | 47.016949 | 100 | 0.686673 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 4d7042fe3567153a08b17d1c8e70fe2f1fe32d824fb97d519d2b3cc904389a8f | 18,640 | [
-1
] |
18,641 | periodic-report.lisp | hbock_periscope/lisp/periodic-report.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 9,475 | Common Lisp | .lisp | 190 | 45.857895 | 97 | 0.694712 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | fe574a45e72893f554566ce89ff102d29dece2d87093f80f628e35005e8b54a6 | 18,641 | [
-1
] |
18,642 | web-index.lisp | hbock_periscope/lisp/web-index.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 4,053 | Common Lisp | .lisp | 97 | 37.041237 | 118 | 0.640791 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | dba01d3bd9b9216d79c0d53dbaeb3078bc4958b6393b47ebe1d8886e66ea4e45 | 18,642 | [
-1
] |
18,643 | flow.lisp | hbock_periscope/lisp/flow.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 4,247 | Common Lisp | .lisp | 84 | 45.904762 | 96 | 0.678286 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 9917282c3d563c48d1c9356d0ffccd2e732523a8cd1edcb3040bcc9a00cbac09 | 18,643 | [
-1
] |
18,644 | packages.lisp | hbock_periscope/lisp/packages.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 1,133 | Common Lisp | .lisp | 24 | 45.458333 | 79 | 0.734361 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 6efc2c6ad72df24d49dff2206cd47ec005d2984a83245c31fe51d3c71a616fc3 | 18,644 | [
-1
] |
18,645 | reports.lisp | hbock_periscope/lisp/reports.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 2,939 | Common Lisp | .lisp | 61 | 44.622951 | 91 | 0.696684 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | bfe4b1294d916995adacef15bbf0e43ec6d6612e5f097c6a94a1d4833c396315 | 18,645 | [
-1
] |
18,646 | test.lisp | hbock_periscope/lisp/test.lisp | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 2,595 | Common Lisp | .lisp | 62 | 37.467742 | 79 | 0.63514 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 5bd7698a4a67252d5b76a89ba0057341cc420bbcc3cfda40b9a7bae5d6be8d24 | 18,646 | [
-1
] |
18,647 | build.lisp | hbock_periscope/lisp/build.lisp | (require 'asdf)
(require 'periscope)
(defun build-periscope ()
#+sbcl (sb-ext:save-lisp-and-die "periscope" :toplevel #'periscope::main :executable t
:save-runtime-options t)
#-sbcl (error "Cannot build stand-alone binary on this system!")
t) | 256 | Common Lisp | .lisp | 7 | 33.714286 | 88 | 0.714859 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 0e149b1b30befa5bc97f0626fc907df1877dc18ba015bf17a12eb3a113903a38 | 18,647 | [
-1
] |
18,648 | periscope.asd | hbock_periscope/lisp/periscope.asd | ;;;; Periscope - Network auditing tool
;;;; Copyright (C) 2009 Harry Bock <harry@oshean.org>
;;;; This file is part of Periscope.
;;;; periscope 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 v... | 1,881 | Common Lisp | .asd | 59 | 28.084746 | 79 | 0.665017 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 6c2c57de582e1806016c2444d0299c7572c473129b724a06058db298a2408895 | 18,648 | [
-1
] |
18,650 | common-Makefile.in.patch | hbock_periscope/common-Makefile.in.patch | --- common/Makefile.in 2009-03-02 16:20:03.000000000 -0500
+++ ../../development/argus-periscope/common/Makefile.in 2009-05-29 19:15:39.342323093 -0400
@@ -42,6 +42,8 @@
srcdir = @srcdir@
VPATH = @srcdir@
+COMPATLIB = @COMPATLIB@ @LIB_SASL@ @LIBS@ @V_THREADS@ @V_GEOIPDEP@
+
#
# You shouldn't need to edit anything... | 1,552 | Common Lisp | .l | 42 | 34.904762 | 121 | 0.647651 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | e55345484044f1ecca1eebce6b019f214605fc1c885f0ccb95f5d967252c386b | 18,650 | [
-1
] |
18,651 | Makefile.in | hbock_periscope/Makefile.in | #
# Argus Software
# Copyright (c) 2000-2008 QoSient, LLC
# All rights reserved.
#
# 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 versio... | 3,465 | Common Lisp | .l | 98 | 33.867347 | 84 | 0.720359 | hbock/periscope | 3 | 0 | 0 | GPL-2.0 | 9/19/2024, 11:27:44 AM (Europe/Amsterdam) | 7f595293840dde7acaa22c2ff0837c0af1cd9104b95ed7fcdad334e6f4df708a | 18,651 | [
-1
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.