[graphic-forms-cvs] r416 - in trunk: . docs/manual src/demos/textedit src/demos/unblocked

junrue at common-lisp.net junrue at common-lisp.net
Sun Dec 17 05:59:29 UTC 2006


Author: junrue
Date: Sun Dec 17 00:59:28 2006
New Revision: 416

Added:
   trunk/docs/manual/gfc-symbols.xml
Modified:
   trunk/README.txt
   trunk/docs/manual/Makefile
   trunk/docs/manual/api.xml
   trunk/docs/manual/graphic-forms.xml
   trunk/docs/manual/graphic-forms.xsl
   trunk/docs/manual/introduction.xml
   trunk/graphic-forms-tests.asd
   trunk/graphic-forms-uitoolkit.asd
   trunk/src/demos/textedit/textedit-window.lisp
   trunk/src/demos/unblocked/unblocked-window.lisp
Log:
bump up version string

Modified: trunk/README.txt
==============================================================================
--- trunk/README.txt	(original)
+++ trunk/README.txt	Sun Dec 17 00:59:28 2006
@@ -1,6 +1,6 @@
 
-Graphic-Forms README for version 0.7.0 (1 December 2006)
-Copyright (c) 2006, Jack D. Unrue
+Graphic-Forms README for version 0.8.0 (xx xxxxxx 2007)
+Copyright (c) 2006-2007, Jack D. Unrue
 
 Graphic-Forms is a user interface library implemented in Common Lisp focusing
 on the Windows(R) platform. Graphic-Forms is licensed under the terms of the

Modified: trunk/docs/manual/Makefile
==============================================================================
--- trunk/docs/manual/Makefile	(original)
+++ trunk/docs/manual/Makefile	Sun Dec 17 00:59:28 2006
@@ -2,19 +2,20 @@
 #
 # Makefile
 #
-# Copyright (c) 2006, Jack D. Unrue
+# Copyright (c) 2006-2007, Jack D. Unrue
 #
 
-VERSION     = 0.7
+VERSION     = 0.8
 
-CHM-DEPS    = gfs-tmp-pkg.xml gfg-tmp-pkg.xml gfw-tmp-pkg.xml                   \
+CHM-DEPS    = gfs-tmp-pkg.xml gfg-tmp-pkg.xml gfw-tmp-pkg.xml gfc-tmp-pkg.xml   \
               constants.xml api.xml                                             \
               catalog.xml glossary.xml graphic-forms.xml image-data-plugins.xml \
               introduction.xml legal.xml miscellaneous-topics.xml
 COMMON-DEPS = gf-data.xsl gf-package.xsl clhs-table.xml win32-api-table.xml
 
 TMP-XML     = gfs-tmp-pkg.xml gfs-tmp-syms.xml gfg-tmp-pkg.xml gfg-tmp-syms.xml \
-              gfw-tmp-pkg.xml gfw-tmp-syms.xml tmp.xml
+              gfw-tmp-pkg.xml gfw-tmp-syms.xml gfc-tmp-pkg.xml gfc-tmp-syms.xml \
+              tmp.xml
 
 XSLT-PROC   = xsltproc --nonet
 
@@ -24,6 +25,12 @@
 	-hhc htmlhelp.hhp; exit 0 # muffle Error Ignored msg due to hhc exit value 1
 	find . \( -name "*~" -o -name "*.html" -o -name "*.hhk" -o -name "*.hhc" -o -name "*.hhp" \) -exec rm {} \;
 
+gfc-tmp-syms.xml: gfc-symbols.xml $(COMMON-DEPS)
+	$(XSLT-PROC) --output $@ gf-data.xsl gfc-symbols.xml
+
+gfc-tmp-pkg.xml: gfc-tmp-syms.xml gfc-symbols.xml $(COMMON-DEPS)
+	$(XSLT-PROC) --stringparam symbol-file gfc-tmp-syms.xml --output $@ gf-package.xsl gfc-symbols.xml
+
 gfs-tmp-syms.xml: gfs-symbols.xml $(COMMON-DEPS)
 	$(XSLT-PROC) --output $@ gf-data.xsl gfs-symbols.xml
 

Modified: trunk/docs/manual/api.xml
==============================================================================
--- trunk/docs/manual/api.xml	(original)
+++ trunk/docs/manual/api.xml	Sun Dec 17 00:59:28 2006
@@ -1,7 +1,7 @@
 <!--
     api.xml
 
