broken links

This commit is contained in:
Anna Bulenkova 2015-05-19 19:31:46 +02:00
parent db7d44985f
commit 5754f38e5b
4 changed files with 17 additions and 17 deletions

View File

@ -13,14 +13,14 @@ and then return to this document.
This topic covers the following subjects:
* [General Threading Rules](general_topics/architectural_overview/general_threading_rules.html)
* [General Threading Rules](architectural_overview/general_threading_rules.html)
* [Virtual Files](general_topics/architectural_overview/virtual_file.html)
* [Virtual Files](architectural_overview/virtual_file.html)
* [Documents](general_topics/architectural_overview/documents.html)
* [Documents](architectural_overview/documents.html)
* [PSI Files](general_topics/architectural_overview/psi_files.html)
* [PSI Files](architectural_overview/psi_files.html)
* [File View Providers](general_topics/architectural_overview/file_view_providers.html)
* [File View Providers](architectural_overview/file_view_providers.html)
* [Psi Elements](general_topics/architectural_overview/psi_elements.html)
* [Psi Elements](architectural_overview/psi_elements.html)

View File

@ -53,7 +53,7 @@ The ```VirtualFileManager.addVirtualFileListener()``` method allows you to recei
To provide an alternative file system implementation (for example, an FTP file system), implement the
[VirtualFileSystem](https://github.com/JetBrains/intellij-community/blob/master/platform/core-api/src/com/intellij/openapi/vfs/VirtualFileSystem.java)
class (most likely you'll also need to implement ```VirtualFile```), and register your implementation as an
[application component](http://www.jetbrains.org/intellij/sdk/docs/plugin_components.html).
[application component](http://www.jetbrains.org/intellij/sdk/docs/basics/plugin_structure/plugin_components.html).
To hook into operations performed in the local file system (for example, if you deal with development of a version control system integration that needs custom rename/move handling), implement the
[LocalFileOperationsHandler](https://github.com/JetBrains/intellij-community/blob/master/platform/platform-api/src/com/intellij/openapi/vfs/LocalFileOperationsHandler.java)
interface and register it through the```LocalFileSystem.registerAuxiliaryFileOperationsHandler``` method.
@ -61,5 +61,5 @@ interface and register it through the```LocalFileSystem.registerAuxiliaryFileOpe
#### What are the rules for working with it?
See
[IntelliJ Platform Virtual File System](http://www.jetbrains.org/intellij/sdk/docs/virtual_file_system.html)
[IntelliJ Platform Virtual File System](http://www.jetbrains.org/intellij/sdk/docs/basics/virtual_file_system.html)
for a detailed description of the VFS architecture and usage rules.

View File

@ -7,18 +7,18 @@ title: Plugin Structure
This document is focused on the plugin system structure and plugin lifecycle.
The following subjects are covered:
* [Plugin Content](general_topics/plugin_structure/plugin_content.html)
* [Plugin Content](plugin_structure/plugin_content.html)
* [Plugin Class Loaders](general_topics/plugin_structure/plugin_class_loaders.html)
* [Plugin Class Loaders](plugin_structure/plugin_class_loaders.html)
* [Plugin Components](general_topics/plugin_structure/plugin_components.html)
* [Plugin Components](plugin_structure/plugin_components.html)
* [Plugin Extensions and Extension Points](general_topics/plugin_structure/plugin_extensions_and_extension_points.html)
* [Plugin Extensions and Extension Points](plugin_structure/plugin_extensions_and_extension_points.html)
* [Plugin Actions](general_topics/plugin_structure/plugin_actions.html)
* [Plugin Actions](plugin_structure/plugin_actions.html)
* [Plugin Services](general_topics/plugin_structure/plugin_services.html)
* [Plugin Services](plugin_structure/plugin_services.html)
* [Plugin Configuration File](general_topics/plugin_structure/plugin_configuration_file.html)
* [Plugin Configuration File](plugin_structure/plugin_configuration_file.html)
* [Plugin Dependencies](general_topics/plugin_structure/plugin_dependencies.html)
* [Plugin Dependencies](plugin_structure/plugin_dependencies.html)

View File

@ -29,7 +29,7 @@ Custom language support provides basic functionality for working with a particul
* Intention actions
Refer to the
[Custom Language Support Tutorial](tutorials/custom_language_support_tutorial.html)
[Custom Language Support Tutorial](/tutorials/custom_language_support_tutorial.html)
to learn more about the topic.
## Framework Integration