-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (86 loc) · 4.41 KB
/
Copy pathindex.html
File metadata and controls
99 lines (86 loc) · 4.41 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<title>JamChat by JamoBox</title>
<link rel="stylesheet" href="stylesheets/styles.css">
<link rel="stylesheet" href="stylesheets/pygment_trac.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script src="javascripts/respond.js"></script>
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!--[if lt IE 8]>
<link rel="stylesheet" href="stylesheets/ie.css">
<![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
</head>
<body>
<div id="header">
<nav>
<li class="fork"><a href="https://github.com/JamoBox/">Follow JamoBox On GitHub</a></li>
<li class="projects"><a href="https://github.com/JamoBox/JamChat_Server">Server</a></li>
<li class="projects"><a href="https://github.com/JamoBox/JamChat_Client">Client</a></li>
<li class="projects"><a href="https://github.com/JamoBox/JamChat_Core">Core</a></li>
<li class="title">PROJECTS</li>
</nav>
</div><!-- end header -->
<div class="wrapper">
<section>
<div id="title">
<h1>JamChat</h1>
<p>The JamChat Project Page</p>
<hr>
<span class="credits left">Project maintained by <a href="https://github.com/JamoBox">JamoBox</a></span>
<span class="credits right">Hosted on GitHub Pages</span>
</div>
<h1>
<a name="jamchat" class="anchor" href="#jamchat"><span class="octicon octicon-link"></span></a>What is JamChat?</h1>
<p>JamChat is a simple client-server communication service written in Java. The project is split into 3 separate parts.
</p><p></p>
The core client is a library for a user front-end to utilize. This contains the core methods for the program and lets
the GUI or Terminal client front-end handle presentation and other aspects. This brings us to the second part of the
project; the user interface. The user interface should use the client core library for its main functions, while handling
what it does with the information from the core itself.
<p></p>
The final part of the project is the server. As the server requires no user interface, the core is not a library and
should be run by itself. The server should manage a list of known clients and handle connecting them and maintaining the
connection between them.
<br><br>
This project is designed purely as a proof of concept, and is heavily in-progress.
<br><br>
<h1>
<a name="javadocs" class="anchor" href="#javadocs"><span class="octicon octicon-link"></span></a>JavaDocs</h1>
<ul>
<li><a href="/JamChat/javadoc/server/server.html">JamChat Server</a></li>
<li><a href="/JamChat/javadoc/core/core.html">JamChat Core</a></li>
</ul>
<h1>
<a name="client_mockups" class="anchor" href="#client_mockups"><span class ="octicon octicon-link"></span></a>Client Mockups</h1>
<p>These client mockups may be subject to sudden drastic change at any time. These are only to show a <b>very</b> rough idea
of what I have in mind for the client front-end.</p>
<p><img src="http://i.imgur.com/JJz7gDQ.png" alt="mockup"></p>
<h1>
<a name="diagrams" class="anchor" href="#diagrams"><span class="octicon octicon-link"></span></a>Diagrams</h1>
<h4>
<a name="project-overview" class="anchor" href="#project-overview"><span class="octicon octicon-link"></span></a>Project Overview</h4>
<p><img src="http://i.imgur.com/8YtRvIi.png" alt="project_overview"></p><p></p>
<h4>
<a name="starting-a-chat" class="anchor" href="#starting-a-chat"><span class="octicon octicon-link"></span></a>Starting a chat</h4>
<p><img src="http://i.imgur.com/znT30Bq.png" alt="chat_start"></p>
</section>
</div>
<!--[if !IE]><script>fixScale(document);</script><![endif]-->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-42872685-1");
pageTracker._trackPageview();
} catch(err) {}
</script>
</body>
</html>