-    Copyright (c) 2006, Jack D. Unrue
+    Copyright (c) 2006-2007, Jack D. Unrue
 -->
 <chapter id="api">
   <title>API Reference</title>
@@ -11,6 +11,7 @@
   </para>
 
   &constants;
+  &gfcpkg;
   &gfgpkg;
   &gfspkg;
   &gfwpkg;

Added: trunk/docs/manual/gfc-symbols.xml
==============================================================================
--- (empty file)
+++ trunk/docs/manual/gfc-symbols.xml	Sun Dec 17 00:59:28 2006
@@ -0,0 +1,28 @@
+<?xml version="1.0"?>
+<!--
+    gfc-symbols.xml
+
+    Copyright (c) 2006-2007, Jack D. Unrue
+-->
+
+<package name="gfc" fullname="graphic-forms.uitoolkit.custom">
+
+  <description>
+    The symbols in this package correspond to custom components built on top
+    of the rest of the library which don't necessarily have an immediate
+    native peer.
+  </description>
+
+  <!-- CONDITIONS -->
+
+  <!-- CLASSES -->
+
+  <!-- STRUCTURES -->
+
+  <!-- FUNCTIONS -->
+
+  <!-- GENERIC FUNCTIONS -->
+
+  <!-- ACCESSORS -->
+
+</package>

Modified: trunk/docs/manual/graphic-forms.xml
==============================================================================
--- trunk/docs/manual/graphic-forms.xml	(original)
+++ trunk/docs/manual/graphic-forms.xml	Sun Dec 17 00:59:28 2006
@@ -2,7 +2,7 @@
 <!--
     graphic-forms.xml
 
