Portfolio » Web Applications

Line

Bug Tracking Tool

Home Page

URL:   Bug Tracking Tool Demo
A custom bug tracking tool I wrote for a team of in-house PHP developers.
It allows the developer to report on issue which occur during their testing phase. Developers can create and update the severity of the bugs using the html/jsp pages as well as search for specific bugs.
The website runs on a combination of J2EE and MySQL technologies.

Features




Code Snippet

 


public String escape(String raw) {

  if(raw == null) return raw;

  StringBuffer sb = new StringBuffer(raw.length()*2);

  int unesc;
  int len;
  String hex;

  for(int i = 0; i < raw.length(); i++)  { 
    char ch = raw.charAt(i);
    int ich = (int)ch;
  ...
	
	  

	   


screenshots

Submit Form Search Form.



« Back to the web applications