Difference between revisions of "Autopsy Developer's Guide"

From SleuthKitWiki
Jump to: navigation, search
(Added link to logging and error checking page.)
Line 1: Line 1:
This page contains technical information on developing code for Autopsy.  
+
This page contains technical information on developing code for [[Autopsy]].  
  
 +
= General sleuthkit.org Information =
 
This page is a work in progress and more information will be posted.  Here are some starting points.  
 
This page is a work in progress and more information will be posted.  Here are some starting points.  
* The [[Developer Guidelines]] define how code and patches can be submitted and incorporated into the distribution.  
+
* The [[Developer Guidelines]] define how code and patches can be submitted and incorporated into the sleuthkit.org projects.  
* The [[sleuthkit-developers]] list exists to discuss the development of the tools.  Subscribe to ask and answer questions.  
+
* The [[sleuthkit-developers]] list exists to discuss the development of the sleuthkit.org tools.  Subscribe to ask and answer questions.  
 
* If you want to contribute documentation, then refer to the [http://www.sleuthkit.org/support.php Support] page.  
 
* If you want to contribute documentation, then refer to the [http://www.sleuthkit.org/support.php Support] page.  
  
Line 9: Line 10:
 
If you are looking for ideas on how you can contribute, then you may want to refer to the feature request and bug [[trackers]].  They contain ideas that people have for the tools or bugs that need to be fixed.
 
If you are looking for ideas on how you can contribute, then you may want to refer to the feature request and bug [[trackers]].  They contain ideas that people have for the tools or bugs that need to be fixed.
  
= Technical Details =
+
= Source Code =
The source code is stored in a [http://www.github.org/ github] repository. You can get the latest source tree from https://github.com/sleuthkit/autopsy. The latest code is in the master branch. There is a branch for minor releases and tags for each release. The github repository contains the history from the previous subversion repository. Note that the previous subversion repository was created right before the 2.20 release and does not contain the previous CVS history.  
+
The source code is stored in a [http://www.github.org/ github] repository. You can get the latest source tree from http://github.com/sleuthkit/autopsy. The latest code is in the master branch. There is a branch for minor releases and tags for each release. The github repository contains the history from the previous subversion repository. Note that the previous subversion repository was created right before the 2.20 release and does not contain the previous CVS history.  
  
 
+
= Autopsy 3.0 =
= Autopsy 3.0 Design =
+
[[Autopsy 3]] is a complete rewrite from Autopsy 2. This section will cover the topics that developers need to get started.  This section will be better organized as we add content, but here are some starting points:
Version 3 of Autopsy is a complete rewrite.   The [https://github.com/sleuthkit/autopsy/blob/master/BUILDING.txt BUILDING.txt] file in the source code shows how to build the program.
+
* To compile the program from source, refer to [http://github.com/sleuthkit/autopsy/blob/master/BUILDING.txt BUILDING.txt].
 
+
Other pages of interest include:
+
 
* [[Autopsy 3 Design]] doc is a reference on developing additional features / bug fixes.
 
* [[Autopsy 3 Design]] doc is a reference on developing additional features / bug fixes.
 
* [[Autopsy 3 Logging and Error Checking]] is a reference for how errors and log messages are made.
 
* [[Autopsy 3 Logging and Error Checking]] is a reference for how errors and log messages are made.

Revision as of 14:38, 5 June 2012

This page contains technical information on developing code for Autopsy.

General sleuthkit.org Information

This page is a work in progress and more information will be posted. Here are some starting points.

  • The Developer Guidelines define how code and patches can be submitted and incorporated into the sleuthkit.org projects.
  • The sleuthkit-developers list exists to discuss the development of the sleuthkit.org tools. Subscribe to ask and answer questions.
  • If you want to contribute documentation, then refer to the Support page.

What To Do?

If you are looking for ideas on how you can contribute, then you may want to refer to the feature request and bug trackers. They contain ideas that people have for the tools or bugs that need to be fixed.

Source Code

The source code is stored in a github repository. You can get the latest source tree from http://github.com/sleuthkit/autopsy. The latest code is in the master branch. There is a branch for minor releases and tags for each release. The github repository contains the history from the previous subversion repository. Note that the previous subversion repository was created right before the 2.20 release and does not contain the previous CVS history.

Autopsy 3.0

Autopsy 3 is a complete rewrite from Autopsy 2. This section will cover the topics that developers need to get started. This section will be better organized as we add content, but here are some starting points: