diff --git a/clean b/clean new file mode 100755 index 0000000..7507747 --- /dev/null +++ b/clean @@ -0,0 +1,4 @@ +rm -r *.fas +rm -r *.fasl +rm -r *~ + diff --git a/doc/clog-manual.html b/doc/clog-manual.html index c2989ff..f83347a 100644 --- a/doc/clog-manual.html +++ b/doc/clog-manual.html @@ -40,11 +40,12 @@
Get/Setf from connection-data the item-name in hash.
[generic-function] REMOVE-CONNECTION-DATA-ITEM CLOG-OBJ ITEM-NAME
+ +Remove from connection-data the item-name in hash.
[generic-function] SET-ON-SELECT CLOG-OBJ ON-SELECT-HANDLER
Set the ON-SELECT-HANDLER for CLOG-OBJ. If ON-SELECT-HANDLER
-is nil unbind the event. This event is activated by using submit on a form. If
-this even is bound, you must call the form submit manually.
[generic-function] SET-ON-SUBMIT CLOG-OBJ ON-SUBMIT-HANDLER
Set the ON-SUBMIT-HANDLER for CLOG-OBJ. If ON-SUBMIT-HANDLER
-is nil unbind the event.
[generic-function] SET-ON-SELECT CLOG-OBJ ON-SELECT-HANDLER
Set the ON-SELECT-HANDLER for CLOG-OBJ. If ON-SELECT-HANDLER
-is nil unbind the event. This event is activated by using submit on a form. If
-this even is bound, you must call the form submit manually.
HTML elemen.
-+
:AUTO-PLACE (default t) place-inside-bottom-of [generic-function] CREATE-IMG CLOG-OBJ &KEY URL-SRC ALT-TEXT AUTO-PLACE
-Create a new CLOG-Img as child of CLOG-OBJ with :CONTENT
-(default "") and if :AUTO-PLACE (default t) place-inside-bottom-of
-CLOG-OBJ. Use width and height properties before placing image to constrain
-image size.
Create a new CLOG-Img as child of CLOG-OBJ with :URL-SRC
+(default "") and :ALT-TEXT (default "") if :AUTO-PLACE (default t)
+place-inside-bottom-of CLOG-OBJ. Use width and height properties before
+placing image to constrain image size.
:AUTO-PLACE (default t) place-inside-
CLOG-OBJ
+CLOG-Meter - Class for CLOG Meters
[class] CLOG-METER CLOG-ELEMENT
+ +CLOG Meter Objects.
[generic-function] CREATE-METER CLOG-OBJ &KEY VALUE HIGH LOW MAXIMUM MINIMUM OPTIMUM AUTO-PLACE
+ +Create a new CLOG-Meter as child of CLOG-OBJ with VALUE
+(default 0) HIGH (default 100) LOW (default 0) MAXIMUM (default 100) MINIMUM
+(default 0) OPTIMUM (default 50) and if :AUTO-PLACE (default t)
+place-inside-bottom-of CLOG-OBJ.
[generic-function] VALUE CLOG-PROGRESS-BAR
+ +Get/Setf the value of the progress-bar.
[generic-function] HIGH CLOG-METER
+ +Get/Setf the high of the meter.
[generic-function] LOW CLOG-METER
+ +Get/Setf the low of the meter.
[generic-function] MINIMUM CLOG-METER
+ +Get/Setf the minimum of the meter.
[generic-function] MAXIMUM CLOG-PROGRESS-BAR
+ +Get/Setf the maximum of the progress-bar.
[generic-function] OPTIMUM CLOG-METER
+ +Get/Setf the optimum of the meter.
CLOG-Progress-Bar - Class for CLOG Progress Bars
[class] CLOG-PROGRESS-BAR CLOG-ELEMENT
+ +CLOG Progress-Bar Objects.
[generic-function] CREATE-PROGRESS-BAR CLOG-OBJ &KEY VALUE MAXIMUM AUTO-PLACE
+ +Create a new CLOG-Progress-Bar as child of CLOG-OBJ with VALUE
+(default 0) MAXIMUM (default 100) and if :AUTO-PLACE (default t)
+place-inside-bottom-of CLOG-OBJ.
[generic-function] VALUE CLOG-PROGRESS-BAR
+ +Get/Setf the value of the progress-bar.
[generic-function] MAXIMUM CLOG-PROGRESS-BAR
+ +Get/Setf the maximum of the progress-bar.
CLOG-P - Class for CLOG Paragraphs
:AUTO-PLACE (default t) place-inside-
[generic-function] CREATE-SPAN CLOG-OBJ &KEY CONTENT AUTO-PLACE
+[generic-function] CREATE-SPAN CLOG-OBJ CONTENT &KEY AUTO-PLACE
-Create a new CLOG-Span as child of CLOG-OBJ with :CONTENT
-(default "") and if :AUTO-PLACE (default t) place-inside-bottom-of
+
Create a new CLOG-Span as child of CLOG-OBJ with CONTENT
+and if :AUTO-PLACE (default t) place-inside-bottom-of
CLOG-OBJ
+ +
CLOG-Form - Class for organizing Form Elements in to a From
+ + + +[class] CLOG-FORM CLOG-ELEMENT
+ +CLOG Form Objecs is the base class for all html forms.
[generic-function] CREATE-FORM CLOG-OBJ &KEY AUTO-PLACE
+ +Create a new CLOG-Form as child of CLOG-OBJ that organizes
+a collection of form elements in to a singnle form if :AUTO-PLACE (default t)
+place-inside-bottom-of CLOG-OBJ. In CLOG a form's on-submit handler should be
+set and the form elelement values handled in that handler as opposed to the
+HTML model of submitting to a new "page".
CLOG-Form-Element - Class for form elements
+ + + +[class] CLOG-FORM-ELEMENT CLOG-ELEMENT
+ +CLOG Form Element Object is the base class for all form
+elements.
[generic-function] CREATE-FORM-ELEMENT CLOG-FORM ELEMENT-TYPE &KEY NAME VALUE LABEL
+ +Create a new clog-form-element as child of CLOG-FORM.
+clog-form-elements are always placed with in the CLOG-FORM in the DOM
[generic-function] VALUE CLOG-PROGRESS-BAR
+ +Get/Setf the value of the progress-bar.
[generic-function] PLACE-HOLDER CLOG-FORM-ELEMENT
+ +Get/Setf from element place holder.
CLOG-Label - Class for CLOG Labels
[class] CLOG-LABEL CLOG-ELEMENT
+ +CLOG Form Element Label Object
[generic-function] CREATE-LABEL CLOG-FORM &KEY CONTENT LABEL-FOR
+ +Create a new clog-label as child of CLOG-FORM.
[generic-function] LABEL-FOR CLOG-LABEL ELEMENT
+ +Set label is for ELEMENT.
+
-
CLOG-Body - CLOG Body Objects
:AUTO-PLACE (default t) place-inside-
CLOG-Body - Properties
+ + +[generic-function] RUN CLOG-BODY
+ +Keeps the main thread alive to prevent garbage +collection of local objects when not using connection-data objects +or global objects.
:AUTO-PLACE (default t) place-inside-
-
CLOG-Window - CLOG Window Objects
ON-ORIENTATION-CHANGE-HANDLER is nil unbind the event.
-
CLOG-Document - CLOG Document Objects
ON-ORIENTATION-CHANGE-HANDLER is nil unbind the event.
-
CLOG-Location - CLOG Location Objects
ON-ORIENTATION-CHANGE-HANDLER is nil unbind the event.
-
CLOG-Navigator - CLOG Navigator Objects