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 4d87068 fixing example page--obliterated it last merge
add 8ecfc00 [FLAGON-468] added packageLogs and supporting functions to
exported functions via API
add 51bb0f2 [FLAGON-467] Adding custom log examples in new UserALE.js
example structure
add 9a0f12b [FLAGON-467] minor mods to examples
add e4642dc [FLAGON-467] minor fixes to examples
add 18bbfe4 [FLAGON-471] WIP auth headers and todos
add 41259ff [FLAGON-471] modified sendLogs adn getInitialSettings to
accommodate authHeaders in script tag params
add 8014a77 [FLAGON-468] added packageLog, packageCustomLog support via
API and examples
add b792dda [FLAGON-468] added tuning packageLog example
add c5f0fcb [FLAGON-468] fixes minor mistake in API examples
add 55ed930 [FLAGON-468] updated and tested customDetails and
customPackageLogs support
add 5d106da [FLAGON-468] minor fix in example API script
add 22d1aba [FLAGON-475] added browser type and version to logs, and new
customIndex config key:value
add 129f7c8 preparing 2.1.0 release candidate
add c58360a [FLAGON-478] Updated Example Page Instructions to Flex API &
modified Gulp file to build UserALE in UMD format (was iife)
add 08a72ec [FLAGON-436] Added innerWidth/Height to packageLogs and
packageCustomLogs
add 865152b [FLAGON-479] Updated README for UserALEjs Module Import
Example
add bcfce63 fixing issue with webpack example .git file
add 124ce59 [FLAGON-479] Good commit of webpackUserAleExample
add 2cac054 added npm badge
add 518aeb2 added a few more badges for good measure
add cd6c370 [FLAGON-484, FLAGON-479] updated readme, package log for RC
prep, and added 'require' examples
add 7dc553d [FLAGON-481] Updated top level readme--substantially improved
add 6b082cf [FLAGON-481] Updated top level readme--updated 'whats new'
add 6e45cdb [FLAGON-481] Updated top level readme--minor mods
add 82effda [FLAGON-481] added pointers to Apache Flagon stack repo in
readme
add 0a24019 minor readme updates, added .asf.yaml prototype
add 1df7a3c [FLAGON-483, 486] fixed issues with examples that prevented
them from being indexed. Fixed issue with toolName not properly writing to log.
add 5d85800 update meta artifacts (doap, chnglg), and regenerate build
artifacts prior to generating release candidate
No new revisions were added by this update.
Summary of changes:
.asf.yaml | 39 +
CHANGELOG.md | 47 +
NOTICE | 2 +-
README.md | 311 +++-
build/UserAleWebExtension/background.js | 975 ++++++----
build/UserAleWebExtension/content.js | 1856 +++++++++++---------
build/UserAleWebExtension/manifest.json | 2 +-
build/UserAleWebExtension/options.js | 42 +-
build/userale-2.0.2.min.js | 18 -
build/{userale-2.0.2.js => userale-2.1.0.js} | 348 +++-
build/userale-2.1.0.min.js | 18 +
doap-userale.js.rdf | 6 +-
example/README.md | 75 +-
example/index.html | 77 +-
example/index.js | 142 ++
.../webpackUserAleExample/.gitignore | 0
LICENSE => example/webpackUserAleExample/LICENSE | 402 ++---
example/webpackUserAleExample/README.md | 136 ++
example/webpackUserAleExample/dist/main.js | 134 ++
example/webpackUserAleExample/index.html | 71 +
example/webpackUserAleExample/index.js | 152 ++
example/webpackUserAleExample/package.json | 47 +
example/webpackUserAleExample/webpack.config.js | 10 +
gulpfile.js | 22 +-
package-lock.json | 765 +++++---
package.json | 25 +-
src/UserALEWebExtension/globals.js | 4 +-
src/UserALEWebExtension/manifest.json | 2 +-
src/attachHandlers.js | 40 +-
src/getInitialSettings.js | 4 +-
src/main.js | 11 +-
src/packageLogs.js | 75 +-
src/sendLogs.js | 21 +-
test/main_spec.js | 2 +
34 files changed, 3916 insertions(+), 1965 deletions(-)
create mode 100644 .asf.yaml
delete mode 100644 build/userale-2.0.2.min.js
rename build/{userale-2.0.2.js => userale-2.1.0.js} (67%)
create mode 100644 build/userale-2.1.0.min.js
create mode 100644 example/index.js
copy .gitignore => example/webpackUserAleExample/.gitignore (100%)
copy LICENSE => example/webpackUserAleExample/LICENSE (93%)
mode change 100755 => 100644
create mode 100644 example/webpackUserAleExample/README.md
create mode 100644 example/webpackUserAleExample/dist/main.js
create mode 100644 example/webpackUserAleExample/index.html
create mode 100644 example/webpackUserAleExample/index.js
create mode 100755 example/webpackUserAleExample/package.json
create mode 100644 example/webpackUserAleExample/webpack.config.js