File tree Expand file tree Collapse file tree 21 files changed +126
-23
lines changed Expand file tree Collapse file tree 21 files changed +126
-23
lines changed Original file line number Diff line number Diff line change 7
7
<groupId >com.thenaglecode</groupId >
8
8
<artifactId >algorithms</artifactId >
9
9
<version >1.0.0.Pre-Alpha</version >
10
+ <properties >
11
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
12
+ </properties >
10
13
<dependencies >
11
14
<dependency >
12
15
<groupId >org.jboss.spec</groupId >
Original file line number Diff line number Diff line change 1
1
package com .thenaglecode .algorithms ;
2
2
3
- import com .thenaglecode .algorithms .util .ConfigurationItem ;
3
+ import com .thenaglecode .core .util .ConfigurationItem ;
4
4
5
5
/**
6
6
* Created with IntelliJ IDEA.
Original file line number Diff line number Diff line change 1
1
package com .thenaglecode .algorithms ;
2
2
3
- import com .thenaglecode .algorithms .util .propeties .AbstractConfigurationManager ;
3
+ import com .thenaglecode .core .util .propeties .AbstractConfigurationManager ;
4
4
5
5
/**
6
6
* Created with IntelliJ IDEA.
Original file line number Diff line number Diff line change 2
2
3
3
import com .thenaglecode .algorithms .Configuration ;
4
4
import com .thenaglecode .algorithms .ConfigurationManager ;
5
- import com .thenaglecode .algorithms .util .Named ;
5
+ import com .thenaglecode .core .util .Named ;
6
6
7
7
/**
8
8
* Created with IntelliJ IDEA.
Original file line number Diff line number Diff line change 1
1
package com .thenaglecode .core ;
2
2
3
- import com .thenaglecode .algorithms .util .ConfigurationItem ;
3
+ import com .thenaglecode .core .util .ConfigurationItem ;
4
4
5
5
/**
6
6
* Created with IntelliJ IDEA.
Original file line number Diff line number Diff line change 1
1
package com .thenaglecode .core ;
2
2
3
- import com .thenaglecode .algorithms .util .propeties .AbstractConfigurationManager ;
3
+ import com .thenaglecode .core .util .propeties .AbstractConfigurationManager ;
4
4
5
5
/**
6
6
* Created with IntelliJ IDEA.
Original file line number Diff line number Diff line change 1
1
package com .thenaglecode .core .ui ;
2
2
3
- import com .thenaglecode .algorithms .util .ConfigurationItem ;
3
+ import com .thenaglecode .core .util .ConfigurationItem ;
4
4
5
5
/**
6
6
* Created with IntelliJ IDEA.
Original file line number Diff line number Diff line change 1
1
package com .thenaglecode .core .ui ;
2
2
3
- import com .thenaglecode .algorithms .util .propeties .AbstractConfigurationManager ;
3
+ import com .thenaglecode .core .util .propeties .AbstractConfigurationManager ;
4
4
5
5
/**
6
6
* Created with IntelliJ IDEA.
Original file line number Diff line number Diff line change 1
- package com .thenaglecode .algorithms .util ;
1
+ package com .thenaglecode .core .util ;
2
2
3
3
/**
4
4
* Created with IntelliJ IDEA.
Original file line number Diff line number Diff line change 1
- package com .thenaglecode .algorithms .util ;
1
+ package com .thenaglecode .core .util ;
2
2
3
3
/**
4
4
* Created with IntelliJ IDEA.
Original file line number Diff line number Diff line change 1
- package com .thenaglecode .algorithms .util ;
1
+ package com .thenaglecode .core .util ;
2
2
3
3
import com .thenaglecode .algorithms .Configuration ;
4
4
import com .thenaglecode .algorithms .ConfigurationManager ;
5
- import com .thenaglecode .algorithms .util .propeties .PropertyBundleResource ;
5
+ import com .thenaglecode .core .util .propeties .PropertyBundleResource ;
6
6
7
7
import java .util .ResourceBundle ;
8
8
Original file line number Diff line number Diff line change 1
- package com .thenaglecode .algorithms .util .propeties ;
1
+ package com .thenaglecode .core .util .propeties ;
2
2
3
- import com .thenaglecode .algorithms .util .ConfigurationItem ;
3
+ import com .thenaglecode .core .util .ConfigurationItem ;
4
4
5
5
import java .util .PropertyResourceBundle ;
6
6
Original file line number Diff line number Diff line change 1
- package com .thenaglecode .algorithms .util .propeties ;
1
+ package com .thenaglecode .core .util .propeties ;
2
2
3
3
import javax .enterprise .util .Nonbinding ;
4
4
import javax .xml .ws .BindingType ;
Original file line number Diff line number Diff line change 1
- package com .thenaglecode .algorithms .util .propeties ;
1
+ package com .thenaglecode .core .util .propeties ;
2
2
3
3
import javax .enterprise .inject .Produces ;
4
4
import javax .enterprise .inject .spi .InjectionPoint ;
Original file line number Diff line number Diff line change 1
- package com .thenaglecode .algorithms .util .propeties ;
1
+ package com .thenaglecode .core .util .propeties ;
2
2
3
3
import javax .enterprise .inject .Produces ;
4
4
import javax .enterprise .inject .spi .InjectionPoint ;
Original file line number Diff line number Diff line change 1
- package com .thenaglecode .algorithms .util .propeties ;
1
+ package com .thenaglecode .core .util .propeties ;
2
2
3
3
import javax .enterprise .util .Nonbinding ;
4
4
import javax .xml .ws .BindingType ;
Original file line number Diff line number Diff line change 13
13
xmlns:h ="http://java.sun.com/jsf/html " xmlns:ui ="http://java.sun.com/jsf/facelets ">
14
14
15
15
< h:head >
16
- < title > Simple JSF Facelets page</ title >
16
+ < style type ="text/css ">
17
+ .header {
18
+ border : aqua thick;
19
+ }
20
+
21
+ .content {
22
+ border : aliceblue dotted;
23
+ }
24
+
25
+ .footer {
26
+ border : aquamarine outset;
27
+ }
28
+ </ style >
29
+ < ui:insert >
30
+ < ui:include src ="/common/head.xhtml " />
31
+ </ ui:insert >
17
32
</ h:head >
18
33
19
34
< h:body >
20
- < div class ="">
21
- < ui:include src ="/common/header.xhtml " />
35
+ < div class ="header ">
36
+ < ui:insert name ="header ">
37
+ < ui:include src ="/common/header.xhtml " />
38
+ </ ui:insert >
39
+ </ div >
40
+ < div class ="content ">
41
+ < ui:insert name ="content ">
42
+ < ui:include src ="/common/content.xhtml " />
43
+ </ ui:insert >
22
44
</ div >
23
45
< div >
46
+ < ui:insert name ="footer ">
47
+ < ui:include src ="/common/footer.xhtml " />
48
+ </ ui:insert >
24
49
</ div >
25
50
</ h:body >
26
51
Original file line number Diff line number Diff line change
1
+ < ?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+ Created by IntelliJ IDEA.
4
+ User: Jared Nagle
5
+ Date: 4/08/13
6
+ Time: 1:25 PM
7
+ -->
8
+ <!DOCTYPE html
9
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
10
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
11
+
12
+ < html xmlns ="http://www.w3.org/1999/xhtml "
13
+ xmlns:h ="http://java.sun.com/jsf/html " xmlns:ui ="http://java.sun.com/jsf/facelets ">
14
+
15
+ < h:head >
16
+ </ h:head >
17
+
18
+ < h:body >
19
+ < ui:composition >
20
+ Content goes here.
21
+ </ ui:composition >
22
+ </ h:body >
23
+
24
+ </ html >
Original file line number Diff line number Diff line change
1
+ < ?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+ Created by IntelliJ IDEA.
4
+ User: Jared Nagle
5
+ Date: 4/08/13
6
+ Time: 1:25 PM
7
+ -->
8
+ <!DOCTYPE html
9
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
10
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
11
+
12
+ < html xmlns ="http://www.w3.org/1999/xhtml "
13
+ xmlns:h ="http://java.sun.com/jsf/html " xmlns:ui ="http://java.sun.com/jsf/facelets ">
14
+
15
+ < h:head >
16
+ </ h:head >
17
+
18
+ < h:body >
19
+ < ui:composition >
20
+ < h1 > Footer goes here.</ h1 >
21
+ </ ui:composition >
22
+ </ h:body >
23
+
24
+ </ html >
Original file line number Diff line number Diff line change
1
+ < ?xml version="1.0" encoding="UTF-8"?>
2
+ <!--
3
+ Created by IntelliJ IDEA.
4
+ User: Jared Nagle
5
+ Date: 4/08/13
6
+ Time: 1:22 PM
7
+ -->
8
+ <!DOCTYPE html
9
+ PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
10
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
11
+
12
+ < html xmlns ="http://www.w3.org/1999/xhtml "
13
+ xmlns:h ="http://java.sun.com/jsf/html " xmlns:ui ="http://java.sun.com/jsf/facelets ">
14
+
15
+ < h:head >
16
+ < ui:composition >
17
+ < link rel ="stylesheet " href ="#{constants.BOOTSTRAP_CDN_CSS} "> </ link >
18
+ < script src ="#{constants.BOOTSTRAP_CDN_JAVASCRIPT} " language ="JavaScript " type ="text/javascript "> </ script >
19
+ </ ui:composition >
20
+ </ h:head >
21
+
22
+ < h:body >
23
+
24
+ </ h:body >
25
+
26
+ </ html >
Original file line number Diff line number Diff line change 13
13
xmlns:h ="http://java.sun.com/jsf/html " xmlns:ui ="http://java.sun.com/jsf/facelets ">
14
14
15
15
< h:head >
16
+ </ h:head >
17
+ < h:body >
16
18
< ui:composition >
17
- < link rel ="stylesheet " href ="#{constants.BOOTSTRAP_CDN_CSS} "> </ link >
18
- < script src ="#{constants.BOOTSTRAP_CDN_JAVASCRIPT} " language ="JavaScript " type ="text/javascript "> </ script >
19
+ < h1 > This is the Header</ h1 >
19
20
</ ui:composition >
20
- </ h:head >
21
+ </ h:body >
21
22
</ html >
You can’t perform that action at this time.
0 commit comments