Commit 83f25c56 authored by John Bonn's avatar John Bonn
Browse files

Removed apps tagfile generation. m04585

git-svn-id: http://subversion.wr.usgs.gov/repos/prog/isis3/trunk@7507 41f8697f-d340-4b68-9986-7bafba869bb8
parent bd81f29a
Loading
Loading
Loading
Loading
+1 −29
Original line number Diff line number Diff line
@@ -32,7 +32,6 @@ docs: conf assetsDir
documentation: 
	echo "      Creating Object Documentation"
	mkdir -p $(ISISROOT)/doc/Object
	mkdir -p $(ISISROOT)/doc/Object/apps
	mkdir -p $(ISISROOT)/doc/Object/Developer
	mkdir -p $(ISISROOT)/doc/Object/Programmer
	mkdir -p $(ISISROOT)/doc/documents/DocStyle/assets
@@ -45,30 +44,12 @@ assetsDir:
	rsync -qlHptr --delete --rsh=ssh assets $(ISISROOT)/doc/Object/ 

conf:
	echo "        ...building apps configuration"
	mkdir -p build/apps
	cat build/apps_tag.conf                                     >  build/apps_tag_temp.conf
	echo "OUTPUT_DIRECTORY = $(ISISROOT)/doc/Object/"           >> build/apps_tag_temp.conf
	echo "STRIP_FROM_PATH  = $(ISISROOT)/"                      >> build/apps_tag_temp.conf
	echo "INPUT            = $(ISISROOT)/src/ \\"               >> build/apps_tag_temp.conf
	echo "                   build/isisAppsDoxyDefs.doxydef"    >> build/apps_tag_temp.conf
	echo "HTML_HEADER      = build/IsisObjectHeaderApps.html"   >> build/apps_tag_temp.conf
	echo "HTML_FOOTER      = build/IsisObjectFooter.html"       >> build/apps_tag_temp.conf
	echo "HTML_OUTPUT      = apps"                              >> build/apps_tag_temp.conf
	echo "HTML_STYLESHEET  = build/doxygen.css"            >> build/apps_tag_temp.conf

	if [[ "$(DOT_PATH)" != "" ]];                                          \
	then                                                                   \
	  echo "DOT_PATH  = /opt/local/bin" >> build/apps_tag_temp.conf;       \
	fi

	echo "        ...building Programmer configuration"
	cat build/Programmer.conf                                        >  build/Programmer_temp.conf
	echo "OUTPUT_DIRECTORY = $(ISISROOT)/doc/Object/"                >> build/Programmer_temp.conf
	echo "STRIP_FROM_PATH  = $(ISISROOT)/"                           >> build/Programmer_temp.conf
	echo "INPUT            = build/isisDoxyDefs.doxydef $(ISISROOT)/src/ " >> build/Programmer_temp.conf
	echo "HTML_OUTPUT      = Programmer"                             >> build/Programmer_temp.conf
	echo "TAGFILES         = build/apps/apps_fix.tag"                >> build/Programmer_temp.conf

	if [ "$(findstring LOUD,$(MODE))" = "LOUD" ]; \
	then \
@@ -87,7 +68,6 @@ conf:
	echo "INPUT            = $(ISISROOT)/src/ \\"               >> build/Developer_temp.conf
	echo "                   build/isisDoxyDefs.doxydef"        >> build/Developer_temp.conf
	echo "HTML_OUTPUT      = Developer"                         >> build/Developer_temp.conf
	echo "TAGFILES         = build/apps/apps_fix.tag"           >> build/Developer_temp.conf
	if [ "$(findstring LOUD,$(MODE))" = "LOUD" ]; \
	then \
	  echo "QUIET                  = NO"                         >> build/Developer_temp.conf; \
@@ -100,13 +80,7 @@ conf:



render: doApps doProg doDev
doApps:
	echo "        ...building apps documentation"
	$(DOXYGEN) build/apps_tag_temp.conf
#	cp build/apps/apps.tag $(ISISROOT)/doc/Object/apps/
	$(XALAN) $(XALAN_OUTFILE_OPTION) build/apps/apps_fix.tag $(XALAN_INFILE_OPTION) build/apps/apps.tag $(XALAN_XSL_OPTION) build/IsisApplicationTagFix.xsl
	cp build/apps/apps_fix.tag $(ISISROOT)/doc/Object/apps/
render: doProg doDev

doProg:
	echo "        ...building Programmer documentation"
@@ -151,11 +125,9 @@ doProgTest:
#----
# CLEAN
clean:
	rm -f  build/apps_tag_temp.conf 
	rm -f  build/Programmer_temp.conf
	rm -f  build/Developer_temp.conf 
	rm -rf docbuild
	rm -rf build/apps
	rm -f ../documents/DocStyle/assets/isisDoxyDefs.doxydef
	rm -f doxyWarnDeveloper.txt doxyWarnProgrammer.txt

+0 −35
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">

<!--

This stylesheet will be used to strip information out of the XML files in the data directory and create a new XML file for generating tables of contents for Applications