-    Copyright (c) 2006, Jack D. Unrue
+    Copyright (c) 2006-2007, Jack D. Unrue
 -->
 <!DOCTYPE book PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd"
 [
@@ -10,6 +10,7 @@
   <!ENTITY introduction  SYSTEM "introduction.xml">
   <!ENTITY api           SYSTEM "api.xml">
   <!ENTITY constants     SYSTEM "constants.xml">
+  <!ENTITY gfcpkg        SYSTEM "gfc-tmp-pkg.xml">      <!-- generated file -->
   <!ENTITY gfgpkg        SYSTEM "gfg-tmp-pkg.xml">      <!-- generated file -->
   <!ENTITY gfspkg        SYSTEM "gfs-tmp-pkg.xml">      <!-- generated file -->
   <!ENTITY gfwpkg        SYSTEM "gfw-tmp-pkg.xml">      <!-- generated file -->

Modified: trunk/docs/manual/graphic-forms.xsl
==============================================================================
--- trunk/docs/manual/graphic-forms.xsl	(original)
+++ trunk/docs/manual/graphic-forms.xsl	Sun Dec 17 00:59:28 2006
@@ -2,7 +2,7 @@
 <!--
     graphic-forms.xsl
 
-    Copyright (c) 2006, Jack D. Unrue
+    Copyright (c) 2006-2007, Jack D. Unrue
 -->
 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
 
@@ -31,7 +31,7 @@
 -->
   <xsl:template name="user.footer.content">
     <div class="footer">
-      Copyright &#x00A9; 2006, Jack D. Unrue
+      Copyright &#x00A9; 2006-2007, Jack D. Unrue
     </div>
   </xsl:template>
   

Modified: trunk/docs/manual/introduction.xml
==============================================================================
--- trunk/docs/manual/introduction.xml	(original)
+++ trunk/docs/manual/introduction.xml	Sun Dec 17 00:59:28 2006
@@ -1,7 +1,7 @@
 <!--
     introduction.xml
 
-    Copyright (c) 2006, Jack D. Unrue
+    Copyright (c) 2006-2007, Jack D. Unrue
 -->
 <chapter id="introduction">
   <title>Introduction</title>
@@ -46,6 +46,7 @@
     <title>Prerequisites</title>
     <bridgehead renderas="sect2">Supported Common Lisp Implementations</bridgehead>
     <itemizedlist mark="bullet" spacing="compact">
+      <listitem>Allegro CL 8.0</listitem>
       <listitem>CLISP 2.40 or later</listitem>
       <listitem>LispWorks 4.4.6</listitem>
       <listitem>
@@ -80,7 +81,7 @@
         <listitem>
           <ulink url="http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/cclan/asdf"/>
           <para role="normal">
-            Note that ASDF is bundled with SBCL.
+            Note that ASDF is bundled with Allegro CL and SBCL.
           </para>
         </listitem>
       </varlistentry>

Modified: trunk/graphic-forms-tests.asd
==============================================================================
--- trunk/graphic-forms-tests.asd	(original)
+++ trunk/graphic-forms-tests.asd	Sun Dec 17 00:59:28 2006
@@ -3,7 +3,7 @@
 ;;;;
 ;;;; graphic-forms-tests.asd
 ;;;;
-;;;; Copyright (C) 2006, Jack D. Unrue
+;;;; Copyright (C) 2006-2007, Jack D. Unrue
 ;;;; All rights reserved.
 ;;;;
 ;;;; Redistribution and use in source and binary forms, with or without
@@ -56,7 +56,7 @@
 
 (defsystem graphic-forms-tests
   :description "Graphic-Forms UI Toolkit Tests"
-  :version "0.7.0"
+  :version "0.8.0"
   :author "Jack D. Unrue"
   :licence "BSD"
   :components

Modified: trunk/graphic-forms-uitoolkit.asd
==============================================================================
--- trunk/graphic-forms-uitoolkit.asd	(original)
+++ trunk/graphic-forms-uitoolkit.asd	Sun Dec 17 00:59:28 2006
@@ -3,7 +3,7 @@
 ;;;;
 ;;;; graphic-forms-uitoolkit.asd
 ;;;;
-;;;; Copyright (C) 2006, Jack D. Unrue
+;;;; Copyright (C) 2006-2007, Jack D. Unrue
 ;;;; All rights reserved.
 ;;;;
 ;;;; Redistribution and use in source and binary forms, with or without
@@ -41,7 +41,7 @@
 
 (defsystem graphic-forms-uitoolkit
   :description "Graphic-Forms UI Toolkit"
-  :version "0.7.0"
+  :version "0.8.0"
   :author "Jack D. Unrue"
   :licence "BSD"
   :depends-on ("cffi" "lw-compat" "closer-mop" "macro-utilities" "binary-data")

Modified: trunk/src/demos/textedit/textedit-window.lisp
==============================================================================
--- trunk/src/demos/textedit/textedit-window.lisp	(original)
+++ trunk/src/demos/textedit/textedit-window.lisp	Sun Dec 17 00:59:28 2006
@@ -1,7 +1,7 @@
 ;;;;
 ;;;; textedit-window.lisp
 ;;;;
-;;;; Copyright (C) 2006, Jack D. Unrue
+;;;; Copyright (C) 2006-2007, Jack D. Unrue
 ;;;; All rights reserved.
 ;;;;
 ;;;; Redistribution and use in source and binary forms, with or without
@@ -159,7 +159,7 @@
   (declare (ignore disp item))
   (let* ((*default-pathname-defaults* (parse-namestring gfsys::*textedit-dir*))
          (image-path (merge-pathnames "about.bmp")))
-    (about-demo *textedit-win* image-path "About TextEdit" "TextEdit version 0.7")))
+    (about-demo *textedit-win* image-path "About TextEdit" "TextEdit version 0.8")))
 
 (defun textedit-startup ()
   (let ((menubar (gfw:defmenu ((:item "&File"                      :callback #'manage-textedit-file-menu

Modified: trunk/src/demos/unblocked/unblocked-window.lisp
==============================================================================
--- trunk/src/demos/unblocked/unblocked-window.lisp	(original)
+++ trunk/src/demos/unblocked/unblocked-window.lisp	Sun Dec 17 00:59:28 2006
@@ -1,7 +1,7 @@
 ;;;;
 ;;;; unblocked-window.lisp
 ;;;;
-;;;; Copyright (C) 2006, Jack D. Unrue
+;;;; Copyright (C) 2006-2007, Jack D. Unrue
 ;;;; All rights reserved.
 ;;;;
 ;;;; Redistribution and use in source and binary forms, with or without
@@ -87,7 +87,7 @@
   (declare (ignore disp item))
   (let* ((*default-pathname-defaults* (parse-namestring gfsys::*unblocked-dir*))
          (image-path (merge-pathnames "about.bmp")))
-    (about-demo *unblocked-win* image-path "About UnBlocked" "UnBlocked version 0.7")))
+    (about-demo *unblocked-win* image-path "About UnBlocked" "UnBlocked version 0.8")))
 
 (defun unblocked-startup ()
   (let ((menubar (gfw:defmenu ((:item "&File"



More information about the Graphic-forms-cvs mailing list