<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.ubc.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=BenjaminBertka</id>
	<title>UBC Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.ubc.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=BenjaminBertka"/>
	<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/Special:Contributions/BenjaminBertka"/>
	<updated>2026-06-04T22:02:05Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.8</generator>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/Database&amp;diff=102995</id>
		<title>Course:CICS515/Database</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/Database&amp;diff=102995"/>
		<updated>2011-07-13T03:47:57Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Installing the Database and Configuring SQL==&lt;br /&gt;
&lt;br /&gt;
In these steps, replace 8230 with a random number between 8001 and 8999. Also be sure to replace the pathname:&lt;br /&gt;
    /ubc/icics/mss/cics515/2011/ &lt;br /&gt;
with the pathname of your home directory.  You can get the home path by using the &#039;pwd&#039; command, by executing:&lt;br /&gt;
    cd ~&lt;br /&gt;
    pwd&lt;br /&gt;
&lt;br /&gt;
Now to set up sql environment, make sure you have directory called mysql in your top home directory.  If you already do, you need to clear out some of the old stuff, or risk errors with the install script.  I have tested with my old 505 junk and had issues so I wiped it clean and had no issues.  Create the directory if it doesn&#039;t exist:&lt;br /&gt;
&lt;br /&gt;
    mkdir mysql &lt;br /&gt;
&lt;br /&gt;
Change directories, and be sure to stay in this directory for a while:&lt;br /&gt;
    cd mysql&lt;br /&gt;
&lt;br /&gt;
Run the script:&lt;br /&gt;
    mysql_install_db&lt;br /&gt;
&lt;br /&gt;
Open the EMACS editor, or your favorite editor such as Nano, or Vi.  The important part hew is you make a file called: &amp;quot;.my.cnf&amp;quot;&lt;br /&gt;
&lt;br /&gt;
    emacs -nw ~/.my.cnf&lt;br /&gt;
&lt;br /&gt;
Enter the following into your text editor, be sure to use your own port and home directory as described above.&lt;br /&gt;
    [mysql] &lt;br /&gt;
    port=8230&lt;br /&gt;
    socket=/ubc/icics/mss/cics515/2011/mysql/mysql.sock&lt;br /&gt;
    [mysqld]&lt;br /&gt;
    port=8230&lt;br /&gt;
    socket=/ubc/icics/mss/cics515/2011/mysql/mysql.sock&lt;br /&gt;
    datadir=/ubc/icics/mss/cics515/2011/mysql&lt;br /&gt;
    [client]&lt;br /&gt;
    port=8230&lt;br /&gt;
    socket=/ubc/icics/mss/cics515/2011/mysql/mysql.sock&lt;br /&gt;
&lt;br /&gt;
Close your editor, and run the mysql demon:&lt;br /&gt;
    mysqld &amp;amp;&lt;br /&gt;
&lt;br /&gt;
Run mysqladmin to create a user:&lt;br /&gt;
    mysqladmin -u root password &#039;password&#039;&lt;br /&gt;
&lt;br /&gt;
Loginto mysql as that user:&lt;br /&gt;
    mysql -uroot -ppassword&lt;br /&gt;
&lt;br /&gt;
At this point the mysql prompt will appear and you can input the database described below.&lt;br /&gt;
&lt;br /&gt;
    Happy scripting!&lt;br /&gt;
