mkws-moved-to-github.git
9 years agoMove "required development tools" section from top-level README into
Mike Taylor [Thu, 9 Oct 2014 14:52:05 +0000 (15:52 +0100)]
Move "required development tools" section from top-level README into
developer's guide.

9 years agoMove "required development tools" section from top-level README into
Mike Taylor [Thu, 9 Oct 2014 14:51:09 +0000 (15:51 +0100)]
Move "required development tools" section from top-level README into
developer's guide.

9 years agoRewrite for new Debian stable.
Mike Taylor [Thu, 9 Oct 2014 14:47:47 +0000 (15:47 +0100)]
Rewrite for new Debian stable.

9 years agoClarify non-requirement of Debian.
Mike Taylor [Thu, 9 Oct 2014 14:36:29 +0000 (15:36 +0100)]
Clarify non-requirement of Debian.

9 years agoClean up the top-level README
Mike Taylor [Thu, 9 Oct 2014 14:27:00 +0000 (15:27 +0100)]
Clean up the top-level README

9 years agoRedundant
Mike Taylor [Thu, 9 Oct 2014 14:24:07 +0000 (15:24 +0100)]
Redundant

9 years agoUpdate list of what's provided.
Mike Taylor [Thu, 9 Oct 2014 14:22:54 +0000 (15:22 +0100)]
Update list of what's provided.

9 years agoMerge branch 'master' of ssh://git.indexdata.com/home/git/pub/mkws
Mike Taylor [Thu, 9 Oct 2014 12:39:35 +0000 (13:39 +0100)]
Merge branch 'master' of ssh://git.indexdata.com/home/git/pub/mkws

9 years agoFix MKWS-283 ("mkws-complete.js doesn't work (though its components do)")
Mike Taylor [Thu, 9 Oct 2014 12:39:20 +0000 (13:39 +0100)]
Fix MKWS-283 ("mkws-complete.js doesn't work (though its components do)")

And it's literally a one-character fix.

I added a semi-colon to the end of the
    mkws.makeWidget = function() { ... }
assignment. Before commit f9a645b74a9d07ca99973840ee0ceeb07b3c4a83
there was no need for a semi-colon because the widget constructor was
a global function defined using the
    function makeWidget() { ... }
syntax. But now that it's an assignment statement rather than a
function definition, the semi-colon is needed to end the statement.

When mkws-widget.js was included on its own (as it is with all my
testing scripts), that's not a problem. The statement is terminated by
the end of the file (and JavaScript, trying to be "helpful", doesn't
complain about this, but just accepts it silently). But when something
else -- in this case mkws-widget-main.js -- is appended to it, the
interpretation changes, and the concatenations gets parsed as
heaven-knows-what bizarre construct.

Anyway, all is now well: mkws.js, mkws-complete.js and the individual
source files all work.

I guess all this means we ought to be using some kind of lint-like
program on the MKWS source (though IIRC Jason doesn't like JSLint
itself).

9 years agoindent
Wolfram Schneider [Thu, 9 Oct 2014 12:32:33 +0000 (12:32 +0000)]
indent

9 years agoindent
Wolfram Schneider [Thu, 9 Oct 2014 12:31:44 +0000 (12:31 +0000)]
indent

9 years agoMerge branch 'master' of ssh://git.indexdata.com:222/home/git/pub/mkws
Wolfram Schneider [Thu, 9 Oct 2014 12:18:05 +0000 (12:18 +0000)]
Merge branch 'master' of ssh://git.indexdata.com:222/home/git/pub/mkws

9 years agodisable "Check async widget discovery" test which breaks the jasmine test output
Wolfram Schneider [Thu, 9 Oct 2014 12:16:52 +0000 (12:16 +0000)]
disable "Check async widget discovery" test which breaks the jasmine test output

was introduced in 2dc4cb56

9 years agoMerge
Mike Taylor [Thu, 9 Oct 2014 12:11:46 +0000 (13:11 +0100)]
Merge

9 years agoreorder tests in phantomjs-all
Wolfram Schneider [Thu, 9 Oct 2014 12:08:45 +0000 (12:08 +0000)]
reorder tests in phantomjs-all

