This is an automated email from the ASF dual-hosted git repository.
poorejc pushed a change to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-flagon-useralejs.git.
from 100cc41 [FLAGON-392] more mods to fix untracked path prior to merge
with FLAGON-192
add 4b6c51c SENSSOFT-192: Added basic interval logging on a subset of
events.
add 7a1be8b Converted format from umd to iffe. Added additional
dependencies. NOTICE file added.
add 2f2d2f9 SENSSOFT-217: Tracking change type
add 0bfe577 Included start and end interval time.
add 27af7a0 useralejs-0.2.1: Added UserALE Web extension.
add 1961f01 Fixed typo in event timestamp, switched to using same
timestamp as duration
add b6f44a1 Added sessionID
add d193255 Updated data-* params
add 722f103 Lifted mouse event handler and event type lists outside of
the define function
add bab30ea Added hooks for dynamically transforming and filtering
event/interval logs as they arrive
add 5aa96f8 Added re-export of filter/map functions to expose as part of
API
add 782fb86 Fixed issue where the log queue would still be cleared even
if logging was paused
add 8e4a9ed Removed type check to allow clearing the handler by passing a
non-function
add 35c7272 Added exports for logs and handlers to make testing easier
add 0722ed5 Added tests for filtering/mapping logs
add d96a174 Updated tests to account for interval logs
add c66536b Updated sendOnClose to not send logs if config is off
add 754759f Updated tests to make sure config is on. Added tests for
disabling logging
add c426c42 Added eslint-disable comments until we set up proper globals
definitions
add 961091d Cleaned up steps relating to Chrome, removed mention of extra
packages unrelated to installing/building
add 93e7561 Merge branch 'master' into SENSSOFT-192
add ae2f672 Added references to the extension, added additional detail
about the project.
add 546f248 Cleaned up some grammar, added a gotchas section.
add 1b64339 Added language hints for the Markdown
add aa62945 Merge branch 'SENSSOFT-192' of
https://git-wip-us.apache.org/repos/asf/incubator-senssoft-useralejs into
SENSSOFT-192
add 2f0f253 Updated build file to account for separate
options/background/content scripts
add 5178927 Removed single file to change to separate inline content
scripts
add ed63be8 Initial commit for content and background scripts, as well as
message type constants
add e69812c Updated to log via the content script, without injecting a
tag. Switched to using background/content scripts
add a31e513 Updated to properly pass messages to tabs
add 857c674 Updated to log a bunch of meta tab information and set a
global session id to be used by content scripts
add 4b7adcc Updated to use global session id
add ead656f Updated to be able to cancel/enable send interval
add 7087e06 Merge branch 'browser-logging' into SENSSOFT-192
add 8a7dd20 Updated to use correct userid
add a4c714c Added all_urls permission to enable cross origin requests in
content script
add 7453b24 Bumped version to make firefox accept it
add 6e954b0 Added ADD_LOG message type
add 6e452fe Removed console.log
add ce10df8 Updated to use messaging to pass logs to background
extension, to sidestep https rules in content script
add b072ebf Added extractTimeFields to allow microsecond support for
events
add 6c27a53 Updated to use extractTimeFields and use enhanced timestamp
precision to include microseconds
add 6c64cfa Added API documentation
add 1349cad Keep build directory as our distribution
add 4a61c9f Merge branch 'master' of
https://git-wip-us.apache.org/repos/asf/incubator-senssoft-useralejs into
SENSSOFT-192
add 6302909 Bumped version
add 1a1cb11 Initial commit for test utilities to help with jsdom setup
add 3a5eac6 Switched to using test utils (fixes broken tests)
add d3ec8cb Added sessionID key
add 3394bde minor updates to README
add a9847fa [PATCH]SENSSOFT-321
add a0f6724 [PATCH]SENSSOFT-324 Changed README instructions to reflect
need to references users file path to min.js script, minor mod in index.html to
help with file reference formatting.
add 793f3b7 SENSSOFT-323 [WIP] Gulp 4.0.0 update, initial commit
add 8001ee8 [SENSSOFT-323]Gulp 4.0.0 update and
babel-preset-es2015>babel-present-env
add 4745373 [FLAGON-376] include pre-build web extension and userale.js
script in src
add 2a6c971 [FLAGON-383] Updated READMEs, NOTICES, doap and supporting to
reflect namechange
add 3c5050f [FLAGON-383] Updated package.json to reflect name change
add 00b1528 [Patch] updated useralejs version and preferred node version
in package.json file
add 1e2bfee [FLAGON-293] added package-lock.json file
add 7869c4d update notice file to include attribution to CSDL
add 741c8ea [FLAGON-396] Added License Header to testUtils.js
add f87469a [FLAGON-399>FLAGON-403] Adding missing license headers,
updating versioning, updating keys, adding licensing to build procs
add e7cb6c2 [FLAGON-404, 405] Updated Readme.md to reflect versioning and
new API examples
add 90a1693 minor mod to Readme.md
add 9877a1c [FLAGON-392] minor mods to correct versioning mistakes
new 731e3a6 [FLAGON-392] Merge FLAGON-192 with master
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
.babelrc | 2 +-
DISCLAIMER | 0
README.md | 126 ++++-
build/UserAleWebExtension/background.js | 422 ++++++++++++++
build/UserAleWebExtension/content.js | 763 ++++++++++++++++++++++++++
build/UserAleWebExtension/icons/border-48.png | Bin 0 -> 225 bytes
build/UserAleWebExtension/manifest.json | 29 +
build/UserAleWebExtension/options.js | 90 +++
build/UserAleWebExtension/optionsPage.html | 54 ++
build/userale-1.0.0.min.js | 18 -
build/{userale-1.0.0.js => userale-2.0.0.js} | 197 ++++++-
build/userale-2.0.0.min.js | 18 +
example/README.md | 0
src/UserALEWebExtension/README.md | 71 +++
src/UserALEWebExtension/background.js | 199 +++++++
src/UserALEWebExtension/content.js | 81 +++
src/UserALEWebExtension/globals.js | 27 +
src/UserALEWebExtension/icons/border-48.png | Bin 0 -> 225 bytes
src/UserALEWebExtension/manifest.json | 29 +
src/UserALEWebExtension/messageTypes.js | 21 +
src/UserALEWebExtension/options.js | 66 +++
src/UserALEWebExtension/optionsPage.html | 54 ++
src/UserALEWebExtension/public/index.html | 26 +
src/attachHandlers.js | 35 +-
src/getInitialSettings.js | 1 +
src/main.js | 2 +-
src/packageLogs.js | 139 ++++-
src/sendLogs.js | 19 +-
test/attachHandlers_spec.js | 13 +-
test/packageLogs_spec.js | 165 +++++-
test/sendLogs_spec.js | 71 ++-
31 files changed, 2667 insertions(+), 71 deletions(-)
mode change 100644 => 100755 DISCLAIMER
mode change 100644 => 100755 README.md
create mode 100644 build/UserAleWebExtension/background.js
create mode 100644 build/UserAleWebExtension/content.js
create mode 100644 build/UserAleWebExtension/icons/border-48.png
create mode 100644 build/UserAleWebExtension/manifest.json
create mode 100644 build/UserAleWebExtension/options.js
create mode 100644 build/UserAleWebExtension/optionsPage.html
delete mode 100644 build/userale-1.0.0.min.js
rename build/{userale-1.0.0.js => userale-2.0.0.js} (76%)
create mode 100644 build/userale-2.0.0.min.js
mode change 100644 => 100755 example/README.md
create mode 100644 src/UserALEWebExtension/README.md
create mode 100644 src/UserALEWebExtension/background.js
create mode 100644 src/UserALEWebExtension/content.js
create mode 100644 src/UserALEWebExtension/globals.js
create mode 100644 src/UserALEWebExtension/icons/border-48.png
create mode 100644 src/UserALEWebExtension/manifest.json
create mode 100644 src/UserALEWebExtension/messageTypes.js
create mode 100644 src/UserALEWebExtension/options.js
create mode 100644 src/UserALEWebExtension/optionsPage.html
create mode 100644 src/UserALEWebExtension/public/index.html