Search This Blog

Saturday, October 16, 2010

Team meeting - 7

Myself, Dharmil and John met in the Epics lab and we started working on various issues. 
I started working on sitemap ( control-flow)
John worked on the Epics logo that we have to put on the website.
Dharmil was working on site master. 

My part of site map, This is the first time that I am working on the site map of any website. So, I had to do a lot of research on how to code the site map. I looked through the site maps of many websites. I have interacted with John to draw a flow chart of the control flow of the website. I have printed the code of a small site map code of some website and tried to understand how the control flow works. I got some idea of how it was working. I coded a bit on the lab but I promised to finish the coding by next day noon. I finished the whole site map code the next day. The whole process took me about three hours. ( since it is the first time)

This is the code I came up with:


<?xml version="1.0" encoding="utf-8" ?>
<siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" >
  <siteMapNode url="~/" title="Home" description="Home Page" roles="none" >
    <siteMapNode id="P1" url="~/default.aspx" title="Home" description="Home Page"> </siteMapNode>
    <!-- <siteMapNode url="~/default.aspx#" title="Event Calendar" description="Event Calendar" /> -->
    <siteMapNode id="P2" url="~/login.aspx" title="Login" description="Login" />
  </siteMapNode>
  <siteMapNode id="P3" url="~/signup.aspx" title="Create Account" description="Create Account" />
  </siteMapNode>
  <siteMapNode id="P4" url="~/forgotpassword.aspx" title="Forgot Password" description="Forgot Password" />
  <siteMapNode id="P5" url="~/viewevent.aspx" title="View Event" description="View Event" roles="none" /
  </siteMapNode>
  <siteMapNode id="P6" url="~/activate.aspx" title="Activate Account" description="Activate Account" roles="none" />
  </siteMapNode>

  <siteMapNode id="P7" url="~/Admin/" title="Home" description="Admin Home">
    <siteMapNode url="~/Accounts/default.aspx" title="Account" description="Account" />
    <siteMapNode url="~/Accounts/edit.aspx" title="Edit Account" description="Edit Account" roles="none" />
    <siteMapNode url="~/Accounts/create.aspx" title="Create Account" description="Create Account" roles="none" />
  </siteMapNode>
  <siteMapNode url="~/Events/default.aspx" title="Event" description="Event" />
  <siteMapNode url="~/Events/edit.aspx" title="Edit Event" description="Edit Event" roles="none" />
  <siteMapNode url="~/Events/create.aspx" title="Create Event" description="Create Event" roles="none" />
  </siteMapNode>
  <siteMapNode url="~/Admin/account.aspx" title="Account1" description="Account1" roles="none" />
  <siteMapNode url="~/Admin/changepassword.aspx" title="Change Password" description="Change password" roles="none" />
  <siteMapNode url="~/Admin/default.aspx" title="Default" description="Default" roles="none" />

  <siteMapNode id="P8" url="~/Volunteer/" title="Volunteer" description="Volunteer Home">
    <siteMapNode url="~/account.aspx" title="Account2" description="Account2" />
    <siteMapNode url="~/changepassword.aspx" title="Change Password" description="Change password" roles="none" />
    <siteMapNode url="~/default.aspx" title="Default" description="Default" roles="none" />
  </siteMapNode>

  </siteMapNode>
</siteMap>


I have committed the code. It was found that this code resulted in some problems , it had some bugs. 
But I tried my level best to come up with a solution. 


John was editing the logo so as to fit in the website. Dharmil and John faced problems with the size of the picture and also the way how it looks. John did some picture editing and Dharmil got it working. 

This is what we did in the team meeting.

No comments:

Post a Comment