Author
Deborah Lee Soltesz
4/25/2005

-->

<xsl:output indent="yes" omit-xml-declaration="no">
  <xsl:template match="/tagfile">
    <tagfile>
    <!-- 9/29/2005 dls
         does this need to modified to ignore "class" in the tagfile? other doxy runs
         seem to be upset about an unexpected tag 'class' -->
    <xsl:for-each select="compound[@kind != 'namespace' and name != 'QObject' and name != 'QScrollView']">
      <xsl:apply-templates select="." mode="copy"/>
    </xsl:for-each>
    </tagfile>
  </xsl:template>

  <xsl:template match="@* | node() [not(self::namespace) and not(. = 'class')]" mode="copy">
    <xsl:copy>
      <xsl:apply-templates select="@*" mode="copy"/>
      <xsl:apply-templates mode="copy"/>
    </xsl:copy>
  </xsl:template>

</xsl:output>
</xsl:stylesheet>
+0 −202
Original line number Diff line number Diff line
<!-- HEADER FILE for Isis API/Object documentation (used by doxygen)  -->
<!-- See doxygen -w  commmand for regenerating header with necessary doxygen info -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen $doxygenversion"/>
<link href="$relpath^tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="$relpath^jquery.js"></script>
<script type="text/javascript" src="$relpath^dynsections.js"></script>
$treeview
$search
$mathjax
<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" />
$extrastylesheet

<title>USGS Astrogeology Isis API</title>


<link rel="stylesheet" href="doxygen_apps.css">
<link rel="stylesheet" href="tabs.css">
<link rel="stylesheet" href="../../assets/styles/IsisStyleCommon.css">
<link rel="stylesheet" href="../assets/styles/IsisObjectAPIDocStyle.css">
<!--link rel="stylesheet" href="../assets/styles/tabs.css"-->

<meta name="keywords" content="Isis, image processing, API, object, class documentation">
<meta name="author" content="USGS Astrogeology Research Program">
<meta name="description" content="Documentation for Isis Objects, the Isis API">
<meta name="publisher" content="USGS - GD - Astrogeology Research Program">
<meta name="country" content="USA">
<meta name="state" content="AZ">
<meta name="county" content="Coconino">
<meta name="city" content="Flagstaff">
<meta name="zip" content="86001">
</head>
<style type="text/css">
    /* ----------------------------------------------------------------
     * HEADINGS */

     H1       {
               color: #336699 ;
              }

     H2       {
               background-color: #88AACC ;
              }

     H3       {
               color: #336699 ;
              }


     HR       {
               color: #000099 ;
              }


DIV.qindex { width: 100%;
             background-color: #e0efff;
             border-color: #e0efff;
}
A.qindex { text-decoration: none; font-weight: bold; }
A.qindex:hover {
        background-color: #CCDDEE ;
}
A.qindexHL {
             background-color: #6666cc;
             color: #ffffff ;
           }
