This is an automated email from the ASF dual-hosted git repository.
poorejc pushed a commit to branch test
in repository https://gitbox.apache.org/repos/asf/flagon-useralejs.git
The following commit(s) were added to refs/heads/test by this push:
new ac0adcc removed 'incubator' from a number of src files
ac0adcc is described below
commit ac0adccb47dd943fcc63581d0aed076fc24f16f9
Author: poorejc <[email protected]>
AuthorDate: Sat May 6 23:32:32 2023 -0400
removed 'incubator' from a number of src files
---
doap-userale.js.rdf | 12 ++++++------
example/README.md | 16 ++++++++--------
example/webpackUserAleExample/README.md | 12 ++++++------
package.json | 6 +++---
4 files changed, 23 insertions(+), 23 deletions(-)
diff --git a/doap-userale.js.rdf b/doap-userale.js.rdf
index 17f534c..8486624 100755
--- a/doap-userale.js.rdf
+++ b/doap-userale.js.rdf
@@ -25,13 +25,13 @@
<created>2016-11-10</created>
<license rdf:resource="http://usefulinc.com/doap/licenses/asl20" />
<name>Apache Flagon - UserALE.js</name>
- <homepage rdf:resource="http://flagon.incubator.apache.org" />
- <asfext:pmc rdf:resource="http://flagon.incubator.apache.org" />
+ <homepage rdf:resource="https://flagon.apache.org/" />
+ <asfext:pmc rdf:resource="https://flagon.apache.org/" />
<shortdesc>UserALE.js is the UserALE client for DOM and
JavaScript-based applications.</shortdesc>
<description>UserALE.js is the UserALE client for DOM and
JavaScript-based applications. It automatically attaches event handlers to log
every user interaction on a web page, including rich JS single-page
apps.</description>
- <bug-database
rdf:resource="https://github.com/apache/incubator-flagon-useralejs/issues" />
+ <bug-database
rdf:resource="https://github.com/apache/flagon-useralejs/issues" />
<mailing-list rdf:resource="[email protected]" />
- <download-page
rdf:resource="http://flagon.incubator.apache.org/releases/" />
+ <download-page rdf:resource="https://flagon.apache.org/releases/" />
<programming-language>Javascript</programming-language>
<category
rdf:resource="https://projects.apache.org/projects.html?category#Library" />
<release>
@@ -43,8 +43,8 @@
</release>
<repository>
<GITRepository>
- <location
rdf:resource="https://gitbox.apache.org/repos/asf/incubator-flagon-useralejs.git"/>
- <browse
rdf:resource="https://github.com/apache/incubator-flagon-useralejs"/>
+ <location
rdf:resource="https://gitbox.apache.org/repos/asf/flagon-useralejs.git"/>
+ <browse
rdf:resource="https://github.com/apache/flagon-useralejs"/>
</GITRepository>
</repository>
<maintainer>
diff --git a/example/README.md b/example/README.md
index 82086c1..9780d3c 100644
--- a/example/README.md
+++ b/example/README.md
@@ -6,14 +6,14 @@ This directory provides
* a means of viewing log event structure within a simple UserALE logging
server;
* a means of testing UserALE.js API functions within a simple HTML Webpage.
-If you are interested in examples for a **module** deployment methodology, see
the README in the [/webpack examples
directory](https://github.com/apache/incubator-flagon-useralejs/tree/master/example/webpackUserAleExample).
For details about our web extension, see
-our [UserALE.js WebExtension
documentation](https://github.com/apache/incubator-flagon-useralejs/tree/master/src/UserALEWebExtension).
+If you are interested in examples for a **module** deployment methodology, see
the README in the [/webpack examples
directory](https://github.com/apache/flagon-useralejs/tree/master/example/webpackUserAleExample).
For details about our web extension, see
+our [UserALE.js WebExtension
documentation](https://github.com/apache/flagon-useralejs/tree/master/src/UserALEWebExtension).
## Prerequisites
Ensure that you have [node.js](https://nodejs.org/) installed.
-You will need to clone the [UserALE.js
repository](https://github.com/apache/incubator-flagon-useralejs) and follow
[Installation
directions](https://github.com/apache/incubator-flagon-useralejs#installation).
+You will need to clone the [UserALE.js
repository](https://github.com/apache/flagon-useralejs) and follow
[Installation
directions](https://github.com/apache/flagon-useralejs#installation).
## Using the Example Page
@@ -21,7 +21,7 @@ This Example Page is a simple HTML Webpage with UserALE.js
included as a **scrip
To generate UserALE.js logs with the Example Page, you may need to modify the
'src' HTML5 parameter of the UserALE.js script tag.
-The `src` parameter should reference the file path to your version of the
minified UserALE.js script, in the /build dir of your cloned
`incubator-flagon-useralejs` repository or `flagon-userale` node module. See
the snippet below.
+The `src` parameter should reference the file path to your version of the
minified UserALE.js script, in the /build dir of your cloned `flagon-useralejs`
repository or `flagon-userale` node module. See the snippet below.
```
<script
@@ -44,7 +44,7 @@ On this page, all user events will be captured and sent to
the logging server. S
The UserALE.js Example page can be used to test the structure of logs after
instrumentation or UserALE.js src code modification. It can also be used to
experiment with UserALE.js API functions.
-In order to experiment with various elements of the UserALE.js API, simply
modify the well documented API examples in `index.js`. Details about the API
can be found at the [UserALE.js parent
README](https://github.com/apache/incubator-flagon-useralejs/tree/FLAGON-469).
However, a complete list of exported functions in the API can be found below:
+In order to experiment with various elements of the UserALE.js API, simply
modify the well documented API examples in `index.js`. Details about the API
can be found at the [UserALE.js parent
README](https://github.com/apache/flagon-useralejs/tree/FLAGON-469). However, a
complete list of exported functions in the API can be found below:
| Function | Description | Notes |
|---|---|---|
@@ -62,13 +62,13 @@ In order to experiment with various elements of the
UserALE.js API, simply modif
NOTE: Each modification of `index.html` or `index.js` will require that you
both save the modifications and refresh the webpage in your browser.
-See the [Flagon website](http://flagon.incubator.apache.org/) for additional
documentation on the
[API](http://flagon.incubator.apache.org/docs/useralejs/API/) and [testing for
scale](http://flagon.incubator.apache.org/docs/stack/scaling/).
+See the [Flagon website](http://flagon.apache.org/) for additional
documentation on the [API](http://flagon.apache.org/docs/useralejs/API/) and
[testing for scale](http://flagon.apache.org/docs/stack/scaling/).
## Capturing Logs Using the Logging Server
The example logging server receives log from any UserALE.js instrumented page
at `localhost:8000`.
-This means you can test logs from your own instrumented application, the
[UserALE.js
WebExtension](https://github.com/apache/incubator-flagon-useralejs/tree/master/src/UserALEWebExtension),
+This means you can test logs from your own instrumented application, the
[UserALE.js
WebExtension](https://github.com/apache/flagon-useralejs/tree/master/src/UserALEWebExtension),
or the UserALE.js Example Page, so long as the `data-url` parameter is set to
`localhost:8000`. This is the default setting for both the WebExtension and
UserALE.js Example Page. See the example above.
Once your UserALE.js script tag is properly configured to point to a minified
UserALE.js script, and `localhost:8000`, you can log to the Example Logging
Server.
@@ -121,4 +121,4 @@ Find them in `/logs` under the top level flagon-userale
dir. A new log file will
## Contributing
-Contributions are welcome! Simply [submit an
issue](https://github.com/apache/incubator-flagon-useralejs/issues) for
problems you encounter or submit a pull request for your feature or bug fix.
The core team will review it and work with you to incorporate it into
UserALE.js.
\ No newline at end of file
+Contributions are welcome! Simply [submit an
issue](https://github.com/apache/flagon-useralejs/issues) for problems you
encounter or submit a pull request for your feature or bug fix. The core team
will review it and work with you to incorporate it into UserALE.js.
\ No newline at end of file
diff --git a/example/webpackUserAleExample/README.md
b/example/webpackUserAleExample/README.md
index 2e32cc0..9e9ece6 100644
--- a/example/webpackUserAleExample/README.md
+++ b/example/webpackUserAleExample/README.md
@@ -6,8 +6,8 @@ This example provides:
* a means of viewing log event structure within a simple UserALE logging
server;
* a means of testing UserALE.js API functions within a simple HTML Webpage.
-If you are interested in examples for a **script tag** deployment methodology,
see the README in the [/examples
directory](https://github.com/apache/incubator-flagon-useralejs/tree/master/example).
For details about our web extension, see
-our [UserALE.js WebExtension
documentation](https://github.com/apache/incubator-flagon-useralejs/tree/master/src/UserALEWebExtension).
+If you are interested in examples for a **script tag** deployment methodology,
see the README in the [/examples
directory](https://github.com/apache/flagon-useralejs/tree/master/example). For
details about our web extension, see
+our [UserALE.js WebExtension
documentation](https://github.com/apache/flagon-useralejs/tree/master/src/UserALEWebExtension).
## Prerequisites
@@ -17,7 +17,7 @@ You will need to `npm install` the
[flagon-userale](https://www.npmjs.com/packag
From `./example/webpackUserAleExample` directory, `npm install` dependencies
to run this Example Utility. Note that the UserALE.js Webpack Example has it's
own package.json file, that is separate from the larger `flagon-userale`
package.
-Please follow [Installation
directions](https://github.com/apache/incubator-flagon-useralejs#installation)
if you run into issues.
+Please follow [Installation
directions](https://github.com/apache/flagon-useralejs#installation) if you run
into issues.
## Using the Example Page
@@ -54,7 +54,7 @@ UserAle Local running on port 8000
The server allows you to watch as logs are sent from the client to the server,
as well as review a flat-file of saved logs, which you can view @ `/logs` in
the flagon-userale parent directory.
-This means you can test logs from your own instrumented application, the
[UserALE.js
WebExtension](https://github.com/apache/incubator-flagon-useralejs/tree/master/src/UserALEWebExtension),
or the UserALE.js Example Page, so long as you have not changed the UserALE.js
`url` configuration option from `localhost:8000` (instructions below). This is
the default setting for userale; logs generated from module, script tag, or
WebExtension deployments will always ship logs to `localhost:8000` u [...]
+This means you can test logs from your own instrumented application, the
[UserALE.js
WebExtension](https://github.com/apache/flagon-useralejs/tree/master/src/UserALEWebExtension),
or the UserALE.js Example Page, so long as you have not changed the UserALE.js
`url` configuration option from `localhost:8000` (instructions below). This is
the default setting for userale; logs generated from module, script tag, or
WebExtension deployments will always ship logs to `localhost:8000` unless modi
[...]
Start using your instrumented application, browser, or the UserALE.js Example
Page, and you will see logs propagating in the terminal:
@@ -129,8 +129,8 @@ $npm run build-example
* additional, annotated examples for most exports can be found embedded within
`index.js` the UserALE.js **module** import example.
-See the [Flagon website](http://flagon.incubator.apache.org/) for additional
documentation on the
[API](http://flagon.incubator.apache.org/docs/useralejs/API/) and [testing for
scale](http://flagon.incubator.apache.org/docs/stack/scaling/).
+See the [Flagon website](http://flagon.apache.org/) for additional
documentation on the [API](http://flagon.apache.org/docs/useralejs/API/) and
[testing for scale](http://flagon.apache.org/docs/stack/scaling/).
## Contributing
-Contributions are welcome! Simply [submit an
issue](https://github.com/apache/incubator-flagon-useralejs/issues) for
problems you encounter or submit a pull request for your feature or bug fix.
The core team will review it and work with you to incorporate it into
UserALE.js.
\ No newline at end of file
+Contributions are welcome! Simply [submit an
issue](https://github.com/apache/flagon-useralejs/issues) for problems you
encounter or submit a pull request for your feature or bug fix. The core team
will review it and work with you to incorporate it into UserALE.js.
\ No newline at end of file
diff --git a/package.json b/package.json
index b4abdc8..4fb1172 100644
--- a/package.json
+++ b/package.json
@@ -17,7 +17,7 @@
},
"repository": {
"type": "git",
- "url": "git://https://github.com/apache/incubator-flagon-useralejs"
+ "url": "git://https://github.com/apache/flagon-useralejs"
},
"keywords": [
"UserALE",
@@ -41,9 +41,9 @@
],
"license": "Apache-2.0",
"bugs": {
- "url": "https://github.com/apache/incubator-flagon-useralejs/issues"
+ "url": "https://github.com/apache/flagon-useralejs/issues"
},
- "homepage": "http://flagon.incubator.apache.org",
+ "homepage": "https://flagon.apache.org/",
"engines": {
"node": "^16.x || ^18.x",
"npm": "^8.x || ^9.x"