Skip to content

Commit

Permalink
Add license
Browse files Browse the repository at this point in the history
  • Loading branch information
jscheid committed Aug 25, 2012
1 parent 5816a1c commit 1d47367
Show file tree
Hide file tree
Showing 17 changed files with 1,106 additions and 5 deletions.
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

29 changes: 29 additions & 0 deletions kite-breakpoint-tests.el
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
;;; kite-breakpoint-tests.el --- Kite test suite for breakpoints

;; Copyright (C) 2012 Julian Scheid

;; Author: Julian Scheid
;; Keywords: tools, WWW

;; Kite 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.

;; Kite 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 Kite. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; Kite test suite for breakpoints.
;;
;; It is part of Kite, a WebKit inspector front-end.


;;; Code:

(defun kite-test--should-send-packets (body expected-packets &optional response-function)
(let ((response-function* (or response-function
(lambda (command params)
Expand Down
30 changes: 29 additions & 1 deletion kite-breakpoint.el
Original file line number Diff line number Diff line change
@@ -1,4 +1,32 @@
;; Base struct, and pseudo breakpoints
;;; kite-breakpoint.el --- Kite breakpoint implementations

;; Copyright (C) 2012 Julian Scheid

;; Author: Julian Scheid
;; Keywords: tools, WWW

;; Kite 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.

;; Kite 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 Kite. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; This package provides implementations for the various breakpoint
;; types supported by WebKit inspector.
;;
;; It is part of Kite, a WebKit inspector front-end.


;;; Code:

(require 'browse-url nil t)

Expand Down
29 changes: 29 additions & 0 deletions kite-color-tests.el
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
;;; kite-color-tests.el --- Kite test suite for color helpers

;; Copyright (C) 2012 Julian Scheid

;; Author: Julian Scheid
;; Keywords: tools, WWW

;; Kite 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.

;; Kite 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 Kite. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; Kite test suite for color helpers.
;;
;; It is part of Kite, a WebKit inspector front-end.


;;; Code:

(ert-deftest kite-test-color-regex ()
(dolist (color-spec
'(;; 4.1. Example I
Expand Down
8 changes: 4 additions & 4 deletions kite-color.el
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

;; Copyright (C) 2012 Julian Scheid

;; Author: Julian Scheid <julians37@gmail.com>
;; Keywords: browser, debug, color, hex, rgb, hsl
;; Author: Julian Scheid
;; Keywords: tools, WWW

;; Kite is free software: you can redistribute it and/or modify it
;; under the terms of the GNU General Public License as published by
Expand All @@ -24,9 +24,9 @@
;; representations according to the CSS3 Color Module, as well as
;; visualizing colors with and without alpha channel.
;;
;; It is part of Kite, the Emacs package for developing Web front-end
;; applications.
;; It is part of Kite, a WebKit inspector front-end.


;;; Code:

(require 'color)
Expand Down
29 changes: 29 additions & 0 deletions kite-console-tests.el
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
;;; kite-console-tests.el --- Kite test suite for console module

;; Copyright (C) 2012 Julian Scheid

;; Author: Julian Scheid
;; Keywords: tools, WWW

;; Kite 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.

;; Kite 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 Kite. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; Kite test suite for the console module.
;;
;; It is part of Kite, a WebKit inspector front-end.


;;; Code:

(defvar kite--console-test-simple-message-1
(list :message
(list :type "log"
Expand Down
29 changes: 29 additions & 0 deletions kite-console.el
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
;;; kite-console.el --- Kite console module implementation

;; Copyright (C) 2012 Julian Scheid

;; Author: Julian Scheid
;; Keywords: tools, WWW

;; Kite 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.

;; Kite 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 Kite. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; This package implements the WebKit inspector console.
;;
;; It is part of Kite, a WebKit inspector front-end.


;;; Code:

(require 'font-lock)

(defface kite-log-warning
Expand Down
29 changes: 29 additions & 0 deletions kite-dom-css.el
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
;;; kite-dom-css.el --- CSS helpers for DOM module implementation

;; Copyright (C) 2012 Julian Scheid

;; Author: Julian Scheid
;; Keywords: tools, WWW

;; Kite 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.

;; Kite 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 Kite. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; This package provides CSS helper functions used by the DOM module.
;;
;; It is part of Kite, a WebKit inspector front-end.


;;; Code:

(require 'kite-util)

;; Try loading css-mode so we can steal their faces
Expand Down
29 changes: 29 additions & 0 deletions kite-dom-tests.el
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
;;; kite-dom-tests.el --- Kite test suite for DOM module

;; Copyright (C) 2012 Julian Scheid

;; Author: Julian Scheid
;; Keywords: tools, WWW

;; Kite 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.

;; Kite 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 Kite. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; Kite test suite for DOM module.
;;
;; It is part of Kite, a WebKit inspector front-end.


;;; Code:

(defun kite--equal-wildcard (o1 o2)
(or (eq '* o1)
(eq '* o2)
Expand Down
29 changes: 29 additions & 0 deletions kite-dom.el
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
;;; kite-dom.el --- Kite DOM module implementation

;; Copyright (C) 2012 Julian Scheid

;; Author: Julian Scheid
;; Keywords: tools, WWW

;; Kite 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.

;; Kite 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 Kite. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; This package implements the WebKit DOM inspector.
;;
;; It is part of Kite, a WebKit inspector front-end.


;;; Code:

(require 'kite-color)
(require 'kite-dom-css)
(require 'widget)
Expand Down
25 changes: 25 additions & 0 deletions kite-memory.el
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
;;; kite-memory.el --- Kite memory inspector implementation

;; Copyright (C) 2012 Julian Scheid

;; Author: Julian Scheid
;; Keywords: tools, WWW

;; Kite 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.

;; Kite 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 Kite. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; This package implements the WebKit memory usage inspector.
;;
;; It is part of Kite, a WebKit inspector front-end.

(defvar kite-memory-mode-map
(let ((map (make-keymap))
Expand Down
29 changes: 29 additions & 0 deletions kite-net.el
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
;;; kite-net.el --- Kite network module implementation

;; Copyright (C) 2012 Julian Scheid

;; Author: Julian Scheid
;; Keywords: tools, WWW

;; Kite 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.

;; Kite 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 Kite. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; This package implements the WebKit inspector network module.
;;
;; It is part of Kite, a WebKit inspector front-end.


;;; Code:

(defvar kite-requests (make-hash-table :test 'equal))

(defface bg:kite-requestStart
Expand Down
29 changes: 29 additions & 0 deletions kite-object.el
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
;;; kite-object.el --- Kite object inspector implementation

;; Copyright (C) 2012 Julian Scheid

;; Author: Julian Scheid
;; Keywords: tools, WWW

;; Kite 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.

;; Kite 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 Kite. If not, see <http://www.gnu.org/licenses/>.

;;; Commentary:

;; This package implements a JavaScript object inspector.
;;
;; It is part of Kite, a WebKit inspector front-end.


;;; Code:

(defvar kite-object-mode-map
(let ((map (copy-keymap
(make-composed-keymap
Expand Down
Loading

0 comments on commit 1d47367

Please sign in to comment.