From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0035CA034E; Wed, 27 May 2020 14:17:29 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A11441D915; Wed, 27 May 2020 14:17:28 +0200 (CEST) Received: from us-smtp-1.mimecast.com (us-smtp-delivery-1.mimecast.com [205.139.110.120]) by dpdk.org (Postfix) with ESMTP id E0E6C1D5E1 for ; Wed, 27 May 2020 14:17:26 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1590581846; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=MZGD0UyX1XSEQ/P4X+pYoippY73tUPrQTV7AHB4JZUs=; b=Bte1a7ZwWik3vbctHy2KMt3hwXKjjgst94WA1JD+jmEmPvrnt2xX0faT7tk/g1YuFjWOW8 IC3JnNGV3rVk5K7WBvPDw5oXPNiSNAlbJj1U3prxB+pSm+sCBqolpejawzr7b2C1dRhUF4 yWmc7fbOJJrhALI0nk+ZnNc/qHaLTpk= Received: from mail-ua1-f70.google.com (mail-ua1-f70.google.com [209.85.222.70]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-144-YbVvnMiSNtGgr9yB2RSaOA-1; Wed, 27 May 2020 08:17:24 -0400 X-MC-Unique: YbVvnMiSNtGgr9yB2RSaOA-1 Received: by mail-ua1-f70.google.com with SMTP id q15so9356037uao.9 for ; Wed, 27 May 2020 05:17:24 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=MZGD0UyX1XSEQ/P4X+pYoippY73tUPrQTV7AHB4JZUs=; b=DnsjiAVtZx2x8x9uiydb9Heh4ZM84XJsvOt8YExdku0eSw1tLXEvGqYyf30xvVqZb6 aLACVD/FHJRUPSZ1gZ6yqXCV7budxx7oMpPSQc23YwU2GcRWqkrJs/82bmxAiGi5Oyja eXPhzGup4m/bPNMti5KiwRwTjObF5K7tRcBf0oligHkytpKJ7edsSx35m8z3KxidZIZg Em98HL27gwCbDq//o1ASl2JUd9TkyNXyjSg/+VN+4stobsM2Gt5eiK9lT03hUkKrJ/pY En6UtZObDgi9uxuKgjBs5XEb759n7Kjh7asaWBe5hBgJsZpk5j5UUYtTjWAJWQexprhr M6Aw== X-Gm-Message-State: AOAM533TH/5yKB62vzEu68LBIiWOHVhJofukhZW2GtstcNpmLeaQo1LD /O8lR7wR66yPLpYPqA6GQX2CMMtAqKz9TBpOBJk/EMUDZelMKcilmzm6WeGSnJ31EO2FjONsVR3 ZxpZ/yhco6/a286FJnVo= X-Received: by 2002:a05:6102:1158:: with SMTP id j24mr857652vsg.141.1590581843949; Wed, 27 May 2020 05:17:23 -0700 (PDT) X-Google-Smtp-Source: ABdhPJwGxAYpT1WPkUfIsbBN1rNym5l/g7kCKrp8Iyy+B05uH6/88R79M1U97yYxqcI0wHI7LD9/dx5nbd7vxRArmPc= X-Received: by 2002:a05:6102:1158:: with SMTP id j24mr857634vsg.141.1590581843637; Wed, 27 May 2020 05:17:23 -0700 (PDT) MIME-Version: 1.0 References: <20200526202921.70718-1-thomas@monjalon.net> In-Reply-To: <20200526202921.70718-1-thomas@monjalon.net> From: David Marchand Date: Wed, 27 May 2020 14:17:12 +0200 Message-ID: To: Thomas Monjalon Cc: dev , Jerin Jacob Kollanukkaran , Luca Boccassi , Kevin Traynor , dpdk stable , John McNamara , Marko Kovacevic X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH] doc: fix API index X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Tue, May 26, 2020 at 10:29 PM Thomas Monjalon wrote: > > With Doxygen 1.8.18, a warning appears when tagging > the main markdown header with {#index}. > That's why the tag has been removed from the API index in DPDK 20.05. > Unfortunately it makes the index page classified as a standard > "related page" instead of being the "main page". > > The tag {#mainpage} could be used instead of {#index}. > Another solution, chosen here, is to specify the main page file > in the Doxygen configuration with the variable USE_MDFILE_AS_MAINPAGE. > > Fixes: 76fb8fc486f9 ("doc: fix build with doxygen 1.8.18") > Cc: stable@dpdk.org > > Signed-off-by: Thomas Monjalon I don't have a system with 1.8.18. With 1.8.15 (fc31), api/index.html is again populated with this page and links to this page are restored. Tested-by: David Marchand -- David Marchand