Difference between revisions of "Cartographer FAQ"

From Krupczak.org
Jump to: navigation, search
(What license agreement is Cartographer released under?)
(What are the pieces parts?)
Line 10: Line 10:
  
 
=== What are the pieces parts? ===
 
=== What are the pieces parts? ===
 +
 +
The figures below depict the software architectural relationship between the various components.  <span style="color:green">Green</span> denotes an open-source component, covered by the [http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GPLv2], while <span style="color:blue">blue</span> denotes those that are traditional or closed-source covered by our [[License_agreement|own license agreement]].
 +
 +
<center>
 +
<graphviz>
 +
digraph A {
 +
  rankdir=LR;
 +
  label = "Big Picture";
 +
  graph[bgcolor="transparent"];
 +
  node [shape=circle, style="bold"];
 +
  edge [style=bold];
 +
  S1 [ color=blue, label = "GUI" ];
 +
  S2 [ color=green, label = "agent" ];
 +
  S3 [ color=green, label = "agent" ];
 +
  S1 -> S2 [color=green, label = "XMP"];
 +
  S2 -> S3 [color=green, label = "XMP"];
 +
  S1 -> S3 [color=green, label = "XMP"];
 +
  S3 -> S1 [color=green];
 +
  S3 -> S2 [color=green];
 +
  S2 -> S1 [color=green];
 +
}
 +
</graphviz>
 +
</center>
 +
 +
<center>
 +
<graphviz>
 +
graph B {
 +
  label="Inside the Cartographer Agent";
 +
  graph[bgcolor="transparent"];
 +
  subgraph cluster_0 {
 +
        color=green;
 +
        label="Agent Engine (Xmpd)";
 +
        mib2 [color=green, label="MIB2 plugin"];
 +
        cartographer [color=blue, label="Cartographer plugin"];
 +
        test [color=green, label="Test plugin"];
 +
  }
 +
}
 +
</graphviz>
 +
</center>
  
 
=== What license agreement is Cartographer released under? ===
 
=== What license agreement is Cartographer released under? ===

Revision as of 15:32, 9 November 2009

Download Software

Contents

Cartographer Project FAQ

This FAQ for the Cartographer project is broken into several sections. If you do not find the answer to your question here, please let us know by emailing info1 -at- krupczak.org

Project

What is Cartographer?

What are the pieces parts?

The figures below depict the software architectural relationship between the various components. Green denotes an open-source component, covered by the GPLv2, while blue denotes those that are traditional or closed-source covered by our own license agreement.

What license agreement is Cartographer released under?

Two licenses cover different components of Cartographer. The first, the GNU GPLv2, covers pieces that have been open sourced. The second, this license agreement covers those portions not released under open source.

Where can I download the source?

See this web page to download source and binaries. http://www.krupczak.org/index.php/Distributions

What is the current version?

The current release is 1.1.

XMP

Installation

Troubleshooting

Contributing

Personal tools