Skip to content

Commit

Permalink
improvements on progress message and modularization
Browse files Browse the repository at this point in the history
  • Loading branch information
yinwang0 committed Jun 1, 2013
1 parent 4e89b22 commit b60033a
Show file tree
Hide file tree
Showing 13 changed files with 334 additions and 864 deletions.
482 changes: 62 additions & 420 deletions demos/diff2.rkt

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions diff-cpp.rkt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
;; ydiff - a language-aware tool for comparing programs
;; Copyright (C) 2011 Yin Wang ([email protected])
;; Copyright (C) 2011-2013 Yin Wang ([email protected])

;; 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
Expand All @@ -18,10 +18,10 @@
#lang racket

(require "structs.rkt")
(require "utils.rkt")
(require "parse-cpp.rkt")
(require "diff.rkt")
(require "utils.rkt")

(require "htmlize.rkt")



Expand Down
7 changes: 3 additions & 4 deletions diff-js.rkt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
;; ydiff - a language-aware tool for comparing programs
;; Copyright (C) 2011 Yin Wang ([email protected])
;; Copyright (C) 2011-2013 Yin Wang ([email protected])

;; 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
Expand All @@ -19,11 +19,10 @@
#lang racket

(require "structs.rkt")
(require "utils.rkt")
(require "parse-js.rkt")
(require "diff.rkt")
(require "utils.rkt")


(require "htmlize.rkt")



Expand Down
20 changes: 19 additions & 1 deletion diff-lisp.rkt
Original file line number Diff line number Diff line change
@@ -1,9 +1,27 @@
;; ydiff - a language-aware tool for comparing programs
;; Copyright (C) 2011-2013 Yin Wang ([email protected])

;; 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 3 of the License, or
;; (at your option) any later version.

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


#lang racket

(require "structs.rkt")
(require "utils.rkt")
(require "parse-lisp.rkt")
(require "diff.rkt")
(require "utils.rkt")
(require "htmlize.rkt")


(define *keywords*
Expand Down
2 changes: 1 addition & 1 deletion diff.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* ydiff - a language-aware tool for comparing programs */
/* Copyright (C) 2011 Yin Wang ([email protected]) */
/* Copyright (C) 2011-2013 Yin Wang ([email protected]) */


/* This program is free software: you can redistribute it and/or modify */
Expand Down
Loading

0 comments on commit b60033a

Please sign in to comment.