Skip to content

Commit 5fc79ae

Browse files
author
attdevsupport
committed
12/17 IMMN V2 Code
1 parent 8c4a990 commit 5fc79ae

File tree

157 files changed

+13234
-5894
lines changed

Some content is hidden

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

157 files changed

+13234
-5894
lines changed

RESTFul/IMMN/Csharp/app1/Default.aspx

Lines changed: 526 additions & 190 deletions
Large diffs are not rendered by default.

RESTFul/IMMN/Csharp/app1/Default.aspx.cs

Lines changed: 1200 additions & 489 deletions
Large diffs are not rendered by default.

RESTFul/IMMN/Csharp/app1/Web.config

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
<customErrors mode="Off"></customErrors>
1111
</system.web>
1212
<appSettings>
13-
13+
<!-- Set this parameter value to "true", if you need to bypass the SSL certificate. Default FALSE -->
14+
<add key="IgnoreSSL" value="false"/>
15+
1416
<!-- This is mandatory parameter, set the value as per your registered application
1517
'API key' field value. -->
1618
<add key="api_key" value=""/>

RESTFul/IMMN/Csharp/app1/scripts/utils.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,17 @@ function chooseSelect(r,s){
9090
s.selectedIndex = 0;
9191
button.click();
9292
}
93+
94+
function toggle(showHideDiv, switchTextDiv, title) {
95+
var ele = document.getElementById(showHideDiv);
96+
var text = document.getElementById(switchTextDiv);
97+
if (ele.style.display == "block") {
98+
ele.style.display = "none";
99+
text.innerHTML = "";
100+
text.innerHTML = " " + title;
101+
}
102+
else {
103+
ele.style.display = "block";
104+
text.innerHTML = "Hide " + title;
105+
}
106+
}

RESTFul/IMMN/Csharp/app1/style/common.css

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ h2 {
6565
margin-right: 2.029334%;
6666
}
6767

68+
6869
/* End of util */
6970

7071
/* Layout styles */
@@ -122,7 +123,25 @@ h2 {
122123
}
123124

124125
#content th, #content td {
125-
text-align: center;
126+
text-align: left;
127+
padding-left: 10px;
128+
border: 1px solid lightgray;
129+
}
130+
131+
#kvp table {
132+
width: 96.875%;
133+
border-collapse: collapse;
134+
font-size: .75em;
135+
table-layout: fixed;
136+
word-wrap: break-word;
137+
}
138+
139+
#kvp tr:nth-of-type(even) {
140+
background: #eee;
141+
}
142+
143+
#kvp th, #kvp td {
144+
text-align: left;
126145
padding-left: 10px;
127146
border: 1px solid lightgray;
128147
}
@@ -139,6 +158,9 @@ h2 {
139158
padding-top: 2.0833%;
140159
padding-left: 1.5625%;
141160
}
161+
#formBox .toggle {
162+
display: none;
163+
}
142164

143165
#footer {
144166
text-align: center;
@@ -340,6 +362,8 @@ h2 {
340362
width: 100%;
341363
}
342364
/* END APP SPECIFIC MEDIA QUERY CSS */
365+
366+
343367
}
344368

345369
/* end responsive layout */

RESTFul/IMMN/Java/app1/.gitignore

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
# Compiled source #
2+
###################
3+
*.com
4+
*.class
5+
*.dll
6+
*.exe
7+
*.o
8+
*.so
9+
10+
# Packages #
11+
############
12+
# it's better to unpack these files and commit the raw source
13+
# git has its own built in compression methods
14+
*.7z
15+
*.dmg
16+
*.gz
17+
*.iso
18+
*.jar
19+
*.rar
20+
*.tar
21+
*.zip
22+
*.gem
23+
24+
# Logs and databases #
25+
######################
26+
*.log
27+
*.sql
28+
*.sqlite
29+
*.db
30+
tags
31+
32+
# OS generated files #
33+
######################
34+
.DS_Store
35+
.DS_Store?
36+
._*
37+
.Spotlight-V100
38+
.Trashes
39+
Icon?
40+
ehthumbs.db
41+
Thumbs.db
42+
*.swp
43+
*.swo
44+
45+
# Custom ignores #
46+
##################
47+
sync.sh
48+
excludes.txt
49+
Makefile
50+
51+
# Less CSS ignores #
52+
####################
53+
Less-CSS/*.css
54+
55+
# eclipse files
56+
.classpath
57+
.project
58+
.settings
59+
target/
60+
61+
# docs
62+
.yardoc/
63+
doc/

RESTFul/IMMN/Java/app1/pom.xml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,16 @@
2323
<artifactId>servlet-api</artifactId>
2424
<version>2.5</version>
2525
<scope>compile</scope>
26-
</dependency>
27-
<dependency>
26+
</dependency>
27+
<dependency>
28+
<groupId>commons-codec</groupId>
29+
<artifactId>commons-codec</artifactId>
30+
<version>1.7</version>
31+
</dependency>
32+
<dependency>
2833
<groupId>org.apache.commons</groupId>
2934
<artifactId>commons-lang3</artifactId>
30-
<version>3.0</version>
35+
<version>3.0.1</version>
3136
</dependency>
3237
<dependency>
3338
<groupId>commons-collections</groupId>

RESTFul/IMMN/Java/app1/src/main/java/com/att/api/immn/controller/Config.java

Lines changed: 0 additions & 49 deletions
This file was deleted.

0 commit comments

Comments
 (0)