A.qindexHL:hover {
        background-color: #CCDDEE ;
}
A.qindexRef:hover {
        background-color: #CCDDEE ;
}
A.qindexRefHL {
             background-color: #6666cc;
             color: #ffffff ;
}
A.qindexRefHL:hover {
        background-color: #CCDDEE ;
}
A.code {
        color: #4444ee ;
}
A.codeRef {
        color: #4444ee ;
}
A:hover {
        background-color: #CCDDEE ;
}
DIV.fragment {
        border: 1px solid #CCCCCC;
        background-color: #f5f5f5;
}
pre.fragment {
        border: 0px none transparent;
        background-color: transparent;
}
DIV.ah {
        background-color: black;
        color: #ffffff;
}
TD.md {
        background-color: #f2f2ff;
}
TD.mdname1 {
        background-color: #f2f2ff;
        color: #602020;
}
TD.mdname {
        background-color: #f2f2ff;
}
TD.indexkey {
   background-color: #e0efff;
}
TD.indexvalue {
   background-color: #eff9ff;
}
TR.memlist {
   background-color: #f0f0f0;
}
SPAN.keyword       { color: #008000 }
SPAN.keywordtype   { color: #604020 }
SPAN.keywordflow   { color: #e08000 }
SPAN.comment       { color: #800000 }
SPAN.preprocessor  { color: #806020 }
SPAN.stringliteral { color: #002080 }
SPAN.charliteral   { color: #008080 }
.mdTable {
        border: 1px solid #868686;
        background-color: #f2f2ff;
}
.mdRow {
        padding: 8px 20px;
}
.mdescLeft {
        background-color: #FAFAFA;
        border-top: 1px none #E0E0E0;
        border-right: 1px none #E0E0E0;
        border-bottom: 1px none #E0E0E0;
        border-left: 1px none #E0E0E0;
}
.mdescRight {
        background-color: #FAFAFA;
        border-top: 1px none #E0E0E0;
        border-right: 1px none #E0E0E0;
        border-bottom: 1px none #E0E0E0;
        border-left: 1px none #E0E0E0;
}
.memItemLeft {
        border-top-color: #E0E0E0;
        border-right-color: #E0E0E0;
        border-bottom-color: #E0E0E0;
        border-left-color: #E0E0E0;
        background-color: #FAFAFA;
}
.memItemRight {
        border-top-color: #E0E0E0;
        border-right-color: #E0E0E0;
        border-bottom-color: #E0E0E0;
        border-left-color: #E0E0E0;
        background-color: #FAFAFA;
}

table {
  border-color: #CCDDEE ;
}

.qindex {
  height: 0px;
  visibility: hidden ;
}


</style>
<body>
<a href="http://www.usgs.gov"><img class="noborder" src="../../assets/icons/littleVIS.gif" width="80" height="22" border="0" alt="USGS"></a>
<br>

<table width="100%" cellpadding="0" border="0" cellspacing="0">
<tr valign="top">
  <td align="left">
<p style="margin-top:10px; margin-bottom:0px;">
Isis 3 Application Source Code Reference</p>
  </td>
  <td align="right" class="caption">
  <script language="javascript" type="text/javascript">
    //<!--
      // create back link if javascript is available
      if (history.length > 1) {
        document.write ("<a href='javascript:history.back();'>Back</a> | ") ;
      }
    //-->
  </script>
  <a href="../../index.html" target="_top">Home</a></td>
</tr>
</table>

<hr>
+0 −88
Original line number Diff line number Diff line
<!-- HEADER FILE for Isis API/Object documentation (used by doxygen)  -->
<!-- See doxygen -w  commmand for regenerating header with necessary doxygen info -->
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=9"/>
<meta name="generator" content="Doxygen $doxygenversion"/>
<link href="$relpath^tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="$relpath^jquery.js"></script>
<script type="text/javascript" src="$relpath^dynsections.js"></script>
$treeview
$search
$mathjax
<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" />
$extrastylesheet

<meta name="keywords" content="Isis, image processing, API, object, class documentation">
<meta name="author" content="USGS Astrogeology Research Program">
<meta name="description" content="Documentation for Isis Objects, the Isis API">
<meta name="publisher" content="USGS - GD - Astrogeology Research Program">
<meta name="country" content="USA">
<meta name="state" content="AZ">
<meta name="county" content="Coconino">
<meta name="city" content="Flagstaff">
<meta name="zip" content="86001">

<!--BEGIN PROJECT_NAME--><title>$projectname: $title</title><!--END PROJECT_NAME-->
<!--BEGIN !PROJECT_NAME--><title>$title</title><!--END !PROJECT_NAME-->
<link href="$relpath^tabs.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript" src="$relpath^jquery.js"></script>
<script type="text/javascript" src="$relpath^dynsections.js"></script>
$treeview
$search
$mathjax
<link href="$relpath^$stylesheet" rel="stylesheet" type="text/css" />
$extrastylesheet
</head>
<body>
<div id="top"><!-- do not remove this div, it is closed by doxygen! -->

<!--BEGIN TITLEAREA-->
<div id="titlearea">
<table cellspacing="0" cellpadding="0" width="100%">
 <tbody>
 <tr style="height: 56px;">
  <!--BEGIN PROJECT_LOGO-->
  <td id="projectlogo">
    <a href="http://www.usgs.gov" target="_blank"><img alt="USGS" src="$relpath^$projectlogo"/></a>
  </td>
  <!--END PROJECT_LOGO-->
  <!--BEGIN PROJECT_NAME-->
  <td style="padding-left: 0.5em;">
   <div id="projectname">$projectname
   <!--BEGIN PROJECT_NUMBER-->&#160;<span id="projectnumber">$projectnumber</span><!--END PROJECT_NUMBER-->
   </div>
  <td id="rightnav">
   <script language="javascript" type="text/javascript">
    //<!--
      // create back link if javascript is available
      if (history.length > 1) {
        document.write ("<a href='javascript:history.back();'>Back</a> | ") ;
      }
    //-->
    </script>
    <a href="../../index.html" target="_top">Home</a></td>
  </td>
   <!--BEGIN PROJECT_BRIEF--><div id="projectbrief">$projectbrief</div><!--END PROJECT_BRIEF-->
  </td>
  <!--END PROJECT_NAME-->
  <!--BEGIN !PROJECT_NAME-->
   <!--BEGIN PROJECT_BRIEF-->
    <td style="padding-left: 0.5em;">
    <div id="projectbrief">$projectbrief</div>
    </td>
   <!--END PROJECT_BRIEF-->
  <!--END !PROJECT_NAME-->
  <!--BEGIN DISABLE_INDEX-->
   <!--BEGIN SEARCHENGINE-->
   <td>$searchbox</td>
   <!--END SEARCHENGINE-->
  <!--END DISABLE_INDEX-->
 </tr>
 </tbody>
</table>
</div>
<!--END TITLEAREA-->
<!-- end header part -->
+0 −2365

File deleted.

Preview size limit exceeded, changes collapsed.

Loading