Skip to content

Commit 8715f19

Browse files
authored
Merge pull request #119 from IgniteUI/repository-rename
Repository rename
2 parents 99d3b04 + db582b0 commit 8715f19

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+232
-222
lines changed

Diff for: .gitignore

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ bower_components
33
test_out
44
coverage
55
instrument
6-
dist/igniteui-angular.min.js
7-
dist/npm/igniteui-angular.js
8-
dist/npm/igniteui-angular.min.js
6+
dist/igniteui-angularjs.min.js
7+
dist/npm/igniteui-angularjs.js
8+
dist/npm/igniteui-angularjs.min.js

Diff for: Gruntfile.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ module.exports = function (grunt) {
88
report: "min"
99
},
1010
build: {
11-
src: [ "src/igniteui-angular.js" ],
11+
src: [ "src/igniteui-angularjs.js" ],
1212
dest: "dist/<%= pkg.name %>.min.js"
1313
}
1414
},
1515

1616
watch: {
1717
scripts: {
18-
files: ["src/igniteui-angular.js"],
18+
files: ["src/igniteui-angularjs.js"],
1919
tasks: ["jshint"],
2020
options: {
2121
spawn: false
@@ -24,7 +24,7 @@ module.exports = function (grunt) {
2424
},
2525

2626
jshint: {
27-
all: ["Gruntfile.js", "src/igniteui-angular.js"],
27+
all: ["Gruntfile.js", "src/igniteui-angularjs.js"],
2828
options: {
2929
jshintrc: ".jshintrc",
3030
reporter: require("jshint-stylish")
@@ -33,11 +33,11 @@ module.exports = function (grunt) {
3333

3434
exec: {
3535
update_src_npm: {
36-
cmd: 'cp src/igniteui-angular.js dist/npm/'
36+
cmd: 'cp src/igniteui-angularjs.js dist/npm/'
3737
},
3838

3939
update_min_npm: {
40-
cmd: 'cp dist/igniteui-angular.min.js dist/npm/'
40+
cmd: 'cp dist/igniteui-angularjs.min.js dist/npm/'
4141
}
4242
}
4343
});

Diff for: README.md

+31-21
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,53 @@
11
# Ignite UI directives for AngularJS
22

3-
[![NPM version](https://img.shields.io/npm/v/igniteui-angular.svg?style=flat)](https://www.npmjs.com/package/igniteui-angular)
4-
[![Build Status](https://travis-ci.org/IgniteUI/igniteui-angular.svg?branch=master)](https://travis-ci.org/IgniteUI/igniteui-angular)
5-
[![Coverage Status](https://coveralls.io/repos/github/IgniteUI/igniteui-angular/badge.svg?branch=master)](https://coveralls.io/github/IgniteUI/igniteui-angular?branch=master)
6-
[![Codacy Badge](https://api.codacy.com/project/badge/grade/f7b38e525b504be0aabc891079530521)](https://www.codacy.com/app/kdinev/igniteui-angular)
3+
[![NPM version](https://img.shields.io/npm/v/igniteui-angularjs.svg?style=flat)](https://www.npmjs.com/package/igniteui-angularjs)
4+
[![Build Status](https://travis-ci.org/IgniteUI/igniteui-angularjs.svg?branch=master)](https://travis-ci.org/IgniteUI/igniteui-angularjs)
5+
[![Coverage Status](https://coveralls.io/repos/github/IgniteUI/igniteui-angularjs/badge.svg?branch=master)](https://coveralls.io/github/IgniteUI/igniteui-angularjs?branch=master)
6+
[![Codacy Badge](https://api.codacy.com/project/badge/grade/f7b38e525b504be0aabc891079530521)](https://www.codacy.com/app/kdinev/igniteui-angularjs)
77

8-
Use the directives found in `igniteui-angular.js` to use [Ignite UI](http://igniteui.com) controls in [AngularJS](http://angularjs.com) pages. [Work with the running samples here](http://igniteui.github.io/igniteui-angular) or quickly bootstrap your AngularJS project with this preconfigured application - [Ignite UI AngularJS seed](https://github.com/IgniteUI/igniteui-angular-seed/).
8+
Use the directives found in `igniteui-angularjs.js` to use [Ignite UI](http://igniteui.com) controls in [AngularJS](http://angularjs.com) pages. [Work with the running samples here](http://igniteui.github.io/igniteui-angularjs) or quickly bootstrap your AngularJS project with this preconfigured application - [Ignite UI AngularJS seed](https://github.com/IgniteUI/igniteui-angularjs-seed/).
9+
10+
**IMPORTANT** The repository has been renamed from `igniteui-angular` to `igniteui-angularjs`. This is to avoid confusion caused by the new [naming convention](https://medium.com/google-developer-experts/angular-new-naming-guidelines-eacbebd09363) of Angular.
911

1012
# Requirements
1113

1214
- [jQuery](http://www.jquery.com) v1.8 and later
1315
- [AngularJS](http://www.angularjs.org) v1.0 and later
1416
- [Ignite UI](http://www.igniteui.com) 13.1 and later
1517

16-
> **Note:** The Ignite UI Angular directives *do not* work with the Ignite UI ASP.NET MVC Helpers
18+
> **Note:** The Ignite UI AngularJS directives *do not* work with the Ignite UI ASP.NET MVC Helpers
1719
1820
# Install
1921

20-
You can install this package either with `npm` or with `bower`. This is a development repo!
22+
You can install this package either with `npm` or with `bower`. This is a development repo!
23+
24+
`igniteui-angularjs` depends on the `ignite-ui-full` licensed package. Follow [this guide](https://www.igniteui.com/help/using-ignite-ui-npm-packages) on setting up access to the Ignite UI private npm feed and add the dependency to the `package.json`.
25+
26+
```
27+
"dependencies": {
28+
"@infragistics/ignite-ui-full": "latest"
29+
}
30+
```
2131

2232
### npm
2333

2434
```shell
25-
npm install igniteui-angular
35+
npm install igniteui-angularjs
2636
```
2737

2838
### bower
2939

3040
```shell
31-
bower install igniteui-angular
41+
bower install igniteui-angularjs
3242
```
3343

3444
# Building
35-
Build will produce an obfuscated and minified version of the `src/igniteui-angular.js` in the `dist/igniteui-angular.min.js`.
36-
The build will also put the original and the minified version of the `src/igniteui-angular.js` in the `dist/npm` for distribution to npm.
45+
Build will produce an obfuscated and minified version of the `src/igniteui-angularjs.js` in the `dist/igniteui-angularjs.min.js`.
46+
The build will also put the original and the minified version of the `src/igniteui-angularjs.js` in the `dist/npm` for distribution to npm.
3747
The build uses [Grunt](http://gruntjs.com/), so you need [Node.js](http://nodejs.org/) installed on your machine.
3848
To build the project use the following steps:
3949

40-
1. Open a console in the folder where the **igniteui-angular** project is located
50+
1. Open a console in the folder where the **igniteui-angularjs** project is located
4151
2. Run `npm install`
4252
3. Run `grunt build`
4353

@@ -47,13 +57,13 @@ There are two ways of getting started with the Ignite UI directives. The first o
4757

4858
## Ignite UI AngularJS quick start application
4959

50-
[Ignite UI AngularJS seed](https://github.com/IgniteUI/igniteui-angular-seed/) is an application skeleton for a typical AngularJS web app using the Ignite UI directives for AngularJS. You can use it to quickly bootstrap your angular webapp projects and dev environment for these projects.
60+
[Ignite UI AngularJS seed](https://github.com/IgniteUI/igniteui-angularjs-seed/) is an application skeleton for a typical AngularJS web app using the Ignite UI directives for AngularJS. You can use it to quickly bootstrap your angular webapp projects and dev environment for these projects.
5161

5262
The seed contains a sample AngularJS application and is preconfigured to install the Angular framework and a bunch of development and testing tools for instant web development gratification.
5363

5464
## Page setup
5565

56-
In the page markup include the Ignite UI AngularJS directives file found in `dist/igniteui-angular.min.js` along with the Ignite UI scripts:
66+
In the page markup include the Ignite UI AngularJS directives file found in `dist/igniteui-angularjs.min.js` along with the Ignite UI scripts:
5767

5868
<script src="jquery.min.js"></script>
5969
<script src="jquery-ui.min.js"></script>
@@ -62,7 +72,7 @@ In the page markup include the Ignite UI AngularJS directives file found in `dis
6272
<script src="infragistics.core.js"></script>
6373
<script src="infragistics.lob.js"></script>
6474

65-
<script src="igniteui-angular.min.js"></script>
75+
<script src="igniteui-angularjs.min.js"></script>
6676

6777
Reference the `igniteui-directives` in your AngularJS module:
6878

@@ -78,7 +88,7 @@ Controls can be initialized in two ways:
7888
## Markup Initialization
7989

8090
### Custom tags
81-
Each control implements a custom tag directive where the tag name is formed by splitting each capital letter in the control name with the `-` symbol (This naming convention follows the standard Angular normalization process).
91+
Each control implements a custom tag directive where the tag name is formed by splitting each capital letter in the control name with the `-` symbol (This naming convention follows the standard AngularJS normalization process).
8292

8393
**Note**: It is recommended to use closing tags (`</ig-combo>`) over the self-closing tags (`<ig-combo/>`), because the latter are known to make issues on some browsers (depending on the used document mode).
8494

@@ -135,7 +145,7 @@ Binding to control events is done again with attributes. Event attribute names a
135145
|igDateEditor.events.keypress | `<ig-date-editor event-keypress="keypressHandler">` |
136146

137147
## Controller Initialization
138-
Each control also implements a custom attribute directive where the attribute name is formed by splitting each capital letter in the control name with the `-` symbol (this naming convention follows the standard Angular normalization process) and the attribute value corresponds to the scope object holding the control options.
148+
Each control also implements a custom attribute directive where the attribute name is formed by splitting each capital letter in the control name with the `-` symbol (this naming convention follows the standard AngularJS normalization process) and the attribute value corresponds to the scope object holding the control options.
139149

140150
#### Examples:
141151

@@ -180,10 +190,10 @@ The following controls currently support two-way data binding:
180190
3. igEditors
181191
4. igTree
182192

183-
**Note**: When using control API methods which modify the data source outside the Angular framework you need to explicitly call [Scope.$apply()](https://docs.angularjs.org/api/ng/type/$rootScope.Scope#$apply) in order to see Angular view updated.
193+
**Note**: When using control API methods which modify the data source outside the AngularJS framework you need to explicitly call [Scope.$apply()](https://docs.angularjs.org/api/ng/type/$rootScope.Scope#$apply) in order to see AngularJS view updated.
184194

185195
## Testing
186-
There are two kinds of tests in Igniteui-angular: Unit tests and End to End tests. All of them are written in [Jasmine](http://jasmine.github.io/).
196+
There are two kinds of tests in igniteui-angularjs: Unit tests and End to End tests. All of them are written in [Jasmine](http://jasmine.github.io/).
187197

188198
#### Setup
189199
Simply do:
@@ -241,7 +251,7 @@ To combine the both reports into one single report you need to execute:
241251

242252
npm run cover-combined
243253

244-
After that the default directory where you can open the code coverage is igniteui-angular/coverage/final/lcov/src.
254+
After that the default directory where you can open the code coverage is igniteui-angularjs/coverage/final/lcov/src.
245255

246256
**Running specific coverage:**
247257

@@ -251,7 +261,7 @@ To view the code coverage only for the Protractor you need to run the command:
251261

252262
npm run cover-protractor
253263

254-
After that the location is the same(igniteui-angular/coverage/final/lcov/src). That is because the Protractor report is not easily readable by default.
264+
After that the location is the same(igniteui-angularjs/coverage/final/lcov/src). That is because the Protractor report is not easily readable by default.
255265

256266
---------------------------------------
257267

Diff for: bower.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "igniteui-angular",
2+
"name": "igniteui-angularjs",
33
"description": "Ignite UI controls for AngularJS",
44
"homepage": "http://igniteui.com",
5-
"main": "src/igniteui-angular.js",
5+
"main": "src/igniteui-angularjs.js",
66
"keywords": [
77
"ui",
88
"controls",
@@ -12,7 +12,7 @@
1212
],
1313
"repository": {
1414
"type": "git",
15-
"url": "git://github.com/IgniteUI/igniteui-angular.git"
15+
"url": "git://github.com/IgniteUI/igniteui-angularjs.git"
1616
},
1717
"moduleType": [
1818
"amd",

Diff for: dist/npm/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Use the directives found in `igniteui-angular.js` to use [Ignite UI](http://igniteui.com) controls in [AngularJS](http://angularjs.com) pages. [Work with the running samples here](http://igniteui.github.io/igniteui-angular).
1+
Use the directives found in `igniteui-angularjs.js` to use [Ignite UI](http://igniteui.com) controls in [AngularJS](http://angularjs.com) pages. [Work with the running samples here](http://igniteui.github.io/igniteui-angularjs).
22

33
#Requirements
44

@@ -12,7 +12,7 @@ Use the directives found in `igniteui-angular.js` to use [Ignite UI](http://igni
1212

1313
## Page setup
1414

15-
In the page markup include the Ignite UI AngularJS directives file found in `./node_modules/igniteui-angular/igniteui-angular.min.js` along with the Ignite UI scripts:
15+
In the page markup include the Ignite UI AngularJS directives file found in `./node_modules/igniteui-angularjs/igniteui-angularjs.min.js` along with the Ignite UI scripts:
1616

1717
<script src="jquery.min.js"></script>
1818
<script src="jquery-ui.min.js"></script>
@@ -21,7 +21,7 @@ In the page markup include the Ignite UI AngularJS directives file found in `./n
2121
<script src="infragistics.core.js"></script>
2222
<script src="infragistics.lob.js"></script>
2323

24-
<script src="igniteui-angular.min.js"></script>
24+
<script src="igniteui-angularjs.min.js"></script>
2525

2626
Reference the `igniteui-directives` in your AngularJS module:
2727

Diff for: dist/npm/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
2-
"name": "igniteui-angular",
2+
"name": "igniteui-angularjs",
33
"version": "1.0.4",
4-
"main": "dist/igniteui-angular.min.js",
4+
"main": "dist/igniteui-angularjs.min.js",
55
"author": "igniteui",
66
"description" : "A packaged version of IgniteUI directives for AngularJS",
77
"keywords": [
@@ -18,12 +18,12 @@
1818
"license": "MIT",
1919
"repository": {
2020
"type": "git",
21-
"url": "https://github.com/IgniteUI/igniteui-angular.git"
21+
"url": "https://github.com/IgniteUI/igniteui-angularjs.git"
2222
},
2323
"bugs": {
24-
"url": "https://github.com/IgniteUI/igniteui-angular/issues"
24+
"url": "https://github.com/IgniteUI/igniteui-angularjs/issues"
2525
},
26-
"homepage": "https://github.com/IgniteUI/igniteui-angular",
26+
"homepage": "https://github.com/IgniteUI/igniteui-angularjs",
2727
"dependencies": {
2828
"angular": "",
2929
"jquery": "",

Diff for: index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -168,15 +168,15 @@ <h2>Samples</h2>
168168
</div>
169169

170170
<div class="push-down-md">
171-
<a href="https://github.com/IgniteUI/igniteui-angular" class="btn btn-default btn-primary btn-lg"><i class="fa fa-github"></i> View source on GitHub</a>
171+
<a href="https://github.com/IgniteUI/igniteui-angularjs" class="btn btn-default btn-primary btn-lg"><i class="fa fa-github"></i> View source on GitHub</a>
172172
</div>
173173

174174
</div>
175175
<footer>
176176
<div class="container">
177177
<div class="row">
178178
<div class="col-sm-12">
179-
<p><a href="https://github.com/IgniteUI/igniteui-angular/issues">Feedback &amp; Questions</a></p>
179+
<p><a href="https://github.com/IgniteUI/igniteui-angularjs/issues">Feedback &amp; Questions</a></p>
180180
<p class="small">For more information or to download a trial of Ignite UI, please visit: <a href="http://igniteui.com">http://igniteui.com</a></p>
181181
</div>
182182
</div>
@@ -192,7 +192,7 @@ <h2>Samples</h2>
192192
<script src="http://cdn-na.infragistics.com/igniteui/latest/js/infragistics.core.js"></script>
193193
<script src="http://cdn-na.infragistics.com/igniteui/latest/js/infragistics.lob.js"></script>
194194

195-
<script src="src/igniteui-angular.js"></script>
195+
<script src="src/igniteui-angularjs.js"></script>
196196
<script>var app = angular.module('app', ['ngRoute','igniteui-directives']);</script>
197197
<script src="samples/js/data/northwind-employees.js"></script>
198198
<script src="indexController.js"></script>

Diff for: package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"name": "igniteui-angular",
2+
"name": "igniteui-angularjs",
33
"version": "1.0.4",
4-
"main": "src/igniteui-angular.js",
4+
"main": "src/igniteui-angularjs.js",
55
"author": "IgniteUI",
66
"license": "MIT",
77
"repository": {
88
"type": "git",
9-
"url": "https://github.com/IgniteUI/igniteui-angular.git"
9+
"url": "https://github.com/IgniteUI/igniteui-angularjs.git"
1010
},
1111
"bugs": {
12-
"url": "https://github.com/IgniteUI/igniteui-angular/issues"
12+
"url": "https://github.com/IgniteUI/igniteui-angularjs/issues"
1313
},
14-
"homepage": "https://github.com/IgniteUI/igniteui-angular",
14+
"homepage": "https://github.com/IgniteUI/igniteui-angularjs",
1515
"dependencies": {},
1616
"devDependencies": {
1717
"mkdirp": "",

Diff for: samples/grid/master-detail/index.html

+6-6
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
</div>
3535
<div class="navbar-collapse collapse">
3636
<ul class="nav navbar-nav">
37-
<li><a href="/igniteui-angular/index.html">Home</a></li>
38-
<li><a href="https://github.com/IgniteUI/igniteui-angular">View on GitHub <i class="fa fa-github"></i></a></li>
37+
<li><a href="/igniteui-angularjs/index.html">Home</a></li>
38+
<li><a href="https://github.com/IgniteUI/igniteui-angularjs">View on GitHub <i class="fa fa-github"></i></a></li>
3939
</ul>
4040
</div>
4141
</div>
@@ -157,9 +157,9 @@ <h1 class="push-down-md">igGrid Master/Detail</h1>
157157

158158
<footer>
159159
<p>
160-
<a href="/igniteui-angular/index.html">Home</a> |
161-
<a href="https://github.com/IgniteUI/igniteui-angular/issues">Feedback &amp; Questions</a> |
162-
<a href="https://github.com/IgniteUI/igniteui-angular">Clone &amp; Fork</a>
160+
<a href="/igniteui-angularjs/index.html">Home</a> |
161+
<a href="https://github.com/IgniteUI/igniteui-angularjs/issues">Feedback &amp; Questions</a> |
162+
<a href="https://github.com/IgniteUI/igniteui-angularjs">Clone &amp; Fork</a>
163163
</p>
164164
<p class="small">For more information or to download a trial of Ignite UI, please visit: <a href="http://igniteui.com">http://igniteui.com</a></p>
165165
</footer>
@@ -175,7 +175,7 @@ <h1 class="push-down-md">igGrid Master/Detail</h1>
175175
<script src="http://cdn-na.infragistics.com/igniteui/latest/js/infragistics.core.js"></script>
176176
<script src="http://cdn-na.infragistics.com/igniteui/latest/js/infragistics.lob.js"></script>
177177

178-
<script src="../../../src/igniteui-angular.js"></script>
178+
<script src="../../../src/igniteui-angularjs.js"></script>
179179

180180
<script src="app/lib/Math.uuid.js"></script>
181181
<script src="app/app.js"></script>

0 commit comments

Comments
 (0)