Run the local devel test first, and mkws-complete.js last

9 years agoFinish Update Handlebars to 2.0.0
Wolfram Schneider [Thu, 9 Oct 2014 12:06:43 +0000 (12:06 +0000)]
Finish Update Handlebars to 2.0.0

see b803151dfab108bc7b0d52273a00b2efc4d56dca

9 years agoMerge branch 'master' of ssh://git.indexdata.com/home/git/pub/mkws
Mike Taylor [Thu, 9 Oct 2014 11:51:51 +0000 (12:51 +0100)]
Merge branch 'master' of ssh://git.indexdata.com/home/git/pub/mkws

9 years agoIgnore handlebars-v2.0.0.js rather than the old handlebars-v1.3.0.js
Mike Taylor [Thu, 9 Oct 2014 11:50:29 +0000 (12:50 +0100)]
Ignore handlebars-v2.0.0.js rather than the old handlebars-v1.3.0.js

9 years agoReorder the files that make up mkws.js
Mike Taylor [Thu, 9 Oct 2014 11:49:37 +0000 (12:49 +0100)]
Reorder the files that make up mkws.js

9 years agosimplify code, and test with tools/htdocs/mkws-complete.js, MKWS-282
Wolfram Schneider [Thu, 9 Oct 2014 11:48:47 +0000 (13:48 +0200)]
simplify code, and test with tools/htdocs/mkws-complete.js, MKWS-282

9 years agoImprove detection of failures, part of MKWS-282
Wolfram Schneider [Thu, 9 Oct 2014 11:39:50 +0000 (11:39 +0000)]
Improve detection of failures, part of MKWS-282

1. count number of failed tests
2. check if we run tests at all

9 years agoWording tweak.
Mike Taylor [Thu, 9 Oct 2014 10:15:59 +0000 (11:15 +0100)]
Wording tweak.

9 years agoFix MKWS-280: We should not define globals named "widget" and "team".
Mike Taylor [Wed, 8 Oct 2014 10:35:20 +0000 (11:35 +0100)]
Fix MKWS-280: We should not define globals named "widget" and "team".

Rename the widget function to mkws.makeWidget

9 years agoRename the widget function to makeWidget
Mike Taylor [Wed, 8 Oct 2014 10:25:40 +0000 (11:25 +0100)]
Rename the widget function to makeWidget

9 years agoA local-only path accidentally found its way into a demo.
Jason Skomorowski [Tue, 7 Oct 2014 19:46:42 +0000 (15:46 -0400)]
A local-only path accidentally found its way into a demo.

9 years agoMove termlist hiding to CSS MKWS-258
Jason Skomorowski [Tue, 7 Oct 2014 19:14:21 +0000 (15:14 -0400)]
Move termlist hiding to CSS MKWS-258

9 years agoSet the "record" callback whenever "records" is subscribed, since the
Mike Taylor [Tue, 7 Oct 2014 16:57:35 +0000 (17:57 +0100)]
Set the "record" callback whenever "records" is subscribed, since the
former only gets subscribed from the latter's callback.

9 years agoSimplify logic for establishing onTerm callback.
Mike Taylor [Tue, 7 Oct 2014 16:30:21 +0000 (17:30 +0100)]
Simplify logic for establishing onTerm callback.

9 years agoFix MKWS-272 ("Do not make unnecessary SP/PP2 requests")
Mike Taylor [Tue, 7 Oct 2014 16:28:14 +0000 (17:28 +0100)]
Fix MKWS-272 ("Do not make unnecessary SP/PP2 requests")

Only set PZ2 callback for operations that we actually use. We
determine this by checking whether relevant events have been
subscribed to. (Actually, due to the way event queueing is
implemented, we also get a positive for events that have been
published, even if not subscribed to. But (A) that's going to be very
rare, and (B) even if were to happen, it would fail safe by setting up
unneeded callbacks rather than failing to set up needed ones.)

