forked from kiegroup/dashboard-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LICENSE-ASL-2.0.txt
1229 lines (1067 loc) · 72.9 KB
/
LICENSE-ASL-2.0.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# githubog: http://ogp.me/ns/fb/githubog#">
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>guvnor/LICENSE-ASL-2.0.txt at master · droolsjbpm/guvnor</title>
<link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" />
<link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" />
<link rel="apple-touch-icon-precomposed" sizes="57x57" href="apple-touch-icon-114.png" />
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="apple-touch-icon-114.png" />
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="apple-touch-icon-144.png" />
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="apple-touch-icon-144.png" />
<meta name="msapplication-TileImage" content="/windows-tile.png">
<meta name="msapplication-TileColor" content="#ffffff">
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<meta content="authenticity_token" name="csrf-param" />
<meta content="dDgCXToE3A0NiPN88zOW6XoNWRYb89Dqw2E/3mencZA=" name="csrf-token" />
<link href="https://a248.e.akamai.net/assets.github.com/assets/github-ca4b92fb3c82a44dad191edddb200e77ea292bba.css" media="screen" rel="stylesheet" type="text/css" />
<link href="https://a248.e.akamai.net/assets.github.com/assets/github2-4bddbb8a794100992349be0f15692563223b5fc2.css" media="screen" rel="stylesheet" type="text/css" />
<script src="https://a248.e.akamai.net/assets.github.com/assets/frameworks-57542e0cba19d068168099f287c117efa142863c.js" type="text/javascript"></script>
<script src="https://a248.e.akamai.net/assets.github.com/assets/github-65c8131db26cee4318983041a0339ebe444a0fd4.js" type="text/javascript"></script>
<link rel='permalink' href='/droolsjbpm/guvnor/blob/ca33d23ce15376a7255cba720dd29429699d703b/LICENSE-ASL-2.0.txt'>
<meta property="og:title" content="guvnor"/>
<meta property="og:type" content="githubog:gitrepository"/>
<meta property="og:url" content="https://github.com/droolsjbpm/guvnor"/>
<meta property="og:image" content="https://a248.e.akamai.net/assets.github.com/images/gravatars/gravatar-user-420.png?1345673560"/>
<meta property="og:site_name" content="GitHub"/>
<meta property="og:description" content="guvnor - Guvnor is the web application and repository to govern Drools and jBPM assets."/>
<meta name="description" content="guvnor - Guvnor is the web application and repository to govern Drools and jBPM assets." />
<link href="https://github.com/droolsjbpm/guvnor/commits/master.atom" rel="alternate" title="Recent Commits to guvnor:master" type="application/atom+xml" />
</head>
<body class="logged_in page-blob linux vis-public env-production ">
<div id="wrapper">
<div class="header header-logged-in true">
<div class="container clearfix">
<a class="header-logo-blacktocat" href="https://github.com/">
<span class="mega-icon mega-icon-blacktocat"></span>
</a>
<div class="divider-vertical"></div>
<a href="/notifications" class="notification-indicator tooltipped downwards" title="You have no unread notifications">
<span class="mail-status all-read"></span>
</a>
<div class="divider-vertical"></div>
<div class="topsearch command-bar-activated">
<form accept-charset="UTF-8" action="/search" class="command_bar_form" id="top_search_form" method="get">
<a href="/search/advanced" class="advanced-search tooltipped downwards command-bar-search" id="advanced_search" title="Advanced search"><span class="mini-icon mini-icon-advanced-search "></span></a>
<input type="text" name="q" id="command-bar" placeholder="Search or type a command" tabindex="1" data-username="dgutierr" autocapitalize="off">
<span class="mini-icon help tooltipped downwards" title="Show command bar help">
<span class="mini-icon mini-icon-help"></span>
</span>
<input type="hidden" name="ref" value="commandbar">
<div class="divider-vertical"></div>
</form>
<ul class="top-nav">
<li class="explore"><a href="https://github.com/explore">Explore</a></li>
<li><a href="https://gist.github.com">Gist</a></li>
<li><a href="/blog">Blog</a></li>
<li><a href="http://help.github.com">Help</a></li>
</ul>
</div>
<ul id="user-links">
<li>
<a href="https://github.com/dgutierr" class="name">
<img height="20" src="https://secure.gravatar.com/avatar/5cb43aef326fad06e37c587f90427763?s=140&d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png" width="20" /> dgutierr
</a>
</li>
<li>
<a href="/new" id="new_repo" class="tooltipped downwards" title="Create a new repo">
<span class="mini-icon mini-icon-create"></span>
</a>
</li>
<li>
<a href="/settings/profile" id="account_settings"
class="tooltipped downwards"
title="Account settings (You have no verified emails)">
<span class="mini-icon mini-icon-account-settings"></span>
<span class="setting_warning">!</span>
</a>
</li>
<li>
<a href="/logout" data-method="post" id="logout" class="tooltipped downwards" title="Sign out">
<span class="mini-icon mini-icon-logout"></span>
</a>
</li>
</ul>
</div>
</div>
<div class="global-notice warn"><div class="global-notice-inner"><h2>You don't have any verified emails. We recommend <a href="https://github.com/settings/emails">verifying</a> at least one email.</h2><p>Email verification will help our support team help you in case you have any email issues or lose your password.</p></div></div>
<div class="site hfeed" itemscope itemtype="http://schema.org/WebPage">
<div class="hentry">
<div class="pagehead repohead instapaper_ignore readability-menu">
<div class="container">
<div class="title-actions-bar">
<ul class="pagehead-actions">
<li class="subscription">
<form accept-charset="UTF-8" action="/notifications/subscribe" data-autosubmit="true" data-remote="true" method="post"><div style="margin:0;padding:0;display:inline"><input name="authenticity_token" type="hidden" value="dDgCXToE3A0NiPN88zOW6XoNWRYb89Dqw2E/3mencZA=" /></div> <input id="repository_id" name="repository_id" type="hidden" value="1354561" />
<div class="context-menu-container js-menu-container js-context-menu">
<span class="minibutton switcher bigger js-menu-target">
<span class="js-context-button">
<span class="mini-icon mini-icon-watching"></span>Watch
</span>
</span>
<div class="context-pane js-menu-content">
<a href="javascript:;" class="close js-menu-close"><span class="mini-icon mini-icon-remove-close"></span></a>
<div class="context-title">Notification status</div>
<div class="context-body pane-selector">
<ul class="js-navigation-container">
<li class="selector-item js-navigation-item js-navigation-target selected">
<span class="mini-icon mini-icon-confirm"></span>
<label>
<input checked="checked" id="do_included" name="do" type="radio" value="included" />
<h4>Not watching</h4>
<p>You will only receive notifications when you participate or are mentioned.</p>
</label>
<span class="context-button-text js-context-button-text">
<span class="mini-icon mini-icon-watching"></span>
Watch
</span>
</li>
<li class="selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<label>
<input id="do_subscribed" name="do" type="radio" value="subscribed" />
<h4>Watching</h4>
<p>You will receive all notifications for this repository.</p>
</label>
<span class="context-button-text js-context-button-text">
<span class="mini-icon mini-icon-unwatch"></span>
Unwatch
</span>
</li>
<li class="selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<label>
<input id="do_ignore" name="do" type="radio" value="ignore" />
<h4>Ignored</h4>
<p>You will not receive notifications for this repository.</p>
</label>
<span class="context-button-text js-context-button-text">
<span class="mini-icon mini-icon-mute"></span>
Stop ignoring
</span>
</li>
</ul>
</div>
</div>
</div>
</form>
</li>
<li class="js-toggler-container js-social-container starring-container ">
<a href="/droolsjbpm/guvnor/unstar" class="minibutton js-toggler-target starred" data-remote="true" data-method="post" rel="nofollow">
<span class="mini-icon mini-icon-star"></span>Unstar
</a><a href="/droolsjbpm/guvnor/star" class="minibutton js-toggler-target unstarred" data-remote="true" data-method="post" rel="nofollow">
<span class="mini-icon mini-icon-star"></span>Star
</a><a class="social-count js-social-count" href="/droolsjbpm/guvnor/stargazers">145</a>
</li>
<li>
<a href="/droolsjbpm/guvnor/fork_select" class="minibutton js-toggler-target lighter" rel="facebox nofollow"><span class="mini-icon mini-icon-fork"></span>Fork</a><a href="/droolsjbpm/guvnor/network" class="social-count">141</a>
</li>
</ul>
<h1 itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="entry-title public">
<span class="repo-label"><span>public</span></span>
<span class="mega-icon mega-icon-public-repo"></span>
<span class="author vcard">
<a href="/droolsjbpm" class="url fn" itemprop="url" rel="author">
<span itemprop="title">droolsjbpm</span>
</a></span> /
<strong><a href="/droolsjbpm/guvnor" class="js-current-repository">guvnor</a></strong>
</h1>
</div>
<ul class="tabs">
<li><a href="/droolsjbpm/guvnor" class="selected" highlight="repo_sourcerepo_downloadsrepo_commitsrepo_tagsrepo_branches">Code</a></li>
<li><a href="/droolsjbpm/guvnor/network" highlight="repo_network">Network</a></li>
<li><a href="/droolsjbpm/guvnor/pulls" highlight="repo_pulls">Pull Requests <span class='counter'>1</span></a></li>
<li><a href="/droolsjbpm/guvnor/graphs" highlight="repo_graphsrepo_contributors">Graphs</a></li>
</ul>
<div class="tabnav">
<span class="tabnav-right">
<ul class="tabnav-tabs">
<li><a href="/droolsjbpm/guvnor/tags" class="tabnav-tab" highlight="repo_tags">Tags <span class="counter ">18</span></a></li>
<li><a href="/droolsjbpm/guvnor/downloads" class="tabnav-tab" highlight="repo_downloads">Downloads <span class="counter blank">0</span></a></li>
</ul>
</span>
<div class="tabnav-widget scope">
<div class="context-menu-container js-menu-container js-context-menu">
<a href="#"
class="minibutton bigger switcher js-menu-target js-commitish-button btn-branch repo-tree"
data-hotkey="w"
data-ref="master">
<span><em class="mini-icon mini-icon-branch"></em><i>branch:</i> master</span>
</a>
<div class="context-pane commitish-context js-menu-content">
<a href="javascript:;" class="close js-menu-close"><span class="mini-icon mini-icon-remove-close"></span></a>
<div class="context-title">Switch branches/tags</div>
<div class="context-body pane-selector commitish-selector js-navigation-container">
<div class="filterbar">
<input type="text" id="context-commitish-filter-field" class="js-navigation-enable js-filterable-field" placeholder="Filter branches/tags">
<ul class="tabs">
<li><a href="#" data-filter="branches" class="selected">Branches</a></li>
<li><a href="#" data-filter="tags">Tags</a></li>
</ul>
</div>
<div class="js-filter-tab js-filter-branches">
<div data-filterable-for="context-commitish-filter-field" data-filterable-type=substring>
<div class="commitish-item branch-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.2.0.M2.x/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.2.0.M2.x" rel="nofollow">5.2.0.M2.x</a>
</h4>
</div>
<div class="commitish-item branch-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.2.x/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.2.x" rel="nofollow">5.2.x</a>
</h4>
</div>
<div class="commitish-item branch-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.3.x/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.3.x" rel="nofollow">5.3.x</a>
</h4>
</div>
<div class="commitish-item branch-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.4.x/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.4.x" rel="nofollow">5.4.x</a>
</h4>
</div>
<div class="commitish-item branch-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.5.x/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.5.x" rel="nofollow">5.5.x</a>
</h4>
</div>
<div class="commitish-item branch-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/kie_refactory/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="kie_refactory" rel="nofollow">kie_refactory</a>
</h4>
</div>
<div class="commitish-item branch-commitish selector-item js-navigation-item js-navigation-target selected">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/master/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="master" rel="nofollow">master</a>
</h4>
</div>
</div>
<div class="no-results">Nothing to show</div>
</div>
<div class="js-filter-tab js-filter-tags " style="display:none">
<div data-filterable-for="context-commitish-filter-field" data-filterable-type=substring>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/6.0.0.Alpha1/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="6.0.0.Alpha1" rel="nofollow">6.0.0.Alpha1</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.5.0.Final/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.5.0.Final" rel="nofollow">5.5.0.Final</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.5.0.CR1/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.5.0.CR1" rel="nofollow">5.5.0.CR1</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.5.0.Beta1/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.5.0.Beta1" rel="nofollow">5.5.0.Beta1</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.4.0.Final/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.4.0.Final" rel="nofollow">5.4.0.Final</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.4.0.CR1/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.4.0.CR1" rel="nofollow">5.4.0.CR1</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.4.0.Beta2/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.4.0.Beta2" rel="nofollow">5.4.0.Beta2</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.4.0.Beta1/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.4.0.Beta1" rel="nofollow">5.4.0.Beta1</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.3.3.Final/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.3.3.Final" rel="nofollow">5.3.3.Final</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.3.2.Final/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.3.2.Final" rel="nofollow">5.3.2.Final</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.3.1.Final/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.3.1.Final" rel="nofollow">5.3.1.Final</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.3.0.Final/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.3.0.Final" rel="nofollow">5.3.0.Final</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.3.0.CR1/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.3.0.CR1" rel="nofollow">5.3.0.CR1</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.3.0.Beta1/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.3.0.Beta1" rel="nofollow">5.3.0.Beta1</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.2.1.Final/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.2.1.Final" rel="nofollow">5.2.1.Final</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.2.0.M2/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.2.0.M2" rel="nofollow">5.2.0.M2</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.2.0.Final/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.2.0.Final" rel="nofollow">5.2.0.Final</a>
</h4>
</div>
<div class="commitish-item tag-commitish selector-item js-navigation-item js-navigation-target ">
<span class="mini-icon mini-icon-confirm"></span>
<h4>
<a href="/droolsjbpm/guvnor/blob/5.2.0.CR1/LICENSE-ASL-2.0.txt" class="js-navigation-open" data-name="5.2.0.CR1" rel="nofollow">5.2.0.CR1</a>
</h4>
</div>
</div>
<div class="no-results">Nothing to show</div>
</div>
</div>
</div><!-- /.commitish-context-context -->
</div>
</div> <!-- /.scope -->
<ul class="tabnav-tabs">
<li><a href="/droolsjbpm/guvnor" class="selected tabnav-tab" highlight="repo_source">Files</a></li>
<li><a href="/droolsjbpm/guvnor/commits/master" class="tabnav-tab" highlight="repo_commits">Commits</a></li>
<li><a href="/droolsjbpm/guvnor/branches" class="tabnav-tab" highlight="repo_branches" rel="nofollow">Branches <span class="counter ">7</span></a></li>
</ul>
</div>
</div>
</div><!-- /.repohead -->
<div id="js-repo-pjax-container" class="container context-loader-container" data-pjax-container>
<!-- blob contrib key: blob_contributors:v21:b0b85ddebec266e588b383aaf9c6de09 -->
<!-- blob contrib frag key: views10/v8/blob_contributors:v21:b0b85ddebec266e588b383aaf9c6de09 -->
<div id="slider">
<p title="This is a placeholder element" class="js-history-link-replace hidden"></p>
<div class="breadcrumb" data-path="LICENSE-ASL-2.0.txt/">
<span class='bold'><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/droolsjbpm/guvnor" class="js-slider-breadcrumb" itemscope="url"><span itemprop="title">guvnor</span></a></span></span> / <strong class="final-path">LICENSE-ASL-2.0.txt</strong> <span class="js-clippy mini-icon mini-icon-clippy " data-clipboard-text="LICENSE-ASL-2.0.txt" data-copied-hint="copied!" data-copy-hint="copy to clipboard"></span>
</div>
<a href="/droolsjbpm/guvnor/find/master" class="js-slide-to" data-hotkey="t" style="display:none">Show File Finder</a>
<div class="commit file-history-tease" data-path="LICENSE-ASL-2.0.txt/">
<img class="main-avatar" height="24" src="https://secure.gravatar.com/avatar/27147a6679a4bfb6461ff1c0ae10473e?s=140&d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png" width="24" />
<span class="author"><a href="/ge0ffrey">ge0ffrey</a></span>
<time class="js-relative-date" datetime="2011-02-12T01:30:12-08:00" title="2011-02-12 01:30:12">February 12, 2011</time>
<div class="commit-title">
<a href="/droolsjbpm/guvnor/commit/f96f418153ad7f7b4a743bda3fb15e0dff39feb7" class="message">JBRULES-2869: Split-off requires license file per repo</a>
</div>
<div class="participation">
<p class="quickstat"><a href="#blob_contributors_box" rel="facebox"><strong>1</strong> contributor</a></p>
</div>
<div id="blob_contributors_box" style="display:none">
<h2>Users on GitHub who have contributed to this file</h2>
<ul class="facebox-user-list">
<li>
<img height="24" src="https://secure.gravatar.com/avatar/27147a6679a4bfb6461ff1c0ae10473e?s=140&d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png" width="24" />
<a href="/ge0ffrey">ge0ffrey</a>
</li>
</ul>
</div>
</div>
<div class="frames">
<div class="frame frame-center" data-path="LICENSE-ASL-2.0.txt/" data-permalink-url="/droolsjbpm/guvnor/blob/ca33d23ce15376a7255cba720dd29429699d703b/LICENSE-ASL-2.0.txt" data-title="guvnor/LICENSE-ASL-2.0.txt at master · droolsjbpm/guvnor · GitHub" data-type="blob">
<div id="files" class="bubble">
<div class="file">
<div class="meta">
<div class="info">
<span class="icon"><b class="mini-icon mini-icon-text-file"></b></span>
<span class="mode" title="File Mode">file</span>
<span>203 lines (169 sloc)</span>
<span>11.358 kb</span>
</div>
<ul class="button-group actions">
<li>
<a class="grouped-button minibutton bigger lighter tooltipped leftwards"
title="Clicking this button will automatically fork this project so you can edit the file"
href="/droolsjbpm/guvnor/edit/master/LICENSE-ASL-2.0.txt"
data-method="post" rel="nofollow">Edit</a>
</li>
<li><a href="/droolsjbpm/guvnor/raw/master/LICENSE-ASL-2.0.txt" class="minibutton grouped-button bigger lighter" id="raw-url">Raw</a></li>
<li><a href="/droolsjbpm/guvnor/blame/master/LICENSE-ASL-2.0.txt" class="minibutton grouped-button bigger lighter">Blame</a></li>
<li><a href="/droolsjbpm/guvnor/commits/master/LICENSE-ASL-2.0.txt" class="minibutton grouped-button bigger lighter" rel="nofollow">History</a></li>
</ul>
</div>
<div class="data type-text">
<table cellpadding="0" cellspacing="0" class="lines">
<tr>
<td>
<pre class="line_numbers"><span id="L1" rel="#L1">1</span>
<span id="L2" rel="#L2">2</span>
<span id="L3" rel="#L3">3</span>
<span id="L4" rel="#L4">4</span>
<span id="L5" rel="#L5">5</span>
<span id="L6" rel="#L6">6</span>
<span id="L7" rel="#L7">7</span>
<span id="L8" rel="#L8">8</span>
<span id="L9" rel="#L9">9</span>
<span id="L10" rel="#L10">10</span>
<span id="L11" rel="#L11">11</span>
<span id="L12" rel="#L12">12</span>
<span id="L13" rel="#L13">13</span>
<span id="L14" rel="#L14">14</span>
<span id="L15" rel="#L15">15</span>
<span id="L16" rel="#L16">16</span>
<span id="L17" rel="#L17">17</span>
<span id="L18" rel="#L18">18</span>
<span id="L19" rel="#L19">19</span>
<span id="L20" rel="#L20">20</span>
<span id="L21" rel="#L21">21</span>
<span id="L22" rel="#L22">22</span>
<span id="L23" rel="#L23">23</span>
<span id="L24" rel="#L24">24</span>
<span id="L25" rel="#L25">25</span>
<span id="L26" rel="#L26">26</span>
<span id="L27" rel="#L27">27</span>
<span id="L28" rel="#L28">28</span>
<span id="L29" rel="#L29">29</span>
<span id="L30" rel="#L30">30</span>
<span id="L31" rel="#L31">31</span>
<span id="L32" rel="#L32">32</span>
<span id="L33" rel="#L33">33</span>
<span id="L34" rel="#L34">34</span>
<span id="L35" rel="#L35">35</span>
<span id="L36" rel="#L36">36</span>
<span id="L37" rel="#L37">37</span>
<span id="L38" rel="#L38">38</span>
<span id="L39" rel="#L39">39</span>
<span id="L40" rel="#L40">40</span>
<span id="L41" rel="#L41">41</span>
<span id="L42" rel="#L42">42</span>
<span id="L43" rel="#L43">43</span>
<span id="L44" rel="#L44">44</span>
<span id="L45" rel="#L45">45</span>
<span id="L46" rel="#L46">46</span>
<span id="L47" rel="#L47">47</span>
<span id="L48" rel="#L48">48</span>
<span id="L49" rel="#L49">49</span>
<span id="L50" rel="#L50">50</span>
<span id="L51" rel="#L51">51</span>
<span id="L52" rel="#L52">52</span>
<span id="L53" rel="#L53">53</span>
<span id="L54" rel="#L54">54</span>
<span id="L55" rel="#L55">55</span>
<span id="L56" rel="#L56">56</span>
<span id="L57" rel="#L57">57</span>
<span id="L58" rel="#L58">58</span>
<span id="L59" rel="#L59">59</span>
<span id="L60" rel="#L60">60</span>
<span id="L61" rel="#L61">61</span>
<span id="L62" rel="#L62">62</span>
<span id="L63" rel="#L63">63</span>
<span id="L64" rel="#L64">64</span>
<span id="L65" rel="#L65">65</span>
<span id="L66" rel="#L66">66</span>
<span id="L67" rel="#L67">67</span>
<span id="L68" rel="#L68">68</span>
<span id="L69" rel="#L69">69</span>
<span id="L70" rel="#L70">70</span>
<span id="L71" rel="#L71">71</span>
<span id="L72" rel="#L72">72</span>
<span id="L73" rel="#L73">73</span>
<span id="L74" rel="#L74">74</span>
<span id="L75" rel="#L75">75</span>
<span id="L76" rel="#L76">76</span>
<span id="L77" rel="#L77">77</span>
<span id="L78" rel="#L78">78</span>
<span id="L79" rel="#L79">79</span>
<span id="L80" rel="#L80">80</span>
<span id="L81" rel="#L81">81</span>
<span id="L82" rel="#L82">82</span>
<span id="L83" rel="#L83">83</span>
<span id="L84" rel="#L84">84</span>
<span id="L85" rel="#L85">85</span>
<span id="L86" rel="#L86">86</span>
<span id="L87" rel="#L87">87</span>
<span id="L88" rel="#L88">88</span>
<span id="L89" rel="#L89">89</span>
<span id="L90" rel="#L90">90</span>
<span id="L91" rel="#L91">91</span>
<span id="L92" rel="#L92">92</span>
<span id="L93" rel="#L93">93</span>
<span id="L94" rel="#L94">94</span>
<span id="L95" rel="#L95">95</span>
<span id="L96" rel="#L96">96</span>
<span id="L97" rel="#L97">97</span>
<span id="L98" rel="#L98">98</span>
<span id="L99" rel="#L99">99</span>
<span id="L100" rel="#L100">100</span>
<span id="L101" rel="#L101">101</span>
<span id="L102" rel="#L102">102</span>
<span id="L103" rel="#L103">103</span>
<span id="L104" rel="#L104">104</span>
<span id="L105" rel="#L105">105</span>
<span id="L106" rel="#L106">106</span>
<span id="L107" rel="#L107">107</span>
<span id="L108" rel="#L108">108</span>
<span id="L109" rel="#L109">109</span>
<span id="L110" rel="#L110">110</span>
<span id="L111" rel="#L111">111</span>
<span id="L112" rel="#L112">112</span>
<span id="L113" rel="#L113">113</span>
<span id="L114" rel="#L114">114</span>
<span id="L115" rel="#L115">115</span>
<span id="L116" rel="#L116">116</span>
<span id="L117" rel="#L117">117</span>
<span id="L118" rel="#L118">118</span>
<span id="L119" rel="#L119">119</span>
<span id="L120" rel="#L120">120</span>
<span id="L121" rel="#L121">121</span>
<span id="L122" rel="#L122">122</span>
<span id="L123" rel="#L123">123</span>
<span id="L124" rel="#L124">124</span>
<span id="L125" rel="#L125">125</span>
<span id="L126" rel="#L126">126</span>
<span id="L127" rel="#L127">127</span>
<span id="L128" rel="#L128">128</span>
<span id="L129" rel="#L129">129</span>
<span id="L130" rel="#L130">130</span>
<span id="L131" rel="#L131">131</span>
<span id="L132" rel="#L132">132</span>
<span id="L133" rel="#L133">133</span>
<span id="L134" rel="#L134">134</span>
<span id="L135" rel="#L135">135</span>
<span id="L136" rel="#L136">136</span>
<span id="L137" rel="#L137">137</span>
<span id="L138" rel="#L138">138</span>
<span id="L139" rel="#L139">139</span>
<span id="L140" rel="#L140">140</span>
<span id="L141" rel="#L141">141</span>
<span id="L142" rel="#L142">142</span>
<span id="L143" rel="#L143">143</span>
<span id="L144" rel="#L144">144</span>
<span id="L145" rel="#L145">145</span>
<span id="L146" rel="#L146">146</span>
<span id="L147" rel="#L147">147</span>
<span id="L148" rel="#L148">148</span>
<span id="L149" rel="#L149">149</span>
<span id="L150" rel="#L150">150</span>
<span id="L151" rel="#L151">151</span>
<span id="L152" rel="#L152">152</span>
<span id="L153" rel="#L153">153</span>
<span id="L154" rel="#L154">154</span>
<span id="L155" rel="#L155">155</span>
<span id="L156" rel="#L156">156</span>
<span id="L157" rel="#L157">157</span>
<span id="L158" rel="#L158">158</span>
<span id="L159" rel="#L159">159</span>
<span id="L160" rel="#L160">160</span>
<span id="L161" rel="#L161">161</span>
<span id="L162" rel="#L162">162</span>
<span id="L163" rel="#L163">163</span>
<span id="L164" rel="#L164">164</span>
<span id="L165" rel="#L165">165</span>
<span id="L166" rel="#L166">166</span>
<span id="L167" rel="#L167">167</span>
<span id="L168" rel="#L168">168</span>
<span id="L169" rel="#L169">169</span>
<span id="L170" rel="#L170">170</span>
<span id="L171" rel="#L171">171</span>
<span id="L172" rel="#L172">172</span>
<span id="L173" rel="#L173">173</span>
<span id="L174" rel="#L174">174</span>
<span id="L175" rel="#L175">175</span>
<span id="L176" rel="#L176">176</span>
<span id="L177" rel="#L177">177</span>
<span id="L178" rel="#L178">178</span>
<span id="L179" rel="#L179">179</span>
<span id="L180" rel="#L180">180</span>
<span id="L181" rel="#L181">181</span>
<span id="L182" rel="#L182">182</span>
<span id="L183" rel="#L183">183</span>
<span id="L184" rel="#L184">184</span>
<span id="L185" rel="#L185">185</span>
<span id="L186" rel="#L186">186</span>
<span id="L187" rel="#L187">187</span>
<span id="L188" rel="#L188">188</span>
<span id="L189" rel="#L189">189</span>
<span id="L190" rel="#L190">190</span>
<span id="L191" rel="#L191">191</span>
<span id="L192" rel="#L192">192</span>
<span id="L193" rel="#L193">193</span>
<span id="L194" rel="#L194">194</span>
<span id="L195" rel="#L195">195</span>
<span id="L196" rel="#L196">196</span>
<span id="L197" rel="#L197">197</span>
<span id="L198" rel="#L198">198</span>
<span id="L199" rel="#L199">199</span>
<span id="L200" rel="#L200">200</span>
<span id="L201" rel="#L201">201</span>
<span id="L202" rel="#L202">202</span>
</pre>
</td>
<td width="100%">
<div class="highlight"><pre><div class='line' id='LC1'><br/></div><div class='line' id='LC2'> Apache License</div><div class='line' id='LC3'> Version 2.0, January 2004</div><div class='line' id='LC4'> http://www.apache.org/licenses/</div><div class='line' id='LC5'><br/></div><div class='line' id='LC6'> TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION</div><div class='line' id='LC7'><br/></div><div class='line' id='LC8'> 1. Definitions.</div><div class='line' id='LC9'><br/></div><div class='line' id='LC10'> "License" shall mean the terms and conditions for use, reproduction,</div><div class='line' id='LC11'> and distribution as defined by Sections 1 through 9 of this document.</div><div class='line' id='LC12'><br/></div><div class='line' id='LC13'> "Licensor" shall mean the copyright owner or entity authorized by</div><div class='line' id='LC14'> the copyright owner that is granting the License.</div><div class='line' id='LC15'><br/></div><div class='line' id='LC16'> "Legal Entity" shall mean the union of the acting entity and all</div><div class='line' id='LC17'> other entities that control, are controlled by, or are under common</div><div class='line' id='LC18'> control with that entity. For the purposes of this definition,</div><div class='line' id='LC19'> "control" means (i) the power, direct or indirect, to cause the</div><div class='line' id='LC20'> direction or management of such entity, whether by contract or</div><div class='line' id='LC21'> otherwise, or (ii) ownership of fifty percent (50%) or more of the</div><div class='line' id='LC22'> outstanding shares, or (iii) beneficial ownership of such entity.</div><div class='line' id='LC23'><br/></div><div class='line' id='LC24'> "You" (or "Your") shall mean an individual or Legal Entity</div><div class='line' id='LC25'> exercising permissions granted by this License.</div><div class='line' id='LC26'><br/></div><div class='line' id='LC27'> "Source" form shall mean the preferred form for making modifications,</div><div class='line' id='LC28'> including but not limited to software source code, documentation</div><div class='line' id='LC29'> source, and configuration files.</div><div class='line' id='LC30'><br/></div><div class='line' id='LC31'> "Object" form shall mean any form resulting from mechanical</div><div class='line' id='LC32'> transformation or translation of a Source form, including but</div><div class='line' id='LC33'> not limited to compiled object code, generated documentation,</div><div class='line' id='LC34'> and conversions to other media types.</div><div class='line' id='LC35'><br/></div><div class='line' id='LC36'> "Work" shall mean the work of authorship, whether in Source or</div><div class='line' id='LC37'> Object form, made available under the License, as indicated by a</div><div class='line' id='LC38'> copyright notice that is included in or attached to the work</div><div class='line' id='LC39'> (an example is provided in the Appendix below).</div><div class='line' id='LC40'><br/></div><div class='line' id='LC41'> "Derivative Works" shall mean any work, whether in Source or Object</div><div class='line' id='LC42'> form, that is based on (or derived from) the Work and for which the</div><div class='line' id='LC43'> editorial revisions, annotations, elaborations, or other modifications</div><div class='line' id='LC44'> represent, as a whole, an original work of authorship. For the purposes</div><div class='line' id='LC45'> of this License, Derivative Works shall not include works that remain</div><div class='line' id='LC46'> separable from, or merely link (or bind by name) to the interfaces of,</div><div class='line' id='LC47'> the Work and Derivative Works thereof.</div><div class='line' id='LC48'><br/></div><div class='line' id='LC49'> "Contribution" shall mean any work of authorship, including</div><div class='line' id='LC50'> the original version of the Work and any modifications or additions</div><div class='line' id='LC51'> to that Work or Derivative Works thereof, that is intentionally</div><div class='line' id='LC52'> submitted to Licensor for inclusion in the Work by the copyright owner</div><div class='line' id='LC53'> or by an individual or Legal Entity authorized to submit on behalf of</div><div class='line' id='LC54'> the copyright owner. For the purposes of this definition, "submitted"</div><div class='line' id='LC55'> means any form of electronic, verbal, or written communication sent</div><div class='line' id='LC56'> to the Licensor or its representatives, including but not limited to</div><div class='line' id='LC57'> communication on electronic mailing lists, source code control systems,</div><div class='line' id='LC58'> and issue tracking systems that are managed by, or on behalf of, the</div><div class='line' id='LC59'> Licensor for the purpose of discussing and improving the Work, but</div><div class='line' id='LC60'> excluding communication that is conspicuously marked or otherwise</div><div class='line' id='LC61'> designated in writing by the copyright owner as "Not a Contribution."</div><div class='line' id='LC62'><br/></div><div class='line' id='LC63'> "Contributor" shall mean Licensor and any individual or Legal Entity</div><div class='line' id='LC64'> on behalf of whom a Contribution has been received by Licensor and</div><div class='line' id='LC65'> subsequently incorporated within the Work.</div><div class='line' id='LC66'><br/></div><div class='line' id='LC67'> 2. Grant of Copyright License. Subject to the terms and conditions of</div><div class='line' id='LC68'> this License, each Contributor hereby grants to You a perpetual,</div><div class='line' id='LC69'> worldwide, non-exclusive, no-charge, royalty-free, irrevocable</div><div class='line' id='LC70'> copyright license to reproduce, prepare Derivative Works of,</div><div class='line' id='LC71'> publicly display, publicly perform, sublicense, and distribute the</div><div class='line' id='LC72'> Work and such Derivative Works in Source or Object form.</div><div class='line' id='LC73'><br/></div><div class='line' id='LC74'> 3. Grant of Patent License. Subject to the terms and conditions of</div><div class='line' id='LC75'> this License, each Contributor hereby grants to You a perpetual,</div><div class='line' id='LC76'> worldwide, non-exclusive, no-charge, royalty-free, irrevocable</div><div class='line' id='LC77'> (except as stated in this section) patent license to make, have made,</div><div class='line' id='LC78'> use, offer to sell, sell, import, and otherwise transfer the Work,</div><div class='line' id='LC79'> where such license applies only to those patent claims licensable</div><div class='line' id='LC80'> by such Contributor that are necessarily infringed by their</div><div class='line' id='LC81'> Contribution(s) alone or by combination of their Contribution(s)</div><div class='line' id='LC82'> with the Work to which such Contribution(s) was submitted. If You</div><div class='line' id='LC83'> institute patent litigation against any entity (including a</div><div class='line' id='LC84'> cross-claim or counterclaim in a lawsuit) alleging that the Work</div><div class='line' id='LC85'> or a Contribution incorporated within the Work constitutes direct</div><div class='line' id='LC86'> or contributory patent infringement, then any patent licenses</div><div class='line' id='LC87'> granted to You under this License for that Work shall terminate</div><div class='line' id='LC88'> as of the date such litigation is filed.</div><div class='line' id='LC89'><br/></div><div class='line' id='LC90'> 4. Redistribution. You may reproduce and distribute copies of the</div><div class='line' id='LC91'> Work or Derivative Works thereof in any medium, with or without</div><div class='line' id='LC92'> modifications, and in Source or Object form, provided that You</div><div class='line' id='LC93'> meet the following conditions:</div><div class='line' id='LC94'><br/></div><div class='line' id='LC95'> (a) You must give any other recipients of the Work or</div><div class='line' id='LC96'> Derivative Works a copy of this License; and</div><div class='line' id='LC97'><br/></div><div class='line' id='LC98'> (b) You must cause any modified files to carry prominent notices</div><div class='line' id='LC99'> stating that You changed the files; and</div><div class='line' id='LC100'><br/></div><div class='line' id='LC101'> (c) You must retain, in the Source form of any Derivative Works</div><div class='line' id='LC102'> that You distribute, all copyright, patent, trademark, and</div><div class='line' id='LC103'> attribution notices from the Source form of the Work,</div><div class='line' id='LC104'> excluding those notices that do not pertain to any part of</div><div class='line' id='LC105'> the Derivative Works; and</div><div class='line' id='LC106'><br/></div><div class='line' id='LC107'> (d) If the Work includes a "NOTICE" text file as part of its</div><div class='line' id='LC108'> distribution, then any Derivative Works that You distribute must</div><div class='line' id='LC109'> include a readable copy of the attribution notices contained</div><div class='line' id='LC110'> within such NOTICE file, excluding those notices that do not</div><div class='line' id='LC111'> pertain to any part of the Derivative Works, in at least one</div><div class='line' id='LC112'> of the following places: within a NOTICE text file distributed</div><div class='line' id='LC113'> as part of the Derivative Works; within the Source form or</div><div class='line' id='LC114'> documentation, if provided along with the Derivative Works; or,</div><div class='line' id='LC115'> within a display generated by the Derivative Works, if and</div><div class='line' id='LC116'> wherever such third-party notices normally appear. The contents</div><div class='line' id='LC117'> of the NOTICE file are for informational purposes only and</div><div class='line' id='LC118'> do not modify the License. You may add Your own attribution</div><div class='line' id='LC119'> notices within Derivative Works that You distribute, alongside</div><div class='line' id='LC120'> or as an addendum to the NOTICE text from the Work, provided</div><div class='line' id='LC121'> that such additional attribution notices cannot be construed</div><div class='line' id='LC122'> as modifying the License.</div><div class='line' id='LC123'><br/></div><div class='line' id='LC124'> You may add Your own copyright statement to Your modifications and</div><div class='line' id='LC125'> may provide additional or different license terms and conditions</div><div class='line' id='LC126'> for use, reproduction, or distribution of Your modifications, or</div><div class='line' id='LC127'> for any such Derivative Works as a whole, provided Your use,</div><div class='line' id='LC128'> reproduction, and distribution of the Work otherwise complies with</div><div class='line' id='LC129'> the conditions stated in this License.</div><div class='line' id='LC130'><br/></div><div class='line' id='LC131'> 5. Submission of Contributions. Unless You explicitly state otherwise,</div><div class='line' id='LC132'> any Contribution intentionally submitted for inclusion in the Work</div><div class='line' id='LC133'> by You to the Licensor shall be under the terms and conditions of</div><div class='line' id='LC134'> this License, without any additional terms or conditions.</div><div class='line' id='LC135'> Notwithstanding the above, nothing herein shall supersede or modify</div><div class='line' id='LC136'> the terms of any separate license agreement you may have executed</div><div class='line' id='LC137'> with Licensor regarding such Contributions.</div><div class='line' id='LC138'><br/></div><div class='line' id='LC139'> 6. Trademarks. This License does not grant permission to use the trade</div><div class='line' id='LC140'> names, trademarks, service marks, or product names of the Licensor,</div><div class='line' id='LC141'> except as required for reasonable and customary use in describing the</div><div class='line' id='LC142'> origin of the Work and reproducing the content of the NOTICE file.</div><div class='line' id='LC143'><br/></div><div class='line' id='LC144'> 7. Disclaimer of Warranty. Unless required by applicable law or</div><div class='line' id='LC145'> agreed to in writing, Licensor provides the Work (and each</div><div class='line' id='LC146'> Contributor provides its Contributions) on an "AS IS" BASIS,</div><div class='line' id='LC147'> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or</div><div class='line' id='LC148'> implied, including, without limitation, any warranties or conditions</div><div class='line' id='LC149'> of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A</div><div class='line' id='LC150'> PARTICULAR PURPOSE. You are solely responsible for determining the</div><div class='line' id='LC151'> appropriateness of using or redistributing the Work and assume any</div><div class='line' id='LC152'> risks associated with Your exercise of permissions under this License.</div><div class='line' id='LC153'><br/></div><div class='line' id='LC154'> 8. Limitation of Liability. In no event and under no legal theory,</div><div class='line' id='LC155'> whether in tort (including negligence), contract, or otherwise,</div><div class='line' id='LC156'> unless required by applicable law (such as deliberate and grossly</div><div class='line' id='LC157'> negligent acts) or agreed to in writing, shall any Contributor be</div><div class='line' id='LC158'> liable to You for damages, including any direct, indirect, special,</div><div class='line' id='LC159'> incidental, or consequential damages of any character arising as a</div><div class='line' id='LC160'> result of this License or out of the use or inability to use the</div><div class='line' id='LC161'> Work (including but not limited to damages for loss of goodwill,</div><div class='line' id='LC162'> work stoppage, computer failure or malfunction, or any and all</div><div class='line' id='LC163'> other commercial damages or losses), even if such Contributor</div><div class='line' id='LC164'> has been advised of the possibility of such damages.</div><div class='line' id='LC165'><br/></div><div class='line' id='LC166'> 9. Accepting Warranty or Additional Liability. While redistributing</div><div class='line' id='LC167'> the Work or Derivative Works thereof, You may choose to offer,</div><div class='line' id='LC168'> and charge a fee for, acceptance of support, warranty, indemnity,</div><div class='line' id='LC169'> or other liability obligations and/or rights consistent with this</div><div class='line' id='LC170'> License. However, in accepting such obligations, You may act only</div><div class='line' id='LC171'> on Your own behalf and on Your sole responsibility, not on behalf</div><div class='line' id='LC172'> of any other Contributor, and only if You agree to indemnify,</div><div class='line' id='LC173'> defend, and hold each Contributor harmless for any liability</div><div class='line' id='LC174'> incurred by, or claims asserted against, such Contributor by reason</div><div class='line' id='LC175'> of your accepting any such warranty or additional liability.</div><div class='line' id='LC176'><br/></div><div class='line' id='LC177'> END OF TERMS AND CONDITIONS</div><div class='line' id='LC178'><br/></div><div class='line' id='LC179'> APPENDIX: How to apply the Apache License to your work.</div><div class='line' id='LC180'><br/></div><div class='line' id='LC181'> To apply the Apache License to your work, attach the following</div><div class='line' id='LC182'> boilerplate notice, with the fields enclosed by brackets "[]"</div><div class='line' id='LC183'> replaced with your own identifying information. (Don't include</div><div class='line' id='LC184'> the brackets!) The text should be enclosed in the appropriate</div><div class='line' id='LC185'> comment syntax for the file format. We also recommend that a</div><div class='line' id='LC186'> file or class name and description of purpose be included on the</div><div class='line' id='LC187'> same "printed page" as the copyright notice for easier</div><div class='line' id='LC188'> identification within third-party archives.</div><div class='line' id='LC189'><br/></div><div class='line' id='LC190'> Copyright [yyyy] [name of copyright owner]</div><div class='line' id='LC191'><br/></div><div class='line' id='LC192'> Licensed under the Apache License, Version 2.0 (the "License");</div><div class='line' id='LC193'> you may not use this file except in compliance with the License.</div><div class='line' id='LC194'> You may obtain a copy of the License at</div><div class='line' id='LC195'><br/></div><div class='line' id='LC196'> http://www.apache.org/licenses/LICENSE-2.0</div><div class='line' id='LC197'><br/></div><div class='line' id='LC198'> Unless required by applicable law or agreed to in writing, software</div><div class='line' id='LC199'> distributed under the License is distributed on an "AS IS" BASIS,</div><div class='line' id='LC200'> WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.</div><div class='line' id='LC201'> See the License for the specific language governing permissions and</div><div class='line' id='LC202'> limitations under the License.</div></pre></div>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
<a href="#jump-to-line" rel="facebox" data-hotkey="l" class="js-jump-to-line" style="display:none">Jump to Line</a>
<div id="jump-to-line" style="display:none">
<h2>Jump to Line</h2>
<form accept-charset="UTF-8" class="js-jump-to-line-form">
<input class="textfield js-jump-to-line-field" type="text">
<div class="full-button">
<button type="submit" class="classy">
Go
</button>
</div>
</form>
</div>
</div>
</div>
<div class="frame frame-loading large-loading-area" style="display:none;">
<img src="https://a248.e.akamai.net/assets.github.com/images/spinners/octocat-spinner-128.gif?1347543527" height="64" width="64">
</div>
</div>
</div>
<div class="context-overlay"></div>
</div>
<div id="footer-push"></div><!-- hack for sticky footer -->
</div><!-- end of wrapper - hack for sticky footer -->
<!-- footer -->
<div id="footer">
<div class="container clearfix">
<dl class="footer_nav">
<dt>GitHub</dt>
<dd><a href="https://github.com/about">About us</a></dd>
<dd><a href="https://github.com/blog">Blog</a></dd>
<dd><a href="https://github.com/contact">Contact & support</a></dd>
<dd><a href="http://enterprise.github.com/">GitHub Enterprise</a></dd>
<dd><a href="http://status.github.com/">Site status</a></dd>
</dl>
<dl class="footer_nav">
<dt>Applications</dt>
<dd><a href="http://mac.github.com/">GitHub for Mac</a></dd>
<dd><a href="http://windows.github.com/">GitHub for Windows</a></dd>
<dd><a href="http://eclipse.github.com/">GitHub for Eclipse</a></dd>
<dd><a href="http://mobile.github.com/">GitHub mobile apps</a></dd>
</dl>
<dl class="footer_nav">
<dt>Services</dt>
<dd><a href="http://get.gaug.es/">Gauges: Web analytics</a></dd>
<dd><a href="http://speakerdeck.com">Speaker Deck: Presentations</a></dd>
<dd><a href="https://gist.github.com">Gist: Code snippets</a></dd>
<dd><a href="http://jobs.github.com/">Job board</a></dd>
</dl>
<dl class="footer_nav">
<dt>Documentation</dt>
<dd><a href="http://help.github.com/">GitHub Help</a></dd>
<dd><a href="http://developer.github.com/">Developer API</a></dd>
<dd><a href="http://github.github.com/github-flavored-markdown/">GitHub Flavored Markdown</a></dd>
<dd><a href="http://pages.github.com/">GitHub Pages</a></dd>
</dl>
<dl class="footer_nav">
<dt>More</dt>
<dd><a href="http://training.github.com/">Training</a></dd>
<dd><a href="https://github.com/edu">Students & teachers</a></dd>
<dd><a href="http://shop.github.com">The Shop</a></dd>
<dd><a href="http://octodex.github.com/">The Octodex</a></dd>
</dl>
<hr class="footer-divider">
<p class="right">© 2012 <span title="0.09152s from fe19.rs.github.com">GitHub</span> Inc. All rights reserved.</p>
<a class="left" href="https://github.com/">
<span class="mega-icon mega-icon-invertocat"></span>
</a>
<ul id="legal">
<li><a href="https://github.com/site/terms">Terms of Service</a></li>
<li><a href="https://github.com/site/privacy">Privacy</a></li>
<li><a href="https://github.com/security">Security</a></li>
</ul>
</div><!-- /.container -->
</div><!-- /.#footer -->
<div id="keyboard_shortcuts_pane" class="instapaper_ignore readability-extra" style="display:none">
<h2>Keyboard Shortcuts <small><a href="#" class="js-see-all-keyboard-shortcuts">(see all)</a></small></h2>
<div class="columns threecols">
<div class="column first">
<h3>Site wide shortcuts</h3>
<dl class="keyboard-mappings">
<dt>s</dt>
<dd>Focus command bar</dd>
</dl>
<dl class="keyboard-mappings">
<dt>?</dt>
<dd>Bring up this help dialog</dd>
</dl>
</div><!-- /.column.first -->
<div class="column middle" style='display:none'>
<h3>Commit list</h3>
<dl class="keyboard-mappings">
<dt>j</dt>
<dd>Move selection down</dd>
</dl>
<dl class="keyboard-mappings">
<dt>k</dt>
<dd>Move selection up</dd>
</dl>
<dl class="keyboard-mappings">
<dt>c <em>or</em> o <em>or</em> enter</dt>
<dd>Open commit</dd>
</dl>
<dl class="keyboard-mappings">
<dt>y</dt>
<dd>Expand URL to its canonical form</dd>
</dl>
</div><!-- /.column.first -->
<div class="column last js-hidden-pane" style='display:none'>
<h3>Pull request list</h3>
<dl class="keyboard-mappings">
<dt>j</dt>
<dd>Move selection down</dd>
</dl>
<dl class="keyboard-mappings">
<dt>k</dt>
<dd>Move selection up</dd>
</dl>
<dl class="keyboard-mappings">
<dt>o <em>or</em> enter</dt>
<dd>Open issue</dd>
</dl>
<dl class="keyboard-mappings">
<dt><span class="platform-mac">⌘</span><span class="platform-other">ctrl</span> <em>+</em> enter</dt>
<dd>Submit comment</dd>
</dl>
<dl class="keyboard-mappings">
<dt><span class="platform-mac">⌘</span><span class="platform-other">ctrl</span> <em>+</em> shift p</dt>
<dd>Preview comment</dd>
</dl>
</div><!-- /.columns.last -->
</div><!-- /.columns.equacols -->
<div class="js-hidden-pane" style='display:none'>
<div class="rule"></div>
<h3>Issues</h3>
<div class="columns threecols">
<div class="column first">
<dl class="keyboard-mappings">
<dt>j</dt>
<dd>Move selection down</dd>
</dl>
<dl class="keyboard-mappings">
<dt>k</dt>
<dd>Move selection up</dd>
</dl>
<dl class="keyboard-mappings">
<dt>x</dt>
<dd>Toggle selection</dd>
</dl>
<dl class="keyboard-mappings">
<dt>o <em>or</em> enter</dt>
<dd>Open issue</dd>
</dl>
<dl class="keyboard-mappings">
<dt><span class="platform-mac">⌘</span><span class="platform-other">ctrl</span> <em>+</em> enter</dt>
<dd>Submit comment</dd>
</dl>
<dl class="keyboard-mappings">
<dt><span class="platform-mac">⌘</span><span class="platform-other">ctrl</span> <em>+</em> shift p</dt>
<dd>Preview comment</dd>
</dl>
</div><!-- /.column.first -->
<div class="column last">
<dl class="keyboard-mappings">
<dt>c</dt>
<dd>Create issue</dd>
</dl>
<dl class="keyboard-mappings">
<dt>l</dt>
<dd>Create label</dd>
</dl>
<dl class="keyboard-mappings">
<dt>i</dt>
<dd>Back to inbox</dd>
</dl>
<dl class="keyboard-mappings">
<dt>u</dt>
<dd>Back to issues</dd>
</dl>
<dl class="keyboard-mappings">
<dt>/</dt>
<dd>Focus issues search</dd>
</dl>
</div>
</div>
</div>
<div class="js-hidden-pane" style='display:none'>
<div class="rule"></div>
<h3>Issues Dashboard</h3>
<div class="columns threecols">
<div class="column first">
<dl class="keyboard-mappings">
<dt>j</dt>
<dd>Move selection down</dd>
</dl>
<dl class="keyboard-mappings">
<dt>k</dt>
<dd>Move selection up</dd>
</dl>
<dl class="keyboard-mappings">
<dt>o <em>or</em> enter</dt>
<dd>Open issue</dd>
</dl>
</div><!-- /.column.first -->
</div>
</div>
<div class="js-hidden-pane" style='display:none'>
<div class="rule"></div>
<h3>Network Graph</h3>
<div class="columns equacols">
<div class="column first">
<dl class="keyboard-mappings">
<dt><span class="badmono">←</span> <em>or</em> h</dt>
<dd>Scroll left</dd>
</dl>
<dl class="keyboard-mappings">
<dt><span class="badmono">→</span> <em>or</em> l</dt>