diff --git a/README.md b/README.md index 82156e9..c028cd6 100644 --- a/README.md +++ b/README.md @@ -338,5 +338,3 @@ High Order Extensions to CLOG - clog-auth - Authentication and authorization framework - clog-plugin - Custom Control Plug-in template for Builder and CLOG - -(See [FUTURE.md](FUTURE.md) for future plans) diff --git a/doc/clog-manual.html b/doc/clog-manual.html index 41f1a90..358bc97 100644 --- a/doc/clog-manual.html +++ b/doc/clog-manual.html @@ -469,7 +469,8 @@ functions. The clog-obj passed as the first parameter of the macro is passed as the parent obj to the declared object, after that nested levels of decleraton are used as the parent clog-obj. To bind a variable to any created clog object using :bind var. See tutorial 33 -and 22 for examples.
+and 22 for examples. All create- symbols must be in or used by +package.CLOG-Group - Utility Class for CLOG-Obj storage
@@ -1469,6 +1470,24 @@ after attachment is changed to one unique to this session.Places NEXT-OBJ inside bottom of CLOG-OBJ in DOM
[generic-function] PLACE-TEXT-INSIDE-TOP-OF CLOG-OBJ TEXT
+ +Places text inside top of CLOG-OBJ in DOM
[generic-function] PLACE-TEXT-INSIDE-BOTTOM-OF CLOG-OBJ TEXT
+ +Places text inside bottom of CLOG-OBJ in DOM
CLOG-Element - General Properties
@@ -8294,7 +8313,7 @@ The on-window-change clog-obj received is the new window
[generic-function] CREATE-GUI-WINDOW CLOG-OBJ &KEY TITLE CONTENT LEFT TOP WIDTH HEIGHT MAXIMIZE HAS-PINNER KEEP-ON-TOP HIDDEN CLIENT-MOVEMENT HTML-ID
+[generic-function] CREATE-GUI-WINDOW CLOG-OBJ &KEY TITLE CONTENT LEFT TOP WIDTH HEIGHT MAXIMIZE HAS-PINNER KEEP-ON-TOP HIDDEN CLIENT-MOVEMENT BORDER-CLASS TITLE-CLASS HTML-ID
Create a clog-gui-window. If client-movement is t then use jquery-ui to move/resize and will not work on mobile. When client-movement @@ -9847,50 +9866,16 @@ very limitted to just open a new tab with url unless is a localhost url.
[generic-function] REQUEST-ANIMATION-FRAME CLOG-WINDOW
- - -[generic-function] STORAGE-LENGTH CLOG-WINDOW STORAGE-TYPE
- -Number of entries in browser STORAGE-TYPE.
-(local = persistant or session)
[generic-function] STORAGE-KEY CLOG-WINDOW STORAGE-TYPE KEY-NUM
- -Return the key for entry number KEY-NUM in browser
-STORAGE-TYPE. (local = persistant or session)
[generic-function] STORAGE-REMOVE CLOG-WINDOW STORAGE-TYPE KEY-NAME
- -Remove the storage key and value in browser
-STORAGE-TYPE. (local = persistant or session)
[generic-function] STORAGE-ELEMENT CLOG-WINDOW STORAGE-TYPE KEY-NAME
- -Get/Setf storage-element on browser client.
Requests the browser to send an on-animation-frame +on the next screen redraw. This event only fires one time per request. +The data parementer of the event function contains the time stamp +to the millisecond.
CLOG-Window - Events
@@ -9946,14 +9931,15 @@ IfON-BEFORE-UNLOAD-HANDLER is nil unbind the event.
If ON-ORIENTATION-CHANGE-HANDLER is nil unbind the event.
-
+
[generic-function] SET-ON-STORAGE CLOG-WINDOW ON-STORAGE-HANDLER
+[generic-function] SET-ON-ANIMATION-FRAME CLOG-WINDOW ON-ANIMATION-FRAME-HANDLER
-Set the ON-STORAGE-HANDLER for CLOG-OBJ. The
-on-storage event is fired for changes to :local storage keys.
Set the ON-ANIMATION-FRAME-HANDLER for CLOG-OBJ the data
+parameter of the function is the time stamp. If
+ON-ANIMATION-FRAME-HANDLER is nil unbind the event.
@@ -9992,6 +9978,66 @@ on-storage event is fired for changes to :local storage keys.
Resize browser window to x y.
+CLOG-Window - Storage Methods
+ + + +[generic-function] STORAGE-LENGTH CLOG-WINDOW STORAGE-TYPE
+ +Number of entries in browser STORAGE-TYPE.
+(local = persistant or session)
[generic-function] STORAGE-KEY CLOG-WINDOW STORAGE-TYPE KEY-NUM
+ +Return the key for entry number KEY-NUM in browser
+STORAGE-TYPE. (local = persistant or session)
[generic-function] STORAGE-REMOVE CLOG-WINDOW STORAGE-TYPE KEY-NAME
+ +Remove the storage key and value in browser
+STORAGE-TYPE. (local = persistant or session)
[generic-function] STORAGE-ELEMENT CLOG-WINDOW STORAGE-TYPE KEY-NAME
+ +Get/Setf storage-element on browser client.
CLOG-Window - Storage Events
+ + + +[generic-function] SET-ON-STORAGE CLOG-WINDOW ON-STORAGE-HANDLER
+ +Set the ON-STORAGE-HANDLER for CLOG-OBJ. The
+on-storage event is fired for changes to :local storage keys.