Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kishorejangid/svex
OpenText Smart View Extensions
https://github.com/kishorejangid/svex
opentext smartui smartview
Last synced: 3 months ago
JSON representation
OpenText Smart View Extensions
- Host: GitHub
- URL: https://github.com/kishorejangid/svex
- Owner: kishorejangid
- Created: 2019-10-08T17:01:58.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-10T04:57:59.000Z (about 2 years ago)
- Last Synced: 2024-10-04T11:40:00.296Z (4 months ago)
- Topics: opentext, smartui, smartview
- Language: JavaScript
- Homepage:
- Size: 468 KB
- Stars: 2
- Watchers: 2
- Forks: 2
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# svex Module
This is a CS UI Extension project.
## Pre-requisites
The following tools have to be installed, before you start:
* NodeJS 4 or newer
* Python 2 (the most recent 2.x)
* Git
* Grunt command line tool:npm install -g grunt-cli
## Contents
The directory structure of this project:
./ # Package settings
lib/ # CS UI dependencies
out-debug/ # This project's debug build output
out-release/ # This project's release build output
src/ # Module sources
bundles/ # Module bundle definitions
test/ # Test configuration
debug/ # Output of the source module tests
coverage/ # Test coverage reports
results/ # Test result reports
release/ # Output of the release bundle tests
results/ # Test result reportsSelected files from this project:
src/
bundles/
# Main module for the compile package
svex-all.js
# Controls the build and other source maintenance tasks
Gruntfile.js
# Configures the RequireJS module compiler (r.js)
config-build.js
# Declares CS UI extension exposed by this module
svex-extensions.json
# Lists public modules exposed by this project, so that
# other projects, which depend on it, can exclude them
component.js
test/
# Controls the test execution task
Gruntfile.js
# Configures the tests in the browser
test-common.js
# Supplies the browser configuration part for source tests
test-debug.js
# Supplies the browser configuration part for release tests
test-release.js
# Configures the Karma test runner
karma.common.js
# Supplies the runner configuration part for source tests
karma.debug.js
# Supplies the runner configuration part for release tests
karma.release.js
# Sets up static code checks for source stylesheets
.csslintrc
# Sets up sanity checks for built stylesheet bundles
.eslintrc-output
# Sets up static code checks for JavaScript sources
.jshintrc
# Sets up sanity checks for built JavaScript bundles
.eslintrc
# Sets up static code checks for HTML sample pages
.jshintrc-html
# Declares aliases to run build tasks from src/ and test/ directories
Gruntfile.js
# Configures the RequireJS support in WebStorm
config-editor.js
# Maintains build tool dependencies
package.json
# Describes this sample
README.md
# Development web server
server.js## Build
Inspect `Gruntfile.js` and discover available tasks. Running the default task
will check the sources, compile the output files and run unit tests:grunt
## Add Content
You can add a new widget with a sample model, factory and view, which you can
start with and modify according to your goal, by the `widget` sub-generator:yo csui-extension:widget
Inspect the generated widget in `src/widgets/` and rebuild
the updated project:grunt
## Develop
Start the web server to be able to see the code running in the web browser.
You can also use other web server with the web root pointed to the project
root, or open the project directory in your IDE and have the IDE open a HTML
page in the browser.npm start
## Extension for Smart UI to add a custom command called Bulk Export
grunt debug
from the src folder