Skip to content

Commit 91ff8a7

Browse files
committed
Add copyright information to source files
1 parent 20f303f commit 91ff8a7

File tree

5 files changed

+74
-6
lines changed

5 files changed

+74
-6
lines changed

source/javascripts/lang_selector.js

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
Copyright 2008-2012 Concur Technologies, Inc.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License"); you may
5+
not use this file except in compliance with the License. You may obtain
6+
a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12+
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13+
License for the specific language governing permissions and limitations
14+
under the License.
15+
*/
116
languages = []
217
function activateLanguage(language) {
318
$("#lang-selector a").removeClass('active');

source/layouts/layout.erb

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
<%#
2+
Copyright 2008-2012 Concur Technologies, Inc.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License"); you may
5+
not use this file except in compliance with the License. You may obtain
6+
a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12+
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13+
License for the specific language governing permissions and limitations
14+
under the License.
15+
%>
116
<!doctype html>
217
<html>
318
<head>

source/stylesheets/all.css.scss

+13-6
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,20 @@
55
@import 'syntax';
66

77
/*
8-
* jquery.tocify.css 1.7.0
9-
* Author: @gregfranko
10-
*/
8+
Copyright 2008-2012 Concur Technologies, Inc.
119
10+
Licensed under the Apache License, Version 2.0 (the "License"); you may
11+
not use this file except in compliance with the License. You may obtain
12+
a copy of the License at
13+
14+
http://www.apache.org/licenses/LICENSE-2.0
15+
16+
Unless required by applicable law or agreed to in writing, software
17+
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
18+
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
19+
License for the specific language governing permissions and limitations
20+
under the License.
21+
*/
1222

1323
html, body {
1424
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
@@ -228,7 +238,6 @@ html, body {
228238

229239
}
230240

231-
/* The Table of Contents container element */
232241
.tocify {
233242
overflow-y: auto;
234243
overflow-x: hidden;
@@ -280,11 +289,9 @@ html, body {
280289
color: #fff;
281290
}
282291

283-
/* Top level header elements */
284292
.tocify-header {
285293
}
286294

287-
/* Top level subheader elements. These are the first nested items underneath a header element. */
288295
.tocify-subheader {
289296
display: none;
290297
background-color: $nav-subitem-bg;

source/stylesheets/syntax.css.scss.erb

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
Copyright 2008-2012 Concur Technologies, Inc.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License"); you may
5+
not use this file except in compliance with the License. You may obtain
6+
a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12+
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13+
License for the specific language governing permissions and limitations
14+
under the License.
15+
*/
116
<%= Rouge::Themes::Base16::Monokai.render(:scope => '.highlight') %>
217
@import 'variables';
318

source/stylesheets/variables.scss

+16
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
/*
2+
Copyright 2008-2012 Concur Technologies, Inc.
3+
4+
Licensed under the Apache License, Version 2.0 (the "License"); you may
5+
not use this file except in compliance with the License. You may obtain
6+
a copy of the License at
7+
8+
http://www.apache.org/licenses/LICENSE-2.0
9+
10+
Unless required by applicable law or agreed to in writing, software
11+
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
12+
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
13+
License for the specific language governing permissions and limitations
14+
under the License.
15+
*/
16+
117
// width of the navbar
218
$nav-width: 230px;
319

0 commit comments

Comments
 (0)