summaryrefslogtreecommitdiff
path: root/swat/scripting/client
AgeCommit message (Collapse)AuthorFilesLines
2007-10-10r24985: Start to revert us back to the old-style SWAT, while trying not toAndrew Bartlett6-0/+583
loose some of the fixes in the meantime. Andrew Bartlett (This used to be commit 13acff5ed259e7b5859fd2324ea7740b8f9e5fd7)
2007-10-10r20446: rename swat directory to swat.obsolete; keeping it around since ↵Derrell Lipman6-583/+0
there is lots of useful info in it. (This used to be commit 5f9f72a9cfab80561b23284001b67c4ea961757b)
2007-10-10r10228: Reorganizing a bit, trying to simplify. This is an attemptDeryck Hodge1-53/+0
to find what's going wrong in IE formatting. This is some better, but still IE needs help. deryck (This used to be commit e7015c19374e1db8165790c623cb45e33b0a92df)
2007-10-10r10212: An IE fix. Must set initial values in the onload function.Deryck Hodge1-6/+7
deryck (This used to be commit 3264ccf7438e003c3ed217f2d4a7315aceb05eb1)
2007-10-10r9779: Add a contextmenu function to be used by all window/widget objects.Deryck Hodge1-22/+15
deryck (This used to be commit f0c7b43767b713f15d9c50fc744da0a6582618b2)
2007-10-10r9763: Add the start bar as a widget from theDeryck Hodge1-2/+18
desktop file. This is more portable to IE, though there are still some IE issues hanging around. deryck (This used to be commit a70b52bb04689de90ee5ec59109d669175b91c04)
2007-10-10r9761: Move initial widget setup to desktop library. Now, just by includingDeryck Hodge1-0/+23
desktop.js, you get the basic desktop layout. deryck (This used to be commit 6acc7ec7c2957e1487ee72f883079e1680dd9896)
2007-10-10r9759: Create some wrappers for QxWidget. This gives us some pre-fabbedDeryck Hodge1-16/+58
windows, which set size and positioning. To use: var myWin = new Window.large("Some Window Title"); var myWin = new Window.standard("Some Window Title"); var myWin = new Window.small("Some Window Title"); You can omit the title if you don't need one. Also, var myWin = new Window(); will give you the random positioning and no predetermined sizing. deryck (This used to be commit 92d6bb90a64591b13f4d1bec77ebebcd1198914d)
2007-10-10r9710: Filename change for clarity's sake.Deryck Hodge1-0/+0
deryck (This used to be commit 4acd4489c9f016f7f48ba1cff231cbfc56925547)
2007-10-10r9668: Cross-browser fix for IE, when adding scripts on the fly.Deryck Hodge1-2/+9
deryck (This used to be commit 1f4e65ce96ec8c4335bfabbe54989a8cb431d773)
2007-10-10r9663: Portability fix for IE.Deryck Hodge1-2/+2
deryck (This used to be commit 87cb23aae377a9cdce790881c65535ed4d3931e1)
2007-10-10r9651: Start to group all SWAT specific windowing, widgets, etc. in oneDeryck Hodge1-0/+99
file. This allows basic style and event code to be set in one place, though we'll still have to override for a specific position or look. More to come... deryck (This used to be commit 9d5482d2aaff2082d85d626c288f2ad16e20b6ae)
2007-10-10r9635: Seperate window logic from registry js file.Deryck Hodge3-33/+60
This allows for flexibility in display format, which will make more sense when I start working on windows, tabs, etc. Add the beginnings of a document.js object that allows us to add and remove scripts as we use them, which will ensure we only load what we need. A desktop GUI runs from a single page, so we can't load js files by changing pages. deryck (This used to be commit b4f6f81d7bbf87fcb7c7c9bd4a7164aabaeedc1c)
2007-10-10r9579: Desktop SWAT opens now with a little server status window.Deryck Hodge1-0/+49
This includes a table layout that can be reused (see QxListView in status.js). Some formatting fixes, too. deryck (This used to be commit f95bf0adf760b8799ec02ec68ce42516ca40b6d2)
2007-10-10r9470: non-working attempt to add a little table for values to the reg editorAndrew Tridgell1-5/+27
hopefully deryck will be able to tell me what I've screwed up :-) (This used to be commit e68db751f064a0d968bd0995805141ffe5938ee7)
2007-10-10r9466: add display of values as well as keys in the registry editorAndrew Tridgell1-5/+42
(This used to be commit 62d55a250afa3e3923a6b9da7b59177ad59d55a3)
2007-10-10r9465: handle encoding and decoding of pointers, representing them as aAndrew Tridgell1-1/+1
string containing "(POINTER)" (This used to be commit 6f69eeb8f258063f1ac911ab38e667e7743ccba3)
2007-10-10r9434: moved the registry editor into a common js library. Deryck, does thisAndrew Tridgell1-0/+118
look ok? Apologies if this treads on your toes. (This used to be commit 8295eb01c0e1eec4f7c5bd211eac80b92ff9549e)
2007-10-10r9228: cleanup and simplify the AJAJ code - part 2Andrew Tridgell1-6/+26
(This used to be commit bb3ab2c47b098ed57af358c4f5c6ad4d4d26eb33)
2007-10-10r9211: don't try to encode functions in the AJAJ object encoderAndrew Tridgell1-1/+1
(This used to be commit a08104a13c722b3888aecd365e32aae63ea481e5)
2007-10-10r9176: added a much neater method of calling printf on the server from ↵Andrew Tridgell1-9/+38
client side js. Just use srv_printf() and normal printf arguments (This used to be commit 11c7e8db3d2501a6a439d3e3a63a5055cc577f51)
2007-10-10r9136: made the 'AJAJ' code portable to IE and OperaAndrew Tridgell1-1/+32
(This used to be commit b6b531533e2c4d6d927df29905e49a775e92f3c1)
2007-10-10r9134: added the client side js library code for handling remote 'AJAJ' callsAndrew Tridgell2-0/+122
into our web server (This used to be commit 530717122a3c7e34258db8ed0bfd0cc00624b903)