From 1d468dd09334e056b22de206b8f7c968c608a9a4 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Fri, 8 Aug 2014 11:05:04 +0200 Subject: [PATCH] removed references to documentation from external sources --- .travis.yml | 1 - bundles/index.rst | 13 ------------- bundles/map.rst.inc | 5 ----- contributing/documentation/format.rst | 1 - index.rst | 23 ----------------------- install.sh | 24 ------------------------ 6 files changed, 67 deletions(-) delete mode 100644 bundles/index.rst delete mode 100644 bundles/map.rst.inc delete mode 100644 install.sh diff --git a/.travis.yml b/.travis.yml index 9afcdfaaff4..e2ff811df92 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,6 @@ python: - "2.7" install: - - "bash install.sh" - "pip install -q -r requirements.txt --use-mirrors" script: sphinx-build -nW -b html -d _build/doctrees . _build/html diff --git a/bundles/index.rst b/bundles/index.rst deleted file mode 100644 index d8f1298f5d8..00000000000 --- a/bundles/index.rst +++ /dev/null @@ -1,13 +0,0 @@ -The Symfony Standard Edition Bundles -==================================== - -.. toctree:: - :hidden: - - SensioFrameworkExtraBundle/index - SensioGeneratorBundle/index - DoctrineFixturesBundle/index - DoctrineMigrationsBundle/index - DoctrineMongoDBBundle/index - -.. include:: /bundles/map.rst.inc diff --git a/bundles/map.rst.inc b/bundles/map.rst.inc deleted file mode 100644 index 92d742ce70c..00000000000 --- a/bundles/map.rst.inc +++ /dev/null @@ -1,5 +0,0 @@ -* :doc:`SensioFrameworkExtraBundle ` -* :doc:`SensioGeneratorBundle ` -* :doc:`DoctrineFixturesBundle ` -* :doc:`DoctrineMigrationsBundle ` -* :doc:`DoctrineMongoDBBundle ` diff --git a/contributing/documentation/format.rst b/contributing/documentation/format.rst index 491d27df407..0aabcdaae72 100644 --- a/contributing/documentation/format.rst +++ b/contributing/documentation/format.rst @@ -165,7 +165,6 @@ To test documentation before a commit: * Install `Sphinx`_; * Install the Sphinx extensions using git submodules: ``git submodule update --init``; -* (Optionally) Install the bundle docs and CMF docs: ``bash install.sh``; * Run ``make html`` and view the generated HTML in the ``build`` directory. .. _reStructuredText: http://docutils.sourceforge.net/rst.html diff --git a/index.rst b/index.rst index ed63453278f..47d9238eaeb 100644 --- a/index.rst +++ b/index.rst @@ -65,29 +65,6 @@ Get answers quickly with reference documents: .. include:: /reference/map.rst.inc -Bundles -------- - -The Symfony Standard Edition comes with some bundles. Learn more about them: - -.. toctree:: - :hidden: - - bundles/index - -.. include:: /bundles/map.rst.inc - -CMF ---- - -The Symfony CMF project makes it easier for developers to add CMS functionality -to applications built with the Symfony2 PHP framework. - -.. toctree:: - :hidden: - - cmf/index - Contributing ------------ diff --git a/install.sh b/install.sh deleted file mode 100644 index c50451959a0..00000000000 --- a/install.sh +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -function sparse_checkout { - mkdir sparse_checkout - cd sparse_checkout - git init - git config core.sparsecheckout true - git remote add -f origin http://github.com/$1/$2 - echo Resources/doc > .git/info/sparse-checkout - git checkout master - rm -rf ../bundles/$2 - mv Resources/doc ../bundles/$2 - cd .. - rm -rf sparse_checkout -} - -sparse_checkout sensiolabs SensioFrameworkExtraBundle -sparse_checkout sensiolabs SensioGeneratorBundle -sparse_checkout doctrine DoctrineFixturesBundle -sparse_checkout doctrine DoctrineMigrationsBundle -sparse_checkout doctrine DoctrineMongoDBBundle -rm -rf cmf -git clone http://github.com/symfony-cmf/symfony-cmf-docs cmf -