Lawrence Auster | 23 Jan 21:18

Is Israel a Democracy? -- The problem with intellectually insecure whites -- Should Christians Support Israeli Terrorism in Gaza?

The Jewish State of Israel has no constitution, nor does it name its borders. Israel's hidden constitution
is Judaism. Israel's undeclared borders range from the Nile to the Euphrates rivers. Israel's desired
jurisdiction extends over the entire Earth.

It could not be more clear that the Jewish State follows a foreign policy which obeys Jewish Law as iterated
in the Hebrew Bible, the Talmud, Maimonedes, the Cabalah, and the many commentaries and refinements of
same. The Jews are genociding the native inhabitants of Palestine, just as their religion advises, and because
their religion teaches them to do so. They treat non-Jews as if non-humans, just as their religion requires
them to do. They make perpetual war on every nation on Earth, just as their genocidal Jewish God has instructed.

The Jews of Israel are simply being Jews. Jews are an existential threat to the human race.

Israel contains one third of the Jews of the World. It is not some aberration of the Jewish spirit, but the
condensation and concentration of the perverse Jewish mentality, which malady also pervades the
remaining two thirds of Jewry, who almost unanimously support the Jewish State, and who certainly do
unanimously support
the Jewish People and its consistent and constant crimes against the human race. Israel is Jewry and the
danger of Israel is the danger of the Jewish People to all others, as the Jews have demonstrated each and
every day of their existence.

The Jews, the entire Jewish People of 15 million, will not relent until they have wiped out all non-Jews in
"Greater Israel". They will not stop destroying all other cultures, nations, religions, ethnicities,
races, competition, etc. until they are either stopped, or succeed in their ancient quest to destroy the
human race.

What Israel is doing is not some reaction to outside forces, nor was the formation of Israel a response to the
Holocaust. Israel is simply following the plan laid out in the Jews' religious texts. The Jews have openly
planned to take Palestine and genocide the native population of Palestine for some 2,500 years before the
Holocaust. The Jews have openly complained that "anti-Semitism" is a threat that gives them the right to
genocide the Palestinians, not merely since the advent of Nazism, but for some 2,500 years.
(Continue reading)

mhenoch | 3 Apr 02:03

r205 - cl-darcs/trunk/doc

Author: mhenoch
Date: Wed Apr  2 19:03:58 2008
New Revision: 205

Modified:
   cl-darcs/trunk/doc/cl-darcs.texi
Log:
Document "darcs init"

Modified: cl-darcs/trunk/doc/cl-darcs.texi
==============================================================================
--- cl-darcs/trunk/doc/cl-darcs.texi	(original)
+++ cl-darcs/trunk/doc/cl-darcs.texi	Wed Apr  2 19:03:58 2008
@@ -156,6 +156,10 @@
 @node Creating a new repository, Pulling new patches, Getting a repository, Top
 @chapter Creating a new repository

+@deffn Command @command{darcs init}
+Create a new empty repository in the current directory.
+@end deffn
+
 @defun DARCS:CREATE-REPO repodir
 Create a new empty repository in @var{repodir}.  @var{repodir} must be
 a local nonexistent directory.
mhenoch | 3 Apr 02:02

r204 - cl-darcs/trunk

Author: mhenoch
Date: Wed Apr  2 19:02:00 2008
New Revision: 204

Modified:
   cl-darcs/trunk/cmdline.lisp
Log:
Note todo items for command operands

