The error you're seeing is because you haven't included authentication under toctree. See http://sphinx-doc.org/concepts.html#dir-toctree
it should be: .. toctree:: :maxdepth: 2 authentication This will create your link to items in the authentication.rst document (instead of :doc:`Authentzaione`). >From the linked docs: In the end, all documents in the *source directory*<http://sphinx-doc.org/glossary.html#term-source-directory> (or subdirectories) must occur in some toctree directive; Sphinx will emit a warning if it finds a file that is not included, because that means that this file will not be reachable through standard navigation. Use unused_docs<http://sphinx-doc.org/config.html#confval-unused_docs> to explicitly exclude documents from building, and exclude_trees<http://sphinx-doc.org/config.html#confval-exclude_trees> to exclude whole directories. On Tue, Dec 3, 2013 at 10:06 AM, Mirko Lazzarini <[email protected]>wrote: > I don't understand what is my error, i haven't modindex.html and > genindex.html is empty. > > This is my index.rst > > Welcome to iGate's documentation! > ================================= > > .. toctree:: > :maxdepth: 2 > > Struttura iGate > --------------- > > * :doc:`Autenticazione <authentication>` > > Indices and tables > ================== > > * :ref:`genindex` > * :ref:`modindex` > * :ref:`search` > > And this is my authentication.rst > > Autenticazione > ============== > > Login > ----- > > Per accedere all'applicazione iGate aprire il proprio browser e collegarsi > all'indirizzo: http://igate.gm.porto.laspezia.priv > > All'apertura della pagina compare la maschera di autenticazione. > > Inserire le proprie credenziali ricevute dal personale Infoporto e > cliccare il pulsante **Login** per accedere all'applicazione. > > .. image:: images/login.png > > -- > You received this message because you are subscribed to the Google Groups > "sphinx-users" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/sphinx-users. > For more options, visit https://groups.google.com/groups/opt_out. > -- You received this message because you are subscribed to the Google Groups "sphinx-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/sphinx-users. For more options, visit https://groups.google.com/groups/opt_out.