9 years agoMerge branch 'master' of ssh://git.indexdata.com/home/git/private/mkws
Mike Taylor [Tue, 7 Oct 2014 16:21:33 +0000 (17:21 +0100)]
Merge branch 'master' of ssh://git.indexdata.com/home/git/private/mkws

9 years agoUpdate Handlebars to 2.0.0
Jason Skomorowski [Tue, 7 Oct 2014 16:17:15 +0000 (12:17 -0400)]
Update Handlebars to 2.0.0

9 years agoDeprecate very backwards compatibility.
Jason Skomorowski [Tue, 7 Oct 2014 14:43:34 +0000 (10:43 -0400)]
Deprecate very backwards compatibility.

9 years agopz2 object is now created from contructed parameter array.
Mike Taylor [Tue, 7 Oct 2014 13:21:39 +0000 (14:21 +0100)]
pz2 object is now created from contructed parameter array.

9 years agoPrivate member variable "queues" renamed "m_queues".
Mike Taylor [Tue, 7 Oct 2014 13:19:07 +0000 (14:19 +0100)]
Private member variable "queues" renamed "m_queues".
(It should always have been this.)

9 years agoexpandValue demoted from a member function to a private function.
Mike Taylor [Tue, 7 Oct 2014 12:01:05 +0000 (13:01 +0100)]
expandValue demoted from a member function to a private function.
(It's never called outside of the widget object.)

9 years agoMove mkaePz2 function down the file.
Mike Taylor [Tue, 7 Oct 2014 11:23:41 +0000 (12:23 +0100)]
Move mkaePz2 function down the file.

9 years agoIndent
Mike Taylor [Tue, 7 Oct 2014 11:22:58 +0000 (12:22 +0100)]
Indent

9 years agoMake PZ2 objects only after walking the whole node tree.
Mike Taylor [Tue, 7 Oct 2014 11:04:36 +0000 (12:04 +0100)]
Make PZ2 objects only after walking the whole node tree.

9 years agoExplicitly call makePz2() on freshly created teams.
Mike Taylor [Tue, 7 Oct 2014 10:54:27 +0000 (11:54 +0100)]
Explicitly call makePz2() on freshly created teams.

9 years agoThe team constructor no longer creates its own pz2 object.
Mike Taylor [Tue, 7 Oct 2014 10:54:06 +0000 (11:54 +0100)]
The team constructor no longer creates its own pz2 object.
New comment at the head of the file explains that makePz2() must be called.

9 years agoCreation of the pz2 object is now done in the makePz2 function, which
Mike Taylor [Tue, 7 Oct 2014 10:49:33 +0000 (11:49 +0100)]
Creation of the pz2 object is now done in the makePz2 function, which
is now invoked only at the very end of the constructor.

9 years agoMerge branch 'master' of ssh://git.indexdata.com/home/git/private/mkws
Jason Skomorowski [Tue, 7 Oct 2014 01:49:29 +0000 (21:49 -0400)]
Merge branch 'master' of ssh://git.indexdata.com/home/git/private/mkws

9 years agoRefine facet behavior in the Topic demo MKWS-277
Jason Skomorowski [Tue, 7 Oct 2014 01:48:37 +0000 (21:48 -0400)]
Refine facet behavior in the Topic demo MKWS-277

9 years agoteam() function is now mkws.makeTeam().
Mike Taylor [Mon, 6 Oct 2014 16:12:41 +0000 (17:12 +0100)]
team() function is now mkws.makeTeam().
We don't want to put anything but "mkws" in the top-level namespace.
Also the new name is more explicit about what's happening.

9 years agoteam() function is now mkws.makeTeam().
Mike Taylor [Mon, 6 Oct 2014 16:12:36 +0000 (17:12 +0100)]
team() function is now mkws.makeTeam().
We don't want to put anything but "mkws" in the top-level namespace.
Also the new name is more explicit about what's happening.

9 years agoRepurposed as a reference.html-alike.
Mike Taylor [Mon, 6 Oct 2014 16:11:31 +0000 (17:11 +0100)]
Repurposed as a reference.html-alike.

9 years agostick to cssstyle <= 0.2.14
Wolfram Schneider [Mon, 6 Oct 2014 11:30:03 +0000 (11:30 +0000)]
stick to cssstyle <= 0.2.14

0.2.15 fails for us

9 years agoThe company name is: Index Data
Wolfram Schneider [Mon, 6 Oct 2014 11:16:16 +0000 (11:16 +0000)]
The company name is: Index Data

9 years agoUse "Index Data", not "IndexData".
Mike Taylor [Fri, 3 Oct 2014 19:57:25 +0000 (20:57 +0100)]
Use "Index Data", not "IndexData".

9 years agoFix MKWS-230 "We're STILL re-using inappropriate SP sessions within the same tab"
Mike Taylor [Fri, 3 Oct 2014 16:11:28 +0000 (17:11 +0100)]
Fix MKWS-230 "We're STILL re-using inappropriate SP sessions within the same tab"

Correct handling of session tokens (which are randomly generated in
each new tab/window, then re-used in that tab/window until it's
closed) combined with the hostname and path from the current URL.

9 years agoMove window.name assignment down after all the function definitions.
Mike Taylor [Fri, 3 Oct 2014 16:03:59 +0000 (17:03 +0100)]
Move window.name assignment down after all the function definitions.

9 years agoTowards better cookie names.
Mike Taylor [Fri, 3 Oct 2014 16:00:43 +0000 (17:00 +0100)]
Towards better cookie names.

9 years agoRemove spurious debug.
Jason Skomorowski [Thu, 2 Oct 2014 20:01:07 +0000 (16:01 -0400)]
Remove spurious debug.

9 years agoUse mkws.$, not regular-ass $.
Mike Taylor [Thu, 2 Oct 2014 12:49:42 +0000 (13:49 +0100)]
Use mkws.$, not regular-ass $.

9 years agoRename topic-bootstrap.html to topic.html
Mike Taylor [Thu, 2 Oct 2014 09:57:10 +0000 (10:57 +0100)]
Rename topic-bootstrap.html to topic.html

9 years agoRename topic-bootstrap.css to topic.css
Mike Taylor [Thu, 2 Oct 2014 09:56:15 +0000 (10:56 +0100)]
Rename topic-bootstrap.css to topic.css

9 years agoUse topic.css instead of topic-bootstrap.css
Mike Taylor [Thu, 2 Oct 2014 09:55:56 +0000 (10:55 +0100)]
Use topic.css instead of topic-bootstrap.css

9 years agoLooking at the git history, it seems that the reason ref-bootstrap.html went away...
Mike Taylor [Wed, 1 Oct 2014 13:01:44 +0000 (14:01 +0100)]
Looking at the git history, it seems that the reason ref-bootstrap.html went away is that we're supposed to use topic-bootstrap.html instead. That is rather less broken, so I will re-remove ref-bootstrap.html from the repo, and work on getting topic-bootstrap.html working properly.

9 years agoEmpty mkws_config.
Mike Taylor [Wed, 1 Oct 2014 12:41:56 +0000 (13:41 +0100)]
Empty mkws_config.

9 years agoAdd comment to top-level Makefile on how to get npm into the PATH
Mike Taylor [Wed, 1 Oct 2014 07:10:18 +0000 (07:10 +0000)]
Add comment to top-level Makefile on how to get npm into the PATH

9 years agoReplace outdated service_proxy_auth with sp_auth_credentials
Mike Taylor [Wed, 1 Oct 2014 06:57:02 +0000 (07:57 +0100)]
Replace outdated service_proxy_auth with sp_auth_credentials

9 years agoNot sure what happened to ref-bootstrap.html, but when I went to fix
Mike Taylor [Wed, 1 Oct 2014 06:56:15 +0000 (07:56 +0100)]
Not sure what happened to ref-bootstrap.html, but when I went to fix
its authentication, it was gone from the master branch. Perhaps it
somehow got annihilated in the merge from templateallthemarkup.
Anyway, I have restored it from the live version on caliban.

9 years agoInclude empty SRU widget.
Mike Taylor [Tue, 30 Sep 2014 16:07:51 +0000 (17:07 +0100)]
Include empty SRU widget.

9 years agoNew, empty SRU widget.
Mike Taylor [Tue, 30 Sep 2014 16:07:44 +0000 (17:07 +0100)]
New, empty SRU widget.

9 years agoFix HTML comment.
Mike Taylor [Tue, 30 Sep 2014 15:54:39 +0000 (16:54 +0100)]
Fix HTML comment.

9 years ago"all" target depends on "setup", not the other way around.
Mike Taylor [Tue, 30 Sep 2014 15:54:11 +0000 (16:54 +0100)]
"all" target depends on "setup", not the other way around.

9 years agoFix paths for Mike's desktop box.
Mike Taylor [Tue, 30 Sep 2014 15:53:22 +0000 (16:53 +0100)]
Fix paths for Mike's desktop box.

9 years agoUse kohademo credentials.
Mike Taylor [Tue, 30 Sep 2014 15:52:44 +0000 (16:52 +0100)]
Use kohademo credentials.

9 years agoMerge
Mike Taylor [Tue, 30 Sep 2014 15:52:07 +0000 (16:52 +0100)]
Merge

9 years agoFix over-zealous whitespace removal.
Mike Taylor [Mon, 29 Sep 2014 15:36:16 +0000 (16:36 +0100)]
Fix over-zealous whitespace removal.

9 years agofix dependencies for generated file ../../src/mkws-templates.js, MKWS-273
Wolfram Schneider [Mon, 29 Sep 2014 14:27:24 +0000 (14:27 +0000)]
fix dependencies for generated file ../../src/mkws-templates.js, MKWS-273

9 years agoNew file mkws-examples-mike, initially a copy of the old file that had
Mike Taylor [Mon, 29 Sep 2014 14:24:23 +0000 (15:24 +0100)]
New file mkws-examples-mike, initially a copy of the old file that had
that name before being moved to mkws-examples-mike-mac.

9 years agoRename
Mike Taylor [Mon, 29 Sep 2014 14:23:39 +0000 (15:23 +0100)]
Rename

9 years agoMerge
Mike Taylor [Mon, 29 Sep 2014 13:02:31 +0000 (14:02 +0100)]
Merge

9 years agoNew file, except that I actually made it some time ago when working on
Mike Taylor [Mon, 29 Sep 2014 13:01:42 +0000 (14:01 +0100)]
New file, except that I actually made it some time ago when working on
the "mike" branch. Just used for when I am running a local Service
Proxy on my MacBook. Everyone else can ignore it.

9 years agoRedo for newer Ubuntu and Mike's directory layout.
Mike Taylor [Mon, 29 Sep 2014 13:00:39 +0000 (14:00 +0100)]
Redo for newer Ubuntu and Mike's directory layout.

9 years agoUse the LGPL instead of the GPL.
Mike Taylor [Wed, 24 Sep 2014 08:23:55 +0000 (10:23 +0200)]
Use the LGPL instead of the GPL.
See MKWS-270.

9 years agoFix title.
Mike Taylor [Tue, 23 Sep 2014 12:52:06 +0000 (14:52 +0200)]
Fix title.

9 years agoUe correct stylesheet.
Mike Taylor [Tue, 23 Sep 2014 12:51:50 +0000 (14:51 +0200)]
Ue correct stylesheet.

9 years agoUse mkws-templates.js
Mike Taylor [Tue, 23 Sep 2014 12:50:16 +0000 (14:50 +0200)]
Use mkws-templates.js
Get rid of unused mkws-widget-credo.js

9 years agoRemove inclusion of unused Credo widget.
Mike Taylor [Tue, 23 Sep 2014 12:48:04 +0000 (14:48 +0200)]
Remove inclusion of unused Credo widget.

9 years agoAdd mkws-templates to Mike's playground.
Mike Taylor [Tue, 23 Sep 2014 12:47:37 +0000 (14:47 +0200)]
Add mkws-templates to Mike's playground.

9 years agoFix authentication.
Mike Taylor [Tue, 23 Sep 2014 12:41:52 +0000 (14:41 +0200)]
Fix authentication.

9 years agoGet local-cached jQuery etc. from working path.
Mike Taylor [Tue, 23 Sep 2014 12:41:40 +0000 (14:41 +0200)]
Get local-cached jQuery etc. from working path.

9 years agoFix authentication.
Mike Taylor [Tue, 23 Sep 2014 12:38:04 +0000 (14:38 +0200)]
Fix authentication.

9 years agoFix authentication.
Mike Taylor [Tue, 23 Sep 2014 12:37:08 +0000 (14:37 +0200)]
Fix authentication.

9 years agoupdate to handlebars-v1.3.0.js
Wolfram Schneider [Tue, 23 Sep 2014 12:31:40 +0000 (12:31 +0000)]
update to handlebars-v1.3.0.js

see bb11e0f2dbc573dfa4d77b1de75ae5ce301fa051

9 years agodo not fail if yui-compressor is not installed
Wolfram Schneider [Tue, 23 Sep 2014 12:19:24 +0000 (12:19 +0000)]
do not fail if yui-compressor is not installed

e.g. on a devel MacOS machine. Instead, a dummy wrapper will
be used and display a warning.

9 years agoconfigurable yui-compressor program name
Wolfram Schneider [Tue, 23 Sep 2014 12:14:49 +0000 (12:14 +0000)]
configurable yui-compressor program name

9 years agodisplay a warning about the missing program
Wolfram Schneider [Tue, 23 Sep 2014 12:12:10 +0000 (12:12 +0000)]
display a warning about the missing program

9 years agonewline in help text
Wolfram Schneider [Tue, 23 Sep 2014 12:01:00 +0000 (12:01 +0000)]
newline in help text

9 years agouse handlebars program from node modules checkout
Wolfram Schneider [Tue, 23 Sep 2014 12:00:10 +0000 (12:00 +0000)]
use handlebars program from node modules checkout

9 years agoMerge branch 'master' of ssh://git.indexdata.com/home/git/private/mkws
Jason Skomorowski [Tue, 23 Sep 2014 11:50:01 +0000 (07:50 -0400)]
Merge branch 'master' of ssh://git.indexdata.com/home/git/private/mkws

9 years agoAttempt to satisfy handlebars build dependency for integration test
Jason Skomorowski [Tue, 23 Sep 2014 11:49:41 +0000 (07:49 -0400)]
Attempt to satisfy handlebars build dependency for integration test

9 years agoMerge branch 'master' of ssh://git.indexdata.com/home/git/private/mkws
Mike Taylor [Tue, 23 Sep 2014 09:39:53 +0000 (11:39 +0200)]
Merge branch 'master' of ssh://git.indexdata.com/home/git/private/mkws

9 years agoIgnore the version of Handlebars that we now download:
Mike Taylor [Tue, 23 Sep 2014 09:38:26 +0000 (11:38 +0200)]
Ignore the version of Handlebars that we now download:
handlebars-v1.3.0.js rather than handlebars-v1.1.2.js. If you still
have a downloaded copy of the latter in this directory, delete it by
hand.

9 years agoMerge branch 'master' of ssh://git.indexdata.com/home/git/private/mkws
Wolfram Schneider [Tue, 23 Sep 2014 09:34:34 +0000 (11:34 +0200)]
Merge branch 'master' of ssh://git.indexdata.com/home/git/private/mkws

9 years agoNew file, .gitignore, for generated mkws-templates.js
Mike Taylor [Tue, 23 Sep 2014 09:34:33 +0000 (11:34 +0200)]
New file, .gitignore, for generated mkws-templates.js

9 years agoyui-compressor - dummy wrapper for missing java tool yui-compressor
Wolfram Schneider [Tue, 23 Sep 2014 09:34:22 +0000 (11:34 +0200)]
yui-compressor - dummy wrapper for missing java tool yui-compressor

9 years agoMerge branch 'master' of ssh://git.indexdata.com/home/git/private/mkws
Jason Skomorowski [Tue, 23 Sep 2014 09:31:48 +0000 (05:31 -0400)]
Merge branch 'master' of ssh://git.indexdata.com/home/git/private/mkws