This project is mirrored from https://gitee.com/mirrors/intellij-community.git. Pull mirroring failed .
Repository mirroring has been paused due to too many failed attempts. It can be resumed by a project maintainer.
Last successful update .
  1. 17 Oct, 2016 28 commits
  2. 16 Oct, 2016 7 commits
  3. 15 Oct, 2016 2 commits
  4. 14 Oct, 2016 3 commits
    • Maxim.Mossienko's avatar
      build package nodes in background · 33a22cef
      Maxim.Mossienko authored
      33a22cef
    • Andrey Vlasovskikh's avatar
      Remove any Python SDK roots found in project roots (PY-5459) · bc868e20
      Andrey Vlasovskikh authored
      It's quite common to add the project root to sys.path in order to make
      it available in other Python projects at run-time. Unfortunately, it
      breaks excluded directories settings since indexing SDK roots in the
      IntelliJ platform ignores excluded directories since they are
      project-level, not application-level.
      
      Since for most setups having a directory in both SDK roots and project
      (content and source) roots is redundant, we now delete it from the SDK
      roots. The user can add it back manually via interpreters settings in
      PyCharm and via module dependencies in IntelliJ if they need this entry
      in their SDK roots.
      bc868e20
    • Andrey Vlasovskikh's avatar
      Add restored sdk root virtual file instead of original file · 87ccb252
      Andrey Vlasovskikh authored
      We check for the restored root file being contained in the excluded
      paths and then we used to put the original file instead of the restored
      one. For example, the restored file a Jar FS for *.egg archive was
      ignored and the original file was used instead. This resulted in the
      wrong assumption that our paths had been modified.
      87ccb252