&lt;br /&gt;
To test this works, insert an author&lt;br /&gt;
&lt;br /&gt;
    INSERT INTO `discussion`.`author`(`authorName` ,`email` ,`password` ,`rating`)&lt;br /&gt;
    VALUES(&#039;Ben&#039;, &#039;bbertka@mss.icics.ubc.ca&#039;, &#039;password&#039;, &#039;0&#039;);&lt;br /&gt;
&lt;br /&gt;
Show the authors, notice the auto increment if the authorID works too:&lt;br /&gt;
    select * from author;&lt;br /&gt;
&lt;br /&gt;
Now, create a test PHP script to show the data via web interface:&lt;br /&gt;
&lt;br /&gt;
    cd ~&lt;br /&gt;
    mkdir public_html&lt;br /&gt;
    chmod 755 public_html&lt;br /&gt;
    cd public html&lt;br /&gt;
    touch discussionTest.php&lt;br /&gt;
    chmod 755 discussionTest.php&lt;br /&gt;
    nano discussionTest.php&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Database Latest Deliverable==&lt;br /&gt;
Discussion Forum Database Schema&lt;br /&gt;
&lt;br /&gt;
 create database Discussion; &lt;br /&gt;
&lt;br /&gt;
 use database Discussion;&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE `Discussion`.`Author` ( &lt;br /&gt;
 `authorID` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,&lt;br /&gt;
 `authorName` VARCHAR( 25 ) NOT NULL ,&lt;br /&gt;
 `email` VARCHAR( 25 ) NOT NULL ,&lt;br /&gt;
 `password` VARCHAR( 50 ) NOT NULL ,&lt;br /&gt;
 `rating` INT NOT NULL DEFAULT &#039;0&#039;,&lt;br /&gt;
 UNIQUE ( `email` ));&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE `Discussion`.`topic` (&lt;br /&gt;
 `topicID` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,&lt;br /&gt;
 `title` VARCHAR( 50 ) NOT NULL ,&lt;br /&gt;
 `content` TEXT NOT NULL ,&lt;br /&gt;
 `rating` INT NOT NULL DEFAULT &#039;0&#039;,&lt;br /&gt;
 `authorID` INT NOT NULL ,&lt;br /&gt;
 `date_created` DATE NOT NULL ,&lt;br /&gt;
 `date_edited` DATE NOT NULL,&lt;br /&gt;
  FOREIGN KEY (authorID) REFERENCES author(authorID) );&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE `Discussion`.`post`(&lt;br /&gt;
 `postID` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,&lt;br /&gt;
 `content` VARCHAR( 1000 ) NOT NULL ,&lt;br /&gt;
 `rating` INT NOT NULL ,&lt;br /&gt;
 `authorID` INT NOT NULL ,&lt;br /&gt;
 `topicID` INT NOT NULL ,&lt;br /&gt;
 `date_posted` DATE NOT NULL,&lt;br /&gt;
 FOREIGN KEY (authorID) REFERENCES author(authorID),&lt;br /&gt;
 FOREIGN KEY (topicID) REFERENCES topic(topicID) ); &lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE `Discussion`.`keywords`(&lt;br /&gt;
 `keyword` VARCHAR( 25 ) NOT NULL , &lt;br /&gt;
 `topicID` INT NOT NULL ,&lt;br /&gt;
 PRIMARY KEY ( `keyword` , `topicID` ),&lt;br /&gt;
 FOREIGN KEY (topicID) REFERENCES topic(topicID) );&lt;br /&gt;
&lt;br /&gt;
==Ideas==&lt;br /&gt;
ER diagram&lt;br /&gt;
[[File:DB.jpeg]]&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
KEYWORD table, code level business logic implementation suggestions by the team;&lt;br /&gt;
&lt;br /&gt;
follow the below given links to learn &lt;br /&gt;
&lt;br /&gt;
[http://stackoverflow.com/questions Keyword Search]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[http://www.javaranch.com/ Category keyword search]&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/Database&amp;diff=102994</id>
		<title>Course:CICS515/Database</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/Database&amp;diff=102994"/>
		<updated>2011-07-13T00:44:42Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: /* Database Latest Deliverable */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Database Latest Deliverable==&lt;br /&gt;
Discussion Forum Database Schema&lt;br /&gt;
&lt;br /&gt;
 create database Discussion; &lt;br /&gt;
&lt;br /&gt;
 use database Discussion;&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE `Discussion`.`Author` ( &lt;br /&gt;
 `authorID` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,&lt;br /&gt;
 `authorName` VARCHAR( 25 ) NOT NULL ,&lt;br /&gt;
 `email` VARCHAR( 25 ) NOT NULL ,&lt;br /&gt;
 `password` VARCHAR( 50 ) NOT NULL ,&lt;br /&gt;
 `rating` INT NOT NULL DEFAULT &#039;0&#039;,&lt;br /&gt;
 UNIQUE ( `email` ));&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE `Discussion`.`topic` (&lt;br /&gt;
 `topicID` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,&lt;br /&gt;
 `title` VARCHAR( 50 ) NOT NULL ,&lt;br /&gt;
 `content` TEXT NOT NULL ,&lt;br /&gt;
 `rating` INT NOT NULL DEFAULT &#039;0&#039;,&lt;br /&gt;
 `authorID` INT NOT NULL ,&lt;br /&gt;
 `date_created` DATE NOT NULL ,&lt;br /&gt;
 `date_edited` DATE NOT NULL,&lt;br /&gt;
  FOREIGN KEY (authorID) REFERENCES author(authorID) );&lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE `Discussion`.`post`(&lt;br /&gt;
 `postID` INT NOT NULL AUTO_INCREMENT PRIMARY KEY ,&lt;br /&gt;
 `content` VARCHAR( 1000 ) NOT NULL ,&lt;br /&gt;
 `rating` INT NOT NULL ,&lt;br /&gt;
 `authorID` INT NOT NULL ,&lt;br /&gt;
 `topicID` INT NOT NULL ,&lt;br /&gt;
 `date_posted` DATE NOT NULL,&lt;br /&gt;
 FOREIGN KEY (authorID) REFERENCES author(authorID),&lt;br /&gt;
 FOREIGN KEY (topicID) REFERENCES topic(topicID) ); &lt;br /&gt;
&lt;br /&gt;
 CREATE TABLE `Discussion`.`keywords`(&lt;br /&gt;
 `keyword` VARCHAR( 25 ) NOT NULL , &lt;br /&gt;
 `topicID` INT NOT NULL ,&lt;br /&gt;
 PRIMARY KEY ( `keyword` , `topicID` ),&lt;br /&gt;
 FOREIGN KEY (topicID) REFERENCES topic(topicID) );&lt;br /&gt;
&lt;br /&gt;
==Ideas==&lt;br /&gt;
ER diagram&lt;br /&gt;
[[File:DB.jpeg]]&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
KEYWORD table, code level business logic implementation suggestions by the team;&lt;br /&gt;
&lt;br /&gt;
follow the below given links to learn &lt;br /&gt;
&lt;br /&gt;
[http://stackoverflow.com/questions Keyword Search]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[http://www.javaranch.com/ Category keyword search]&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102521</id>
		<title>Course:CICS515/2011 Project</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102521"/>
		<updated>2011-07-07T20:35:21Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the home of CICS515-2011 Project!&lt;br /&gt;
&lt;br /&gt;
As discussed in the class, our project will be a discussion forum.&lt;br /&gt;
&lt;br /&gt;
Links to subpages:&lt;br /&gt;
&lt;br /&gt;
* [[Course:CICS515/Teams|Member Roles]]&lt;br /&gt;
* [[Course:CICS515/Database|Database Page]]&lt;br /&gt;
* [[Course:CICS515/UML|UML Page]]&lt;br /&gt;
* [[Course:CICS515/Art|Art Page]]&lt;br /&gt;
&lt;br /&gt;
==Minutes 07-Jul-2011==&lt;br /&gt;
We discussed overall systems, and first steps towards designing the system.  The following was agreed upon by the groups:&lt;br /&gt;
* UML Team delivers box-arrow flow diagrams of system for Friday 08-Jul-2011 0600 hours (6am)&lt;br /&gt;
* Database team discusses and designs a system, due Monday 01-Jul-2011 0600 hours (6am)&lt;br /&gt;
&lt;br /&gt;
Links are provided for each team above for the purpose of updating the Wiki with deliverables. Teams are encouraged to edit the respective pages with new and any information they see fit.&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/Art&amp;diff=102519</id>
		<title>Course:CICS515/Art</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/Art&amp;diff=102519"/>
		<updated>2011-07-07T20:27:37Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: Created page with &amp;quot;==ART Latest Deliverable==  ==Ideas==  ==Misc==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==ART Latest Deliverable==&lt;br /&gt;
&lt;br /&gt;
==Ideas==&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/UML&amp;diff=102518</id>
		<title>Course:CICS515/UML</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/UML&amp;diff=102518"/>
		<updated>2011-07-07T20:27:23Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: Created page with &amp;quot;==UML Latest Deliverable==  ==Ideas==  ==Misc==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==UML Latest Deliverable==&lt;br /&gt;
&lt;br /&gt;
==Ideas==&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/Database&amp;diff=102517</id>
		<title>Course:CICS515/Database</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/Database&amp;diff=102517"/>
		<updated>2011-07-07T20:27:00Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: Created page with &amp;quot;==Database Latest Deliverable==  ==Ideas==  ==Misc==&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Database Latest Deliverable==&lt;br /&gt;
&lt;br /&gt;
==Ideas==&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102516</id>
		<title>Course:CICS515/2011 Project</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102516"/>
		<updated>2011-07-07T20:25:23Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the home of CICS515-2011 Project!&lt;br /&gt;
&lt;br /&gt;
As discussed in the class, our project will be a discussion forum.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Links to subpages:&lt;br /&gt;
&lt;br /&gt;
* [[Course:CICS515/Teams|Member Roles]]&lt;br /&gt;
* [[Course:CICS515/Database|Database Page]]&lt;br /&gt;
* [[Course:CICS515/UML|UML Page]]&lt;br /&gt;
* [[Course:CICS515/Art|Art Page]]&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515&amp;diff=102515</id>
		<title>Course:CICS515</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515&amp;diff=102515"/>
		<updated>2011-07-07T20:20:56Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: /* Related Subpages */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Computer Networks and Internet Programming Part 1=&lt;br /&gt;
*[http://www.icics.ubc.ca/~cics515/ Main Website]&lt;br /&gt;
&lt;br /&gt;
=Computer Networks and Internet Programming Part 2=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dpl&amp;gt; &lt;br /&gt;
titlematch={{PAGENAME}}/%  &lt;br /&gt;
namespace={{NAMESPACE}}  &lt;br /&gt;
replaceintitle=$CICS515/$,&lt;br /&gt;
shownamespace=false  &lt;br /&gt;
&amp;lt;/dpl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:CICS]]&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515&amp;diff=102514</id>
		<title>Course:CICS515</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515&amp;diff=102514"/>
		<updated>2011-07-07T20:20:41Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: /* Computer Networks and Internet Programming */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=Computer Networks and Internet Programming Part 1=&lt;br /&gt;
*[http://www.icics.ubc.ca/~cics515/ Main Website]&lt;br /&gt;
&lt;br /&gt;
==Related Subpages==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;dpl&amp;gt; &lt;br /&gt;
titlematch={{PAGENAME}}/%  &lt;br /&gt;
namespace={{NAMESPACE}}  &lt;br /&gt;
replaceintitle=$CICS515/$,&lt;br /&gt;
shownamespace=false  &lt;br /&gt;
&amp;lt;/dpl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:CICS]]&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/Teams&amp;diff=102513</id>
		<title>Course:CICS515/Teams</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/Teams&amp;diff=102513"/>
		<updated>2011-07-07T20:19:44Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: Created page with &amp;quot;==Project Groups Assignments== {| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align:center&amp;quot; ! Team !! Name !! Email |- |ART ||Jianzhang(Eric) Miao||mjz@mss.icics.ubc.ca |- |ART||Ying Xu||yingx...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Project Groups Assignments==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
! Team !! Name !! Email&lt;br /&gt;
|-&lt;br /&gt;
|ART ||Jianzhang(Eric) Miao||mjz@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART||Ying Xu||yingxu@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Matthew Robertson || matt17@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Eduardo Ayala || edaype@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART ||	tongxin feng ||	tsmyth@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART ||	Justin Hume || jdfhume@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|ART|| Arshdeep Saini || saini07@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|ART|| Jingyun Xiang (James) || jamesxjy@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Abhishek Baranwal || burnee@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
| Database || Xubiao Lei || xblei23@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Zhang Wei || wza1985@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Shaowei Wen || wei3426@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Asad Rehman || arehman@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Amin Ali || aakber@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Dianbin Jin || dianbin@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Spencer Atkinson || satkins@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Charanjit Dhaliwal || cjsingh@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Navjot Gill || gnavjot@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Rajeeb Saha || rajeeb05@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Gay Charathsandran || cgaya@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Zhao Yang Chen || chenzy@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Ben Bertka || bbertka@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Pavel Islam || pavislam@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Caleb Ho || calebklh@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Managment || Srikanth Ramu || sramu@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Parvez Islam || parvezi@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Yu Liu || yuliu98@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Arun Kumar Gopi || arung@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Parth Pandya || pandya@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Anup Mathew || anpmat@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Tajinder Singh || singhtaj@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Vidur Mahindra || vmm@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102512</id>
		<title>Course:CICS515/2011 Project</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102512"/>
		<updated>2011-07-07T20:19:30Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: /* Project Groups Assignments */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the home of CICS515-2011 Project!&lt;br /&gt;
&lt;br /&gt;
As discussed in the class, our project will be a discussion forum.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Links to subpages:&lt;br /&gt;
&lt;br /&gt;
* [[Course:CICS515/Teams|Team Pages]]&lt;br /&gt;
&lt;br /&gt;
Here are the groups and emails.&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102511</id>
		<title>Course:CICS515/2011 Project</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102511"/>
		<updated>2011-07-07T20:19:15Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the home of CICS515-2011 Project!&lt;br /&gt;
&lt;br /&gt;
As discussed in the class, our project will be a discussion forum.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Links to subpages:&lt;br /&gt;
&lt;br /&gt;
* [[Course:CICS515/Teams|Team Pages]]&lt;br /&gt;
&lt;br /&gt;
Here are the groups and emails.&lt;br /&gt;
&lt;br /&gt;
==Project Groups Assignments==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
! Team !! Name !! Email&lt;br /&gt;
|-&lt;br /&gt;
|ART ||Jianzhang(Eric) Miao||mjz@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART||Ying Xu||yingxu@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Matthew Robertson || matt17@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Eduardo Ayala || edaype@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART ||	tongxin feng ||	tsmyth@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART ||	Justin Hume || jdfhume@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|ART|| Arshdeep Saini || saini07@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|ART|| Jingyun Xiang (James) || jamesxjy@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Abhishek Baranwal || burnee@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
| Database || Xubiao Lei || xblei23@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Zhang Wei || wza1985@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Shaowei Wen || wei3426@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Asad Rehman || arehman@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Amin Ali || aakber@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Dianbin Jin || dianbin@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Spencer Atkinson || satkins@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Charanjit Dhaliwal || cjsingh@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Navjot Gill || gnavjot@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Rajeeb Saha || rajeeb05@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Gay Charathsandran || cgaya@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Zhao Yang Chen || chenzy@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Ben Bertka || bbertka@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Pavel Islam || pavislam@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Caleb Ho || calebklh@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Managment || Srikanth Ramu || sramu@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Parvez Islam || parvezi@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Yu Liu || yuliu98@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Arun Kumar Gopi || arung@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Parth Pandya || pandya@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Anup Mathew || anpmat@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Tajinder Singh || singhtaj@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Vidur Mahindra || vmm@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102509</id>
		<title>Course:CICS515/2011 Project</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102509"/>
		<updated>2011-07-07T20:12:39Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the home of CICS515-2011 Project!&lt;br /&gt;
&lt;br /&gt;
As discussed in the class, our project will be a discussion forum.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here are the groups and emails.&lt;br /&gt;
&lt;br /&gt;
==Project Groups Assignments==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
! Team !! Name !! Email&lt;br /&gt;
|-&lt;br /&gt;
|ART ||Jianzhang(Eric) Miao||mjz@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART||Ying Xu||yingxu@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Matthew Robertson || matt17@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Eduardo Ayala || edaype@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART ||	tongxin feng ||	tsmyth@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART ||	Justin Hume || jdfhume@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|ART|| Arshdeep Saini || saini07@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|ART|| Jingyun Xiang (James) || jamesxjy@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Abhishek Baranwal || burnee@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
| Database || Xubiao Lei || xblei23@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Zhang Wei || wza1985@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Shaowei Wen || wei3426@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Asad Rehman || arehman@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Amin Ali || aakber@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Dianbin Jin || dianbin@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Spencer Atkinson || satkins@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Charanjit Dhaliwal || cjsingh@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Navjot Gill || gnavjot@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Rajeeb Saha || rajeeb05@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Gay Charathsandran || cgaya@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Zhao Yang Chen || chenzy@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Ben Bertka || bbertka@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Pavel Islam || pavislam@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Caleb Ho || calebklh@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Managment || Srikanth Ramu || sramu@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Parvez Islam || parvezi@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Yu Liu || yuliu98@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Arun Kumar Gopi || arung@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Parth Pandya || pandya@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Anup Mathew || anpmat@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Tajinder Singh || singhtaj@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Vidur Mahindra || vmm@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102508</id>
		<title>Course:CICS515/2011 Project</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102508"/>
		<updated>2011-07-07T20:12:04Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: Replaced content with &amp;quot;Welcome to the home of CICS515-2011 Project!

As discussed in the class, our project will be a discussion forum.&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the home of CICS515-2011 Project!&lt;br /&gt;
&lt;br /&gt;
As discussed in the class, our project will be a discussion forum.&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102506</id>
		<title>Course:CICS515/2011 Project</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102506"/>
		<updated>2011-07-07T20:08:48Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: /* Project Groups and Contact Info */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the home of CICS515-2011 Project!&lt;br /&gt;
&lt;br /&gt;
As discussed in the class, our project will be a discussion forum. &lt;br /&gt;
&lt;br /&gt;
Here are the groups and emails.&lt;br /&gt;
&lt;br /&gt;
==Project Groups Assignments==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
! Team !! Name !! Email&lt;br /&gt;
|-&lt;br /&gt;
|ART ||Jianzhang(Eric) Miao||mjz@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART||Ying Xu||yingxu@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Matthew Robertson || matt17@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Eduardo Ayala || edaype@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART ||	tongxin feng ||	tsmyth@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART ||	Justin Hume || jdfhume@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|ART|| Arshdeep Saini || saini07@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|ART|| Jingyun Xiang (James) || jamesxjy@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Abhishek Baranwal || burnee@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
| Database || Xubiao Lei || xblei23@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Zhang Wei || wza1985@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Shaowei Wen || wei3426@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Asad Rehman || arehman@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Amin Ali || aakber@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Dianbin Jin || dianbin@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Spencer Atkinson || satkins@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Charanjit Dhaliwal || cjsingh@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Navjot Gill || gnavjot@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Rajeeb Saha || rajeeb05@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Gay Charathsandran || cgaya@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Zhao Yang Chen || chenzy@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Ben Bertka || bbertka@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Pavel Islam || pavislam@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Caleb Ho || calebklh@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Managment || Srikanth Ramu || sramu@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Parvez Islam || parvezi@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Yu Liu || yuliu98@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Arun Kumar Gopi || arung@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Parth Pandya || pandya@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Anup Mathew || anpmat@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Tajinder Singh || singhtaj@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Vidur Mahindra || vmm@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102503</id>
		<title>Course:CICS515/2011 Project</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102503"/>
		<updated>2011-07-07T20:05:49Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: /* Project Groups and Contact Info */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the home of CICS515-2011 Project!&lt;br /&gt;
&lt;br /&gt;
As discussed in the class, our project will be a discussion forum. &lt;br /&gt;
&lt;br /&gt;
Here are the groups and emails.&lt;br /&gt;
&lt;br /&gt;
==Project Groups and Contact Info==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
! Team !! Name !! Email&lt;br /&gt;
|-&lt;br /&gt;
|ART ||Jianzhang(Eric) Miao||mjz@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART||Ying Xu||yingxu@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Matthew Robertson || matt17@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Eduardo Ayala || edaype@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART ||	tongxin feng ||	tsmyth@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART ||	Justin Hume || jdfhume@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|ART|| Arshdeep Saini || saini07@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|ART|| Jingyun Xiang (James) || jamesxjy@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Abhishek Baranwal || burnee@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
| Database || Xubiao Lei || xblei23@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Zhang Wei || wza1985@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Shaowei Wen || wei3426@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Asad Rehman || arehman@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Amin Ali || aakber@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Dianbin Jin || dianbin@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Spencer Atkinson || satkins@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Charanjit Dhaliwal || cjsingh@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Navjot Gill || gnavjot@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Rajeeb Saha || rajeeb05@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Gay Charathsandran || cgaya@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Zhao Yang Chen || chenzy@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Ben Bertka || bbertka@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Pavel Islam || pavislam@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Caleb Ho || calebklh@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|Managment || Srikanth Ramu || sramu@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Parvez Islam || parvezi@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Yu Liu || yuliu98@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Arun Kumar Gopi || arung@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Parth Pandya || pandya@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Anup Mathew || anpmat@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Tajinder Singh || singhtaj@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Vidur Mahindra || vmm@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102245</id>
		<title>Course:CICS515/2011 Project</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102245"/>
		<updated>2011-07-06T04:02:22Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: /* Project Groups and Contact Info */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the home of CICS515-2011 Project!&lt;br /&gt;
&lt;br /&gt;
As discussed in the class, our project will be a discussion forum. &lt;br /&gt;
&lt;br /&gt;
Here are the groups and emails.&lt;br /&gt;
&lt;br /&gt;
==Project Groups and Contact Info==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
! Team !! Name !! Email&lt;br /&gt;
|-&lt;br /&gt;
|ART ||Jianzhang(Eric) Miao||mjz@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART||Ying Xu||yingxu@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Matthew Robertson || matt17@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Eduardo Ayala || edaype@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART ||	tongxin feng ||	tsmyth@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART ||	Justin Hume || jdfhume@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|ART || Abhishek Baranwal || burnee@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
| Database || Xubiao Lei || xblei23@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Zhang Wei || wza1985@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Shaowei Wen || wei3426@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Asad Rehman || arehman@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Amin Ali || aakber@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Dianbin Jin	 || dianbin@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Spencer Atkinson || satkins@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Charanjit Dhaliwal || cjsingh@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Navjot Gill || gnavjot@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Rajeeb Saha || rajeeb05@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Gay Charathsandran || cgaya@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Zhao Yang Chen || chenzy@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Ben Bertka || bbertka@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Pavel Islam || pavislam@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Caleb Ho || calebklh@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Jingyun Xiang (James) || jamesxjy@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Srikanth Ramu || sramu@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Arshdeep Saini || saini07@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Parvez Islam || parvezi@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Yu Liu || yuliu98@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Arun Kumar Gopi || arung@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Parth Pandya || pandya@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Anup Mathew || anpmat@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Tajinder Singh || singhtaj@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Vidur Mahindra || vmm@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102134</id>
		<title>Course:CICS515/2011 Project</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102134"/>
		<updated>2011-07-05T21:42:31Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the home of CICS515-2011 Project!&lt;br /&gt;
&lt;br /&gt;
As discussed in the class, our project will be a discussion forum. &lt;br /&gt;
&lt;br /&gt;
Here are the groups and emails.&lt;br /&gt;
&lt;br /&gt;
==Project Groups and Contact Info==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
! Team !! Name !! Email&lt;br /&gt;
|-&lt;br /&gt;
|ART ||Jianzhang(Eric) Miao||mjz@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART||Ying Xu||yingxu@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Matthew Robertson || matt17@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Eduardo Ayala || edaype@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART ||	tongxin feng ||	tsmyth@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART ||	Justin Hume || jdfhume@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
| Database || Xubiao Lei || xblei23@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Zhang Wei || wza1985@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Shaowei Wen || wei3426@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Asad Rehman || arehman@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Amin Ali || aakber@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Dianbin Jin	 || dianbin@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Spencer Atkinson || satkins@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Charanjit Dhaliwal || cjsingh@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Navjot Gill || gnavjot@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Rajeeb Saha || rajeeb05@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Gay Charathsandran || cgaya@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Zhao Yang Chen || chenzy@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Ben Bertka || bbertka@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Pavel Islam || pavislam@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Caleb Ho || calebklh@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Jingyun Xiang (James) || jamesxjy@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Srikanth Ramu || sramu@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Arshdeep Saini || saini07@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Parvez Islam || parvezi@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Yu Liu || yuliu98@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Arun Kumar Gopi || arung@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Parth Pandya || pandya@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Anup Mathew || anpmat@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Tajinder Singh || singhtaj@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Vidur Mahindra || vmm@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Abhishek Baranwal || burnee@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Thread:Talk:CICS515-2011_Project/Project_Groups_and_Members&amp;diff=102132</id>
		<title>Thread:Talk:CICS515-2011 Project/Project Groups and Members</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Thread:Talk:CICS515-2011_Project/Project_Groups_and_Members&amp;diff=102132"/>
		<updated>2011-07-05T21:32:34Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;text-align:center&amp;quot;&lt;br /&gt;
! Team !! Name !! Email&lt;br /&gt;
|-&lt;br /&gt;
|ART ||Jianzhang(Eric) Miao||mjz@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART||Ying Xu||yingxu@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Matthew Robertson || matt17@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART || Eduardo Ayala || edaype@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART ||	tongxin feng ||	tsmyth@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|ART ||	Justin Hume || jdfhume@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
| Database || Xubiao Lei || xblei23@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Zhang Wei || wza1985@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Shaowei Wen || wei3426@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Asad Rehman || arehman@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Amin Ali || aakber@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Dianbin Jin	 || dianbin@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Spencer Atkinson || satkins@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Charanjit Dhaliwal || cjsingh@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Navjot Gill || gnavjot@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Rajeeb Saha || rajeeb05@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Gay Charathsandran || cgaya@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Database || Zhao Yang Chen || chenzy@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Ben Bertka || bbertka@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Pavel Islam || pavislam@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Caleb Ho || calebklh@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Jingyun Xiang (James) || jamesxjy@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|Managment || Srikanth Ramu || sramu@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Arshdeep Saini || saini07@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Parvez Islam || parvezi@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Yu Liu || yuliu98@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Arun Kumar Gopi || arung@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Parth Pandya || pandya@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Anup Mathew || anpmat@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Tajinder Singh || singhtaj@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Vidur Mahindra || vmm@mss.icics.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|UML || Abhishek Baranwal || burnee@interchange.ubc.ca&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Thread:Talk:CICS515-2011_Project/Project_Groups_and_Members&amp;diff=102126</id>
		<title>Thread:Talk:CICS515-2011 Project/Project Groups and Members</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Thread:Talk:CICS515-2011_Project/Project_Groups_and_Members&amp;diff=102126"/>
		<updated>2011-07-05T21:13:27Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;GROUP           Name                    E-Mail&#039;&#039;&#039;&lt;br /&gt;
ART		Jianzhang(Eric) Miao	mjz@mss.icics.ubc.ca&lt;br /&gt;
ART		Ying Xu			yingxu@interchange.ubc.ca&lt;br /&gt;
ART		Matthew Robertson	matt17@mss.icics.ubc.ca&lt;br /&gt;
ART		Eduardo Ayala		edaype@mss.icics.ubc.ca&lt;br /&gt;
ART		tongxin feng		tsmyth@mss.icics.ubc.ca&lt;br /&gt;
ART		Justin Hume		jdfhume@mss.icics.ubc.ca&lt;br /&gt;
Database	Xubiao Lei		xblei23@mss.icics.ubc.ca&lt;br /&gt;
Database	Zhang Wei		wza1985@interchange.ubc.ca&lt;br /&gt;
Database	Shaowei Wen		wei3426@mss.icics.ubc.ca&lt;br /&gt;
Database	Asad Rehman		arehman@mss.icics.ubc.ca&lt;br /&gt;
Database	Amin Ali 		aakber@mss.icics.ubc.ca&lt;br /&gt;
Database	Dianbin Jin		dianbin@mss.icics.ubc.ca&lt;br /&gt;
Database	Spencer Atkinson	satkins@mss.icics.ubc.ca&lt;br /&gt;
Database	Charanjit Dhaliwal	cjsingh@mss.icics.ubc.ca&lt;br /&gt;
Database	Navjot Gill		gnavjot@mss.icics.ubc.ca&lt;br /&gt;
Database	Rajeeb Saha		rajeeb05@mss.icics.ubc.ca&lt;br /&gt;
Database	Gay Charathsandran	cgaya@interchange.ubc.ca&lt;br /&gt;
Database	Zhao Yang Chen		chenzy@mss.icics.ubc.ca&lt;br /&gt;
Managment	Ben Bertka		bbertka@mss.icics.ubc.ca&lt;br /&gt;
Managment	Pavel Islam		pavislam@mss.icics.ubc.ca&lt;br /&gt;
Managment	Caleb Ho		calebklh@interchange.ubc.ca&lt;br /&gt;
Managment	Jingyun Xiang (James)	jamesxjy@mss.icics.ubc.ca&lt;br /&gt;
Managment	Srikanth Ramu		sramu@mss.icics.ubc.ca&lt;br /&gt;
UML		Arshdeep Saini		saini07@interchange.ubc.ca&lt;br /&gt;
UML		Parvez Islam		parvezi@mss.icics.ubc.ca&lt;br /&gt;
UML		Yu Liu			yuliu98@mss.icics.ubc.ca&lt;br /&gt;
UML		Arun Kumar Gopi		arung@mss.icics.ubc.ca&lt;br /&gt;
UML		Parth Pandya		pandya@mss.icics.ubc.ca&lt;br /&gt;
UML		Anup Mathew		anpmat@interchange.ubc.ca&lt;br /&gt;
UML		Tajinder Singh		singhtaj@mss.icics.ubc.ca&lt;br /&gt;
UML		Vidur Mahindra		vmm@mss.icics.ubc.ca&lt;br /&gt;
UML		Abhishek Baranwal	burnee@interchange.ubc.ca&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Thread:Talk:CICS515-2011_Project/Project_Groups_and_Members/reply&amp;diff=102124</id>
		<title>Thread:Talk:CICS515-2011 Project/Project Groups and Members/reply</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Thread:Talk:CICS515-2011_Project/Project_Groups_and_Members/reply&amp;diff=102124"/>
		<updated>2011-07-05T20:45:28Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: Blanked the page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Thread:Talk:CICS515-2011_Project/Project_Groups_and_Members/reply&amp;diff=102123</id>
		<title>Thread:Talk:CICS515-2011 Project/Project Groups and Members/reply</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Thread:Talk:CICS515-2011_Project/Project_Groups_and_Members/reply&amp;diff=102123"/>
		<updated>2011-07-05T20:44:56Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: Reply to Project Groups and Members&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;test reply&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course_talk:CICS515/2011_Project&amp;diff=102122</id>
		<title>Course talk:CICS515/2011 Project</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course_talk:CICS515/2011_Project&amp;diff=102122"/>
		<updated>2011-07-05T20:43:35Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: Talk page autocreated when first thread was posted.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Thread:Talk:CICS515-2011_Project/Project_Groups_and_Members&amp;diff=102121</id>
		<title>Thread:Talk:CICS515-2011 Project/Project Groups and Members</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Thread:Talk:CICS515-2011_Project/Project_Groups_and_Members&amp;diff=102121"/>
		<updated>2011-07-05T20:43:35Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: New thread: Project Groups and Members&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page will show all the groups and their members&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
	<entry>
		<id>https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102120</id>
		<title>Course:CICS515/2011 Project</title>
		<link rel="alternate" type="text/html" href="https://wiki.ubc.ca/index.php?title=Course:CICS515/2011_Project&amp;diff=102120"/>
		<updated>2011-07-05T20:42:30Z</updated>

		<summary type="html">&lt;p&gt;BenjaminBertka: Created page with &amp;quot;Welcome to the home of CICS515-2011 Project!&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the home of CICS515-2011 Project!&lt;/div&gt;</summary>
		<author><name>BenjaminBertka</name></author>
	</entry>
</feed>