Modified: cl-darcs/trunk/cmdline.lisp
==============================================================================
--- cl-darcs/trunk/cmdline.lisp	(original)
+++ cl-darcs/trunk/cmdline.lisp	Wed Apr  2 19:02:00 2008
@@ -97,9 +97,11 @@
 			 (lambda (o)
 			   `(,o (cdr (assoc (option-keyword ,(option-symbol o)) ,options-sym))))
 			 options)
+		    ;; XXX: what if this fails?
 		    (destructuring-bind ,operands ,operands-sym
 		      ,@body))))
 	 (setf (get ',function 'darcs-documentation)
+	       ;; XXX: documentation for operands
 	       ,(if (null options)
 		    docstring
 		    `(format nil
mhenoch | 3 Apr 02:00

r203 - cl-darcs/trunk

Author: mhenoch
Date: Wed Apr  2 19:00:27 2008
New Revision: 203

Modified:
   cl-darcs/trunk/cmdline.lisp
Log:
Use DARCS-DOCUMENTATION property in USAGE

Modified: cl-darcs/trunk/cmdline.lisp
==============================================================================
--- cl-darcs/trunk/cmdline.lisp	(original)
+++ cl-darcs/trunk/cmdline.lisp	Wed Apr  2 19:00:27 2008
@@ -65,7 +65,7 @@
       (format *error-output* "  ~A~15,2T~A~%" 
 	      cmd
 	      (car (split-sequence:split-sequence 
-		    #\Newline (documentation function 'function)
+		    #\Newline (get function 'darcs-documentation)
 		    :count 1))))))

 (defun command-usage (command)
mhenoch | 3 Apr 01:50

r202 - cl-darcs/trunk/doc

Author: mhenoch
Date: Wed Apr  2 18:50:10 2008
New Revision: 202

Modified:
   cl-darcs/trunk/doc/cl-darcs.texi
Log:
Document command line tool

Modified: cl-darcs/trunk/doc/cl-darcs.texi
==============================================================================
--- cl-darcs/trunk/doc/cl-darcs.texi	(original)
+++ cl-darcs/trunk/doc/cl-darcs.texi	Wed Apr  2 18:50:10 2008
@@ -42,6 +42,7 @@

 @menu
 * Introduction::                
+* Running cl-darcs::            
 * Access methods::              
 * Getting a repository::        
 * Creating a new repository::   
@@ -50,7 +51,7 @@
 * Working directory layout::    
 @end menu

- <at> node Introduction, Access methods, Top, Top
+@node Introduction, Running cl-darcs, Top, Top
 @chapter Introduction

 cl-darcs is an implementation of the darcs version control system
(Continue reading)

mhenoch | 3 Apr 00:40

r201 - cl-darcs/trunk

Author: mhenoch
Date: Wed Apr  2 17:40:59 2008
New Revision: 201

Modified:
   cl-darcs/trunk/README
Log:
Mention compilation in README

Modified: cl-darcs/trunk/README
==============================================================================
--- cl-darcs/trunk/README	(original)
+++ cl-darcs/trunk/README	Wed Apr  2 17:40:59 2008
@@ -2,7 +2,18 @@
 writing it because the original client requires GHC (the Glasgow
 Haskell Compiler), which is not available on all platforms.

-cl-darcs is currently in a very early state of development.
+* Compiling
+
+If you use CLISP or SBCL, you can use cl-darcs as a standalone
+executable with an interface very similar to the real darcs.  Just
+run:
+
+./configure && make && make install
+
+You can also use cl-darcs from the REPL, by installing it as an ASDF
+system:
+
+ln -s $PWD/cl-darcs.asd /path/to/asdf-systems/
(Continue reading)

mhenoch | 3 Apr 00:35

r200 - cl-darcs/trunk/doc

Author: mhenoch
Date: Wed Apr  2 17:35:47 2008
New Revision: 200

Modified:
   cl-darcs/trunk/doc/cl-darcs.texi
Log:
Add dir entry to documentation

Modified: cl-darcs/trunk/doc/cl-darcs.texi
==============================================================================
--- cl-darcs/trunk/doc/cl-darcs.texi	(original)
+++ cl-darcs/trunk/doc/cl-darcs.texi	Wed Apr  2 17:35:47 2008
@@ -14,6 +14,11 @@
 @end quotation
 @end copying

+@dircategory Software development
+@direntry
+* Cl-darcs: (cl-darcs).       Darcs version control system client
+@end direntry
+
 @titlepage
 @title cl-darcs 0.3.0
 @subtitle a darcs client in Common Lisp
mhenoch | 3 Apr 00:27

r199 - cl-darcs/trunk

Author: mhenoch
Date: Wed Apr  2 17:27:17 2008
New Revision: 199

Modified:
   cl-darcs/trunk/Makefile.am
Log:
Include test suite in distribution

Modified: cl-darcs/trunk/Makefile.am
==============================================================================
--- cl-darcs/trunk/Makefile.am	(original)
+++ cl-darcs/trunk/Makefile.am	Wed Apr  2 17:27:17 2008
@@ -3,6 +3,8 @@

 info_TEXINFOS=doc/cl-darcs.texi

+dist_noinst_DATA=tests/package.lisp tests/gcau-tests.lisp
+
 # satisfy ASDF's tarball name convention
 distdir=$(PACKAGE)_$(VERSION)
mhenoch | 3 Apr 00:06

r198 - in cl-darcs/trunk: . doc

Author: mhenoch
Date: Wed Apr  2 17:06:36 2008
New Revision: 198

Removed:
   cl-darcs/trunk/doc/Makefile.am
Modified:
   cl-darcs/trunk/Makefile.am
   cl-darcs/trunk/configure.ac
Log:
Use one central makefile

Modified: cl-darcs/trunk/Makefile.am
==============================================================================
--- cl-darcs/trunk/Makefile.am	(original)
+++ cl-darcs/trunk/Makefile.am	Wed Apr  2 17:06:36 2008
@@ -1,7 +1,7 @@
 bin_PROGRAMS = darcs
 darcs_SOURCES = cl-darcs.asd apply-patch.lisp cmdline.lisp commute.lisp condition.lisp diff.lisp
display-patch.lisp dump-clisp.lisp dump-sbcl.lisp equal.lisp get.lisp getopt.lisp ifstar.lisp
inflate.lisp invert-patch.lisp merge.lisp packages.lisp patch-core.lisp patchinfo.lisp
pending.lisp prefs.lisp pristine.lisp pull.lisp read-patch.lisp record.lisp repo.lisp
revert.lisp send.lisp touching.lisp unreadable-stream.lisp unwind.lisp upath.lisp util.lisp write-patch.lisp

-SUBDIRS=doc
+info_TEXINFOS=doc/cl-darcs.texi

 # satisfy ASDF's tarball name convention
 distdir=$(PACKAGE)_$(VERSION)

(Continue reading)

mhenoch | 3 Apr 00:00

r197 - cl-darcs/trunk

Author: mhenoch
Date: Wed Apr  2 17:00:46 2008
New Revision: 197

Modified:
   cl-darcs/trunk/Makefile.am
Log:
Satisfy ASDF's tarball name convention

Modified: cl-darcs/trunk/Makefile.am
==============================================================================
--- cl-darcs/trunk/Makefile.am	(original)
+++ cl-darcs/trunk/Makefile.am	Wed Apr  2 17:00:46 2008
@@ -3,6 +3,9 @@

 SUBDIRS=doc

+# satisfy ASDF's tarball name convention
+distdir=$(PACKAGE)_$(VERSION)
+
 darcs: $(darcs_SOURCES)
 	$(MAKE) build_with_ <at> my_lisp@
mhenoch | 3 Apr 00:00

r196 - cl-darcs/trunk

Author: mhenoch
Date: Wed Apr  2 17:00:30 2008
New Revision: 196

Modified:
   cl-darcs/trunk/Makefile.am
Log:
Don't rebuild darcs unless dependencies changed

Modified: cl-darcs/trunk/Makefile.am
==============================================================================
--- cl-darcs/trunk/Makefile.am	(original)
+++ cl-darcs/trunk/Makefile.am	Wed Apr  2 17:00:30 2008
@@ -3,7 +3,8 @@

 SUBDIRS=doc

-darcs: build_with_ <at> my_lisp@
+darcs: $(darcs_SOURCES)
+	$(MAKE) build_with_ <at> my_lisp@

 build_with_clisp:
 	@CLISP@ @CLISP_FLAGS@ @srcdir@/dump-clisp.lisp

Gmane