common/makefiles/javadoc/Javadoc.gmk
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File profiles-staging Sdiff common/makefiles/javadoc

common/makefiles/javadoc/Javadoc.gmk

Print this page




 252 define OptionTrip # opt arg arg
 253 $(PRINTF) "%s '%s' '%s'\n" "$1" '$2' '$3'
 254 endef
 255 
 256 # Core api bottom argument (with special sauce)
 257 COREAPI_BOTTOM = <font size="-1"> $(BUG_SUBMIT_LINE)\
 258 <br>For further API reference and developer documentation, \
 259 see <a href="$(DEV_DOCS_URL)" target="_blank">Java SE Documentation</a>. \
 260 That documentation contains more detailed, developer-targeted descriptions, \
 261 with conceptual overviews, definitions of terms, workarounds, \
 262 and working code examples.<br>\
 263 $(call CopyrightLine,$(COPYRIGHT_URL),$(FIRST_COPYRIGHT_YEAR),)\
 264 </font>
 265 
 266 # Common javadoc options used by all
 267 COMMON_JAVADOCFLAGS =                                   \
 268                 -XDignore.symbol.file=true              \
 269                 -quiet                                  \
 270                 -use                                    \
 271                 -keywords                               \

 272                 $(ADDITIONAL_JAVADOCFLAGS)
 273 
 274 ifdef OPENJDK
 275   ADDITIONAL_JAVADOCFLAGS =                             \
 276                 -Xdocrootparent $(DOCS_BASE_URL)
 277 else
 278   ADDITIONAL_JAVADOCFLAGS =
 279 endif
 280 
 281 # Draft used for non-fcs documents
 282 DRAFT_HEADER =
 283 ifneq ($(MILESTONE), fcs)
 284     DRAFT_HEADER = <br><strong>DRAFT&nbsp;$(MILESTONE)-$(BUILD_NUMBER)</strong>
 285     DRAFT_BOTTOM = <br><strong>DRAFT&nbsp;$(MILESTONE)-$(BUILD_NUMBER)</strong>
 286     DRAFT_WINTITLE = $(BUILD_NUMBER)
 287     # Early access top text (not used in FCS releases)
 288     COREAPI_TOP_EARLYACCESS = \
 289 <div style="background-color: \#EEEEEE"> \
 290 <div style="padding: 6px; margin-top: 2px; margin-bottom: 6px; \
 291 margin-left: 6px; margin-right: 6px; text-align: justify; \




 252 define OptionTrip # opt arg arg
 253 $(PRINTF) "%s '%s' '%s'\n" "$1" '$2' '$3'
 254 endef
 255 
 256 # Core api bottom argument (with special sauce)
 257 COREAPI_BOTTOM = <font size="-1"> $(BUG_SUBMIT_LINE)\
 258 <br>For further API reference and developer documentation, \
 259 see <a href="$(DEV_DOCS_URL)" target="_blank">Java SE Documentation</a>. \
 260 That documentation contains more detailed, developer-targeted descriptions, \
 261 with conceptual overviews, definitions of terms, workarounds, \
 262 and working code examples.<br>\
 263 $(call CopyrightLine,$(COPYRIGHT_URL),$(FIRST_COPYRIGHT_YEAR),)\
 264 </font>
 265 
 266 # Common javadoc options used by all
 267 COMMON_JAVADOCFLAGS =                                   \
 268                 -XDignore.symbol.file=true              \
 269                 -quiet                                  \
 270                 -use                                    \
 271                 -keywords                               \
 272                 -Xprofilespath $(JDK_TOPDIR)/makefiles/profile-rtjar-includes.txt \
 273                 $(ADDITIONAL_JAVADOCFLAGS)
 274 
 275 ifdef OPENJDK
 276   ADDITIONAL_JAVADOCFLAGS =                             \
 277                 -Xdocrootparent $(DOCS_BASE_URL)
 278 else
 279   ADDITIONAL_JAVADOCFLAGS =
 280 endif
 281 
 282 # Draft used for non-fcs documents
 283 DRAFT_HEADER =
 284 ifneq ($(MILESTONE), fcs)
 285     DRAFT_HEADER = <br><strong>DRAFT&nbsp;$(MILESTONE)-$(BUILD_NUMBER)</strong>
 286     DRAFT_BOTTOM = <br><strong>DRAFT&nbsp;$(MILESTONE)-$(BUILD_NUMBER)</strong>
 287     DRAFT_WINTITLE = $(BUILD_NUMBER)
 288     # Early access top text (not used in FCS releases)
 289     COREAPI_TOP_EARLYACCESS = \
 290 <div style="background-color: \#EEEEEE"> \
 291 <div style="padding: 6px; margin-top: 2px; margin-bottom: 6px; \
 292 margin-left: 6px; margin-right: 6px; text-align: justify; \


common/makefiles/javadoc/Javadoc.gmk
Index Unified diffs Context diffs Sdiffs Wdiffs Patch New Old Previous File Next File