Changeset 106065 in vbox
- Timestamp:
- Sep 16, 2024 9:42:41 PM (7 months ago)
- svn:sync-xref-src-repo-rev:
- 164831
- Location:
- trunk
- Files:
-
- 31 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/kBuild-tricks.txt
r98108 r106065 59 59 60 60 :Status: $Id$ 61 :Copyright: Copyright (C) 2006-202 2Oracle Corporation.61 :Copyright: Copyright (C) 2006-2024 Oracle Corporation. 62 62 -
trunk/doc/manual/Makefile.kmk
r106061 r106065 1209 1209 dhcpoptions: $(PATH_ROOT)/doc/manual/en_US/man_VBoxManage-dhcpserver-dhcpoptions.xsl \ 1210 1210 $(PATH_ROOT)/src/VBox/Main/idl/VirtualBox.xidl 1211 $(call VBOX_XSLTPROC) --output "$(PATH_ROOT)/doc/manual/en_US/man_VBoxManage-dhcpserver-dhcpoptions.xml" $^ 1211 $(call VBOX_XSLTPROC) --stringparam g_uVBoxCopyrightYear "$(VBOX_C_YEAR)" \ 1212 --output "$(PATH_ROOT)/doc/manual/en_US/man_VBoxManage-dhcpserver-dhcpoptions.xml" $^ 1212 1213 1213 1214 -
trunk/doc/manual/en_US/man_VBoxManage-dhcpserver-dhcpoptions.xsl
r106061 r106065 33 33 <xsl:output method="text" version="1.0" encoding="utf-8" indent="yes"/> 34 34 <xsl:strip-space elements="*"/> 35 36 37 <!-- Global parameters. --> 38 <xsl:param name="g_uVBoxCopyrightYear">2024</xsl:param> 35 39 36 40 … … 72 76 --> 73 77 <!-- 74 Copyright (C) 2019- 2023Oracle Corporation and/or its affiliates.78 Copyright (C) 2019-</xsl:text><xsl:value-of select="$g_uVBoxCopyrightYear"/><xsl:text> Oracle Corporation and/or its affiliates. 75 79 76 80 This file is part of VirtualBox Open Source Edition (OSE), as -
trunk/doc/manual/en_US/man_VBoxManage-getextradata.xml
r106061 r106065 110 110 <screen>$ VBoxManage getextradata Fedora5 installdate 111 111 VirtualBox Command Line Management Interface Version <replaceable>version-number</replaceable> 112 Copyright (C) 2005-202 3Oracle and/or its affiliates112 Copyright (C) 2005-2024 Oracle and/or its affiliates 113 113 114 114 Value: 2006.01.01</screen> -
trunk/doc/manual/en_US/man_VBoxManage-showvminfo.xml
r106061 r106065 172 172 <screen>$ VBoxManage showvminfo "Windows 10" 173 173 VirtualBox Command Line Management Interface Version <replaceable>version-number</replaceable> 174 Copyright (C) 2005-202 3Oracle and/or its affiliates174 Copyright (C) 2005-2024 Oracle and/or its affiliates 175 175 176 176 Name: Windows 10 -
trunk/doc/manual/ru_RU/man_VBoxManage-getextradata.xml
r106061 r106065 109 109 <screen>$ VBoxManage getextradata Fedora5 installdate 110 110 VirtualBox Command Line Management Interface Version <replaceable>номер-версии</replaceable> 111 Copyright (C) 2005-202 3Oracle and/or its affiliates111 Copyright (C) 2005-2024 Oracle and/or its affiliates 112 112 113 113 Значение: 2006.01.01</screen> -
trunk/doc/manual/ru_RU/man_VBoxManage-showvminfo.xml
r106061 r106065 137 137 <screen>$ VBoxManage showvminfo "Windows 10" 138 138 VirtualBox Command Line Management Interface Version <replaceable>номер-версии</replaceable> 139 Copyright (C) 2005-202 3Oracle and/or its affiliates139 Copyright (C) 2005-2024 Oracle and/or its affiliates 140 140 141 141 Имя: Windows 10 -
trunk/src/VBox/Main/Makefile.kmk
r106061 r106065 923 923 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS) 924 924 $(call MSG_TOOL,xsltproc,autogen events,$<,$@) 925 $(QUIET)$(VBOX_XSLTPROC) --stringparam G_kind VBoxEventHeader -o "$@" "$(VBOX_PATH_MAIN_SRC)/idl/comimpl.xsl" "$(VBOX_XIDL_FILE)" 925 $(QUIET)$(VBOX_XSLTPROC) \ 926 --stringparam G_kind VBoxEventHeader \ 927 --stringparam g_uVBoxCopyrightYear "$(VBOX_C_YEAR)" \ 928 -o "$@" "$(VBOX_PATH_MAIN_SRC)/idl/comimpl.xsl" "$(VBOX_XIDL_FILE)" 926 929 $(QUIET)$(CP) --changed -fv -- "$@" "$(VBOX_AUTOGEN_EVENT_H)" 927 930 … … 930 933 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS) 931 934 $(call MSG_TOOL,xsltproc,autogen events,$<,$@) 932 $(QUIET)$(VBOX_XSLTPROC) --stringparam G_kind VBoxEvent -o "$@" "$(VBOX_PATH_MAIN_SRC)/idl/comimpl.xsl" "$(VBOX_XIDL_FILE)" 935 $(QUIET)$(VBOX_XSLTPROC) \ 936 --stringparam G_kind VBoxEvent \ 937 --stringparam g_uVBoxCopyrightYear "$(VBOX_C_YEAR)" \ 938 -o "$@" "$(VBOX_PATH_MAIN_SRC)/idl/comimpl.xsl" "$(VBOX_XIDL_FILE)" 933 939 $(QUIET)$(CP) --changed -fv -- "$@" "$(VBOX_AUTOGEN_EVENT_CPP)" 934 940 … … 940 946 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS) 941 947 $(call MSG_TOOL,xsltproc,autogen enum stringifiers,$<,$@) 942 $(QUIET)$(VBOX_XSLTPROC) --stringparam G_kind header -o "$@" "$(VBOX_PATH_MAIN_SRC)/idl/stringify-enums.xsl" "$(VBOX_XIDL_FILE)" 948 $(QUIET)$(VBOX_XSLTPROC) \ 949 --stringparam G_kind header \ 950 --stringparam g_uVBoxCopyrightYear "$(VBOX_C_YEAR)" \ 951 -o "$@" "$(VBOX_PATH_MAIN_SRC)/idl/stringify-enums.xsl" "$(VBOX_XIDL_FILE)" 943 952 $(QUIET)$(CP) --changed -fv -- "$@" "$(VBOX_AUTOGEN_STRINGIFY_ENUMS_H)" 944 953 … … 947 956 $(call KB_FN_AUTO_CMD_DEPS_COMMANDS) 948 957 $(call MSG_TOOL,xsltproc,autogen enum stringifiers,$<,$@) 949 $(QUIET)$(VBOX_XSLTPROC) --stringparam G_kind source -o "$@" "$(VBOX_PATH_MAIN_SRC)/idl/stringify-enums.xsl" "$(VBOX_XIDL_FILE)" 958 $(QUIET)$(VBOX_XSLTPROC) \ 959 --stringparam G_kind source \ 960 --stringparam g_uVBoxCopyrightYear "$(VBOX_C_YEAR)" \ 961 -o "$@" "$(VBOX_PATH_MAIN_SRC)/idl/stringify-enums.xsl" "$(VBOX_XIDL_FILE)" 950 962 $(QUIET)$(CP) --changed -fv -- "$@" "$(VBOX_AUTOGEN_STRINGIFY_ENUMS_CPP)" 951 963 … … 1827 1839 --stringparam G_vboxGlueStyle mscom \ 1828 1840 --stringparam G_vboxDirPrefix "" \ 1841 --stringparam g_uVBoxCopyrightYear "$(VBOX_C_YEAR)" \ 1829 1842 -o $(VBOX_JMSCOM_GEN)/java/merged.file $(VBOX_GLUE_XSLT_DIR)/glue-java.xsl $(VBOX_XIDL_FILE) 1830 1843 $(QUIET)$(VBOX_FILESPLIT) $(VBOX_JMSCOM_GEN)/java/merged.file $(VBOX_JMSCOM_GEN)/java … … 1891 1904 $(QUIET)$(VBOX_XSLTPROC) --stringparam KBUILD_HOST $(KBUILD_HOST) \ 1892 1905 --stringparam generating "headers" \ 1906 --stringparam g_uVBoxCopyrightYear "$(VBOX_C_YEAR)" \ 1893 1907 -o $@ $(VBoxAPIWrap_VBOX_XSLT) $(VBOX_XIDL_FILE) 1894 1908 $(QUIET)$(VBOX_FILESPLIT) $@ $(VBoxAPIWrap_0_OUTDIR) … … 1908 1922 $(QUIET)$(VBOX_XSLTPROC) --stringparam KBUILD_HOST $(KBUILD_HOST) \ 1909 1923 --stringparam generating "dtrace-probes" \ 1924 --stringparam g_uVBoxCopyrightYear "$(VBOX_C_YEAR)" \ 1910 1925 -o "$@" $(VBoxAPIWrap_VBOX_XSLT) $(VBOX_XIDL_FILE) 1911 1926 $(QUIET)$(SED) -e '' -o "[email protected]" \ … … 1931 1946 --stringparam generating "sources" \ 1932 1947 --param reminder 0 \ 1948 --stringparam g_uVBoxCopyrightYear "$(VBOX_C_YEAR)" \ 1933 1949 -o $@ $(VBoxAPIWrap_VBOX_XSLT) $(VBOX_XIDL_FILE) 1934 1950 $(QUIET)$(VBOX_FILESPLIT) $@ $(VBoxAPIWrap_0_OUTDIR) … … 1948 1964 --stringparam generating "sources" \ 1949 1965 --param reminder 1 \ 1966 --stringparam g_uVBoxCopyrightYear "$(VBOX_C_YEAR)" \ 1950 1967 -o $@ $(VBoxAPIWrap_VBOX_XSLT) $(VBOX_XIDL_FILE) 1951 1968 $(QUIET)$(VBOX_FILESPLIT) $@ $(VBoxAPIWrap_0_OUTDIR) -
trunk/src/VBox/Main/cbinding/Makefile.kmk
r106061 r106065 80 80 | $$(dir $$@) 81 81 $(call MSG_TOOL,xsltproc,CAPIHeaders,$<,$@) 82 $(QUIET)$(VBOX_XSLTPROC) - o $@ $^82 $(QUIET)$(VBOX_XSLTPROC) --stringparam g_uVBoxCopyrightYear "$(VBOX_C_YEAR)" -o $@ $^ 83 83 84 84 ifndef VBOX_ONLY_SDK -
trunk/src/VBox/Main/cbinding/capiidl.xsl
r106061 r106065 35 35 <xsl:strip-space elements="*"/> 36 36 37 <!-- Global parameters. --> 38 <xsl:param name="g_uVBoxCopyrightYear">2024</xsl:param> 37 39 38 40 <xsl:include href="../idl/typemap-shared.inc.xsl"/> … … 84 86 85 87 /* 86 * Copyright (C) 2008- 2023Oracle and/or its affiliates.88 * Copyright (C) 2008-</xsl:text><xsl:value-of select="$g_uVBoxCopyrightYear"/><xsl:text> Oracle and/or its affiliates. 87 89 * 88 90 * This file is part of a free software library; you can redistribute -
trunk/src/VBox/Main/glue/glue-java.xsl
r106061 r106065 41 41 global XSLT variables 42 42 - - - - - - - - - - - - - - - - - - - - - - --> 43 <xsl:param name="g_uVBoxCopyrightYear">2024</xsl:param> 43 44 44 45 <xsl:variable name="G_xsltFilename" select="'glue-java.xsl'" /> … … 69 70 <xsl:param name="name" /> 70 71 <xsl:text>/* 71 * Copyright (C) 2010- 2023Oracle and/or its affiliates.72 * Copyright (C) 2010-</xsl:text><xsl:value-of select="$g_uVBoxCopyrightYear"/><xsl:text> Oracle and/or its affiliates. 72 73 * 73 74 * This file is part of a free software library; you can redistribute -
trunk/src/VBox/Main/glue/python/Makefile.kmk
r106061 r106065 71 71 $(QUIET)$(VBOX_XSLTPROC) -o $@ \ 72 72 --stringparam "g_sErrHFile" "$(VBox-python-vboxapi_0_OUTDIR)/VirtualBox_constants_err_h_1.txt" \ 73 --stringparam g_uVBoxCopyrightYear "$(VBOX_C_YEAR)" \ 73 74 $(VBOX_PATH_PYTHON_GLUE_SRC)/constants-python.xsl $(VBOX_XIDL_FILE) 74 75 -
trunk/src/VBox/Main/glue/python/constants-python.xsl
r106061 r106065 36 36 indent="no"/> 37 37 38 <!-- Global parameters. --> 39 <xsl:param name="g_uVBoxCopyrightYear">2024</xsl:param> 38 40 <xsl:param name="g_sErrHFile"/> 39 41 … … 49 51 __copyright__ = \ 50 52 """ 51 Copyright (C) 2009- 2023Oracle and/or its affiliates.53 Copyright (C) 2009-</xsl:text><xsl:value-of select="$g_uVBoxCopyrightYear"/><xsl:text> Oracle and/or its affiliates. 52 54 53 55 This file is part of VirtualBox base platform packages, as -
trunk/src/VBox/Main/idl/apiwrap-server.xsl
r106061 r106065 38 38 <xsl:strip-space elements="*"/> 39 39 40 <!-- Global parameters. --> 41 <xsl:param name="g_uVBoxCopyrightYear">2024</xsl:param> 42 40 43 <!-- - - - - - - - - - - - - - - - - - - - - - - 41 44 global XSLT variables … … 92 95 93 96 /* 94 * Copyright (C) 2010- 2023Oracle and/or its affiliates.97 * Copyright (C) 2010-</xsl:text><xsl:value-of select="$g_uVBoxCopyrightYear"/><xsl:text> Oracle and/or its affiliates. 95 98 * 96 99 * This file is part of VirtualBox base platform packages, as -
trunk/src/VBox/Main/idl/comimpl.xsl
r106061 r106065 43 43 <xsl:include href="typemap-shared.inc.xsl" /> 44 44 45 <!-- Global parameters. --> 46 <xsl:param name="g_uVBoxCopyrightYear">2024</xsl:param> 47 45 48 <!-- $G_kind contains what kind of COM class implementation we generate --> 46 49 <xsl:variable name="G_xsltFilename" select="'autogen.xsl'" /> … … 69 72 70 73 /* 71 * Copyright (C) 2010- 2023Oracle and/or its affiliates.74 * Copyright (C) 2010-</xsl:text><xsl:value-of select="$g_uVBoxCopyrightYear"/><xsl:text> Oracle and/or its affiliates. 72 75 * 73 76 * This file is part of VirtualBox base platform packages, as -
trunk/src/VBox/Main/idl/stringify-enums.xsl
r106061 r106065 41 41 - - - - - - - - - - - - - - - - - - - - - - --> 42 42 43 <xsl:param name="g_uVBoxCopyrightYear">2024</xsl:param> 43 44 <xsl:param name="G_kind">source</xsl:param> 44 45 … … 67 68 68 69 /* 69 * Copyright (C) 2022- 2023Oracle and/or its affiliates.70 * Copyright (C) 2022-</xsl:text><xsl:value-of select="$g_uVBoxCopyrightYear"/><xsl:text> Oracle and/or its affiliates. 70 71 * 71 72 * This file is part of VirtualBox base platform packages, as -
trunk/src/VBox/Main/src-server/USBIdDatabaseGenerator.cpp
r106061 r106065 36 36 #include <iprt/sanitized/string> 37 37 #include <vector> 38 39 #include <VBox/version.h> 38 40 39 41 #include <iprt/err.h> … … 258 260 "\n" 259 261 "/*\n" 260 " * Copyright (C) 2015- 2023Oracle and/or its affiliates.\n"262 " * Copyright (C) 2015-" VBOX_C_YEAR " Oracle and/or its affiliates.\n" 261 263 " *\n" 262 264 " * This file is part of VirtualBox base platform packages, as\n" -
trunk/src/VBox/Main/webservice/Makefile.kmk
r106061 r106065 488 488 $(QUIET)$(MKDIR) -p $(@D) 489 489 $(QUIET)$(VBOX_XSLTPROC) \ 490 --stringparam filelistonly VBoxJWS_VBOX_JWSGLUEFILES \ 491 --stringparam G_vboxApiSuffix $(VBOX_API_SUFFIX) \ 492 --stringparam G_vboxGlueStyle jaxws \ 493 --stringparam G_vboxDirPrefix org/virtualbox$(VBOX_API_SUFFIX)/ \ 494 -o $@ $(VBOX_GLUE_XSLT_DIR)/glue-java.xsl $< 490 --stringparam filelistonly VBoxJWS_VBOX_JWSGLUEFILES \ 491 --stringparam G_vboxApiSuffix $(VBOX_API_SUFFIX) \ 492 --stringparam G_vboxGlueStyle jaxws \ 493 --stringparam G_vboxDirPrefix org/virtualbox$(VBOX_API_SUFFIX)/ \ 494 --stringparam g_uVBoxCopyrightYear "$(VBOX_C_YEAR)" \ 495 -o $@ $(VBOX_GLUE_XSLT_DIR)/glue-java.xsl $< 495 496 $(QUIET)$(CP) --changed -fv $@ $(VBoxJWSGlue_KMK) 496 497 … … 505 506 $(QUIET)$(MKDIR) -p $(@D) 506 507 $(QUIET)$(VBOX_XSLTPROC) \ 507 --stringparam filelistonly "" \ 508 --stringparam G_vboxApiSuffix $(VBOX_API_SUFFIX) \ 509 --stringparam G_vboxGlueStyle jaxws \ 510 --stringparam G_vboxDirPrefix org/virtualbox$(VBOX_API_SUFFIX)/ \ 511 -o $(VBOX_JWS_GEN_RAWSRC) $(VBOX_GLUE_XSLT_DIR)/glue-java.xsl $< 508 --stringparam filelistonly "" \ 509 --stringparam G_vboxApiSuffix $(VBOX_API_SUFFIX) \ 510 --stringparam G_vboxGlueStyle jaxws \ 511 --stringparam G_vboxDirPrefix org/virtualbox$(VBOX_API_SUFFIX)/ \ 512 --stringparam g_uVBoxCopyrightYear "$(VBOX_C_YEAR)" \ 513 -o $(VBOX_JWS_GEN_RAWSRC) $(VBOX_GLUE_XSLT_DIR)/glue-java.xsl $< 512 514 $(QUIET)$(MKDIR) -p $(VBOX_JWS_GEN)/java/org/virtualbox$(VBOX_API_SUFFIX) 513 515 $(QUIET)$(VBOX_FILESPLIT) $(VBOX_JWS_GEN_RAWSRC) $(VBOX_JWS_GEN)/java … … 737 739 $(QUIET)$(RM) -f -- $@ 738 740 $(QUIET)$(MKDIR) -p $(@D) 739 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-python.xsl $< 741 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) \ 742 --stringparam g_uVBoxCopyrightYear "$(VBOX_C_YEAR)" \ 743 -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-python.xsl $< 740 744 741 745 $(VBOXWEB_WS_PYTHON) \ … … 773 777 $(QUIET)$(RM) -f -- $@ 774 778 $(QUIET)$(MKDIR) -p $(@D) 775 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-php.xsl $< 779 $(QUIET)$(VBOX_XSLTPROC) $(VBOXWEB_XSLTPROC_VERBOSE) \ 780 --stringparam g_uVBoxCopyrightYear "$(VBOX_C_YEAR)" \ 781 -o $@ $(VBOX_PATH_WEBSERVICE)/websrv-php.xsl $< 776 782 777 783 endif # VBOX_ONLY_SDK -
trunk/src/VBox/Main/webservice/websrv-php.xsl
r106061 r106065 41 41 42 42 <xsl:include href="../idl/typemap-shared.inc.xsl" /> 43 44 <!-- Global parameters. --> 45 <xsl:param name="g_uVBoxCopyrightYear">2024</xsl:param> 43 46 44 47 <xsl:variable name="G_setSuppressedInterfaces" … … 373 376 374 377 /* 375 * Copyright (C) 2008- 2023Oracle and/or its affiliates.378 * Copyright (C) 2008-</xsl:text><xsl:value-of select="$g_uVBoxCopyrightYear"/><xsl:text> Oracle and/or its affiliates. 376 379 * 377 380 * This file is part of a free software library; you can redistribute -
trunk/src/VBox/Main/webservice/websrv-python.xsl
r106061 r106065 39 39 40 40 <xsl:include href="../idl/typemap-shared.inc.xsl" /> 41 42 <!-- Global parameters. --> 43 <xsl:param name="g_uVBoxCopyrightYear">2024</xsl:param> 41 44 42 45 <xsl:variable name="G_setSuppressedInterfaces" … … 490 493 491 494 <xsl:template match="/"> 492 <xsl:text># Copyright (C) 2008- 2023Oracle and/or its affiliates.495 <xsl:text># Copyright (C) 2008-</xsl:text><xsl:value-of select="$g_uVBoxCopyrightYear"/><xsl:text> Oracle and/or its affiliates. 493 496 # 494 497 # This file is part of a free software library; you can redistribute -
trunk/src/VBox/Main/xml/VirtualBox-settings.xsd
r106061 r106065 40 40 <xsd:documentation xml:lang="en"> 41 41 Oracle VirtualBox Settings Schema (common definitions). 42 Copyright (C) 2004-202 3Oracle and/or its affiliates.42 Copyright (C) 2004-2024 Oracle and/or its affiliates. 43 43 </xsd:documentation> 44 44 </xsd:annotation> -
trunk/src/VBox/Runtime/r0drv/nt/ntBldSymDb.cpp
r106061 r106065 201 201 static void generateHeader(PRTSTREAM pOut) 202 202 { 203 const char *pszYear = __DATE__; 204 pszYear += strlen(pszYear) - 4; 203 205 RTStrmPrintf(pOut, 204 206 "/* $" "I" "d" ": $ */\n" /* avoid it being expanded */ … … 208 210 "\n" 209 211 "/*\n" 210 " * Copyright (C) 2013- 2023Oracle and/or its affiliates.\n"212 " * Copyright (C) 2013-%s Oracle and/or its affiliates.\n" 211 213 " *\n" 212 214 " * This file is part of VirtualBox base platform packages, as\n" … … 244 246 "#include \"r0drv/nt/symdb.h\"\n" 245 247 "\n" 246 );248 , pszYear); 247 249 248 250 /* -
trunk/src/VBox/ValidationKit/docs/AutomaticTestingRevamp.html
r98107 r106065 1344 1344 <tr class="field"><th class="field-name">Status:</th><td class="field-body">$Id$</td> 1345 1345 </tr> 1346 <tr class="field"><th class="field-name">Copyright:</th><td class="field-body">Copyright (C) 2010-202 3Oracle Corporation.</td>1346 <tr class="field"><th class="field-name">Copyright:</th><td class="field-body">Copyright (C) 2010-2024 Oracle Corporation.</td> 1347 1347 </tr> 1348 1348 </tbody> -
trunk/src/VBox/ValidationKit/docs/AutomaticTestingRevamp.txt
r98107 r106065 1059 1059 1060 1060 :Status: $Id$ 1061 :Copyright: Copyright (C) 2010-202 3Oracle Corporation.1061 :Copyright: Copyright (C) 2010-2024 Oracle Corporation. -
trunk/src/VBox/ValidationKit/docs/TestBoxImaging.html
r98107 r106065 749 749 <tr class="field"><th class="field-name">Status:</th><td class="field-body">$Id$</td> 750 750 </tr> 751 <tr class="field"><th class="field-name">Copyright:</th><td class="field-body">Copyright (C) 2010-202 3Oracle Corporation.</td>751 <tr class="field"><th class="field-name">Copyright:</th><td class="field-body">Copyright (C) 2010-2024 Oracle Corporation.</td> 752 752 </tr> 753 753 </tbody> -
trunk/src/VBox/ValidationKit/docs/TestBoxImaging.txt
r98106 r106065 366 366 367 367 :Status: $Id$ 368 :Copyright: Copyright (C) 2010-202 3Oracle Corporation.368 :Copyright: Copyright (C) 2010-2024 Oracle Corporation. -
trunk/src/VBox/ValidationKit/docs/VBoxAudioValidationKitReadMe.html
r98107 r106065 592 592 <tr class="field"><th class="field-name">Status:</th><td class="field-body">$Id$</td> 593 593 </tr> 594 <tr class="field"><th class="field-name">Copyright:</th><td class="field-body">Copyright (C) 2021-202 3Oracle Corporation.</td>594 <tr class="field"><th class="field-name">Copyright:</th><td class="field-body">Copyright (C) 2021-2024 Oracle Corporation.</td> 595 595 </tr> 596 596 </tbody> -
trunk/src/VBox/ValidationKit/docs/VBoxAudioValidationKitReadMe.txt
r98106 r106065 205 205 206 206 :Status: $Id$ 207 :Copyright: Copyright (C) 2021-202 3Oracle Corporation.207 :Copyright: Copyright (C) 2021-2024 Oracle Corporation. -
trunk/src/VBox/ValidationKit/docs/VBoxValidationKitReadMe.html
r98107 r106065 458 458 <tr class="field"><th class="field-name">Status:</th><td class="field-body">$Id$</td> 459 459 </tr> 460 <tr class="field"><th class="field-name">Copyright:</th><td class="field-body">Copyright (C) 2010-202 3Oracle Corporation.</td>460 <tr class="field"><th class="field-name">Copyright:</th><td class="field-body">Copyright (C) 2010-2024 Oracle Corporation.</td> 461 461 </tr> 462 462 </tbody> -
trunk/src/VBox/ValidationKit/docs/VBoxValidationKitReadMe.txt
r98106 r106065 111 111 112 112 :Status: $Id$ 113 :Copyright: Copyright (C) 2010-202 3Oracle Corporation.113 :Copyright: Copyright (C) 2010-2024 Oracle Corporation. -
trunk/src/VBox/ValidationKit/testmanager/webui/template.html
r98106 r106065 50 50 VBox Test Manager<br/>@@TESTMANAGER_VERSION@@r@@TESTMANAGER_REVISION@@ 51 51 </p> 52 <p>Copyright © 2012-202 3Oracle Corporation</p>52 <p>Copyright © 2012-2024 Oracle Corporation</p> 53 53 </div> 54 54 </div>
Note:
See TracChangeset
for help on using the changeset viewer.