Skip to content

Commit cce289b

Browse files
jnerlichvogella
authored andcommitted
Fix errors in links with the format [http:...](http...)
1 parent 90cea0b commit cce289b

12 files changed

+33
-15
lines changed

docs/FAQ/FAQ_Can_I_use_an_installation_program_to_distribute_my_Eclipse_product.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Once the product has been installed, it is recommended that the Eclipse Update M
1212
See Also:
1313
---------
1414

15-
* InstallShield ([http://www.installshield.com](http://www.installshield.com))
15+
* [InstallShield](https://www.installshield.com)
1616

1717
The referenced IBM alphaWorks Install Toolkit for Java has not be available since April 9, 1998.
1818

docs/FAQ/FAQ_Does_Eclipse_run_on_any_Linux_distribution.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ For historical interest, earlier versions of Eclipse have also been compiled wit
1818
See Also:
1919
---------
2020

21-
* The Eclipse download site ([https://eclipse.org/downloads](https://eclipse.org/downloads))
22-
* IKVM ([http://www.ikvm.net](http://www.ikvm.net))
21+
* [The Eclipse download site ](https://eclipse.org/downloads)
22+
* [IKVM](http://www.ikvm.net)
2323

docs/FAQ/FAQ_How_can_I_generate_HTML_and_toc_xml_files.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ As for the HTML files, you can write them by hand, which is painful. There are m
1010
See Also:
1111
---------
1212

13-
DocBook ([http://www.docbook.org](http://www.docbook.org))
13+
[DocBook](https://www.docbook.org)
14+
1415

1516
[Authoring\_Eclipse\_Help\_Using\_DocBook](/Authoring_Eclipse_Help_Using_DocBook "Authoring Eclipse Help Using DocBook")
1617

docs/FAQ/FAQ_How_can_I_publish_partial_upgrades_(patches)_to_my_product.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
FAQ How can I publish partial upgrades (patches) to my product?
44
===============================================================
55

6-
See the Eclipse Web site ([https://eclipse.org](https://eclipse.org)) and click **Projects > The Eclipse Project > Platform > Update > Development Resources** for elaborate documentation on updating Eclipse-based products.
6+
See the [Eclipse Web site](https://eclipse.org) and click **Projects > The Eclipse Project > Platform > Update > Development Resources** for elaborate documentation on updating Eclipse-based products.
77

88

99

1010
See Also:
1111
---------
1212

13-
[FAQ\_What\_is\_the\_Update_Manager?](./FAQ_What_is_the_Update_Manager.md "FAQ What is the Update Manager?")
13+
[FAQ What is the Update Manager?](./FAQ_What_is_the_Update_Manager.md "FAQ What is the Update Manager?")
1414

1515
[FAQ How do I create an update site?](./FAQ_How_do_I_create_an_update_site.md "FAQ How do I create an update site?")
1616

docs/FAQ/FAQ_How_can_I_search_the_existing_list_of_bugs_in_Eclipse.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
FAQ How can I search the existing list of bugs in Eclipse?
44
==========================================================
55

6-
Visit the Eclipse bugs Web site to search for an existing bug report. The Eclipse Project uses [Bugzilla](http://www.bugzilla.org) for bug reporting and uses it to not only store bug reports but also feature requests, plan items, and architectural discussions. Before posting a bug, see whether it has been posted already. If you find yourself overwhelmed by the Bugzilla query page, you're not alone. Look for the link at the bottom of the query page, **Give me a clue about how to use this form**.
6+
Visit the Eclipse bugs Web site to search for an existing bug report.
7+
The Eclipse Project uses [Bugzilla](http://www.bugzilla.org) for bug reporting and uses it to not only store bug reports but also feature requests, plan items, and architectural discussions. Before posting a bug, see whether it has been posted already. If you find yourself overwhelmed by the Bugzilla query page, you're not alone. Look for the link at the bottom of the query page, **Give me a clue about how to use this form**.
78

89
See Also:
910
---------
1011

11-
* Eclipse Bugzilla ([http://bugs.eclipse.org](http://bugs.eclipse.org))
12+
* [Eclipse Bugzilla](http://bugs.eclipse.org)
1213

docs/FAQ/FAQ_How_do_I_add_a_library_to_the_classpath_of_a_plug-in.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ that is responsible for starting the OSGi framework. Typically you will not want
4141

4242
Using a separate plug-in to contain a library is the most powerful approach because it means that other plug-ins can make use of that library without having to load your plug-in or add the library to their own classpath explicitly. This approach is used throughout the Eclipse Project to add third-party libraries, such as Xerces, Ant, and JUnit.
4343

44-
Of course, because this is Java, there is always a way to load classes outside the scope of your classpath. You can instantiate your own class loader that knows how to find the code you need and use that to load other classes. This is a very powerful mechanism because it can change dynamically at runtime, and it can even load classes that aren't in your file system, such as classes in a database or even classes generated on the fly. Manipulating class loaders is a bit outside the scope of this book, but plenty of information is available in Java programming books or at the Java Web site ([http://java.sun.com](http://java.sun.com)).
44+
Of course, because this is Java, there is always a way to load classes outside the scope of your classpath. You can instantiate your own class loader that knows how to find the code you need and use that to load other classes. This is a very powerful mechanism because it can change dynamically at runtime, and it can even load classes that aren't in your file system, such as classes in a database or even classes generated on the fly. Manipulating class loaders is a bit outside the scope of this book, but plenty of information is available in Java programming books or at the [Java Web site](http://java.sun.com).
4545

4646
See Also:
4747
---------

docs/FAQ/FAQ_How_do_I_upgrade_Eclipse.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,8 +96,7 @@ Upgrading other features (like CDT, PDT, WTP...) can be done without the need to
9696
See Also:
9797
---------
9898

99-
* [FAQ\_How\_do\_I\_update_Eclipse?](./FAQ_How_do_I_update_Eclipse.md "FAQ How do I update Eclipse?")
100-
* [FAQ\_What\_is\_the\_Update_Manager?](./FAQ_What_is_the_Update_Manager.md "FAQ What is the Update Manager?")
99+
* [FAQ What is the Update Manager?](./FAQ_What_is_the_Update_Manager.md "FAQ What is the Update Manager?")
101100
* [How to upgrade Eclipse for Java EE Developers from Juno to Kepler?](https://stackoverflow.com/questions/17337526/how-to-upgrade-eclipse-for-java-ee-developers-from-juno-to-kepler)
102101

103102

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
2+
3+
FAQ Is Eclipse 3.0 going to break all of my old plug-ins?
4+
=========================================================
5+
6+
No. Many rumors and discussions circulated during the development of Eclipse 3.0 about how compatible it would be with plug-ins written from Eclipse 2.1 or earlier. Clearly, in the large community of Eclipse plug-in writers, many would be greatly inconvenienced by any breaking changes to existing API. On the other hand, rigidly maintaining API across all releases can be a great barrier to ongoing innovation in the platform. Eventually, a balance was struck that allowed for some well-justified breaking changes, while also providing a compatibility story to allow old plug-ins to continue running on Eclipse 3.0. What does this mean if you have written plug-ins targeting older versions of the platform?
7+
8+
If you do not want to take advantage of new capabilities in Eclipse 3.0, you don't need to do anything. The platform guarantees 99 percent binary compatibility with older versions of Eclipse. Thus, most old plug-ins that used only legal API in previous releases will continue working when installed in Eclipse 3.0. If you find cases in which this is not true, you are encouraged to enter bug reports so that the compatibility support can be fixed.
9+
10+
So far it sounds too easy, right? Well, as the saying goes, "nothing ventured, nothing gained."; If you do want to take advantage of new Eclipse 3.0 API, you will need to do some work to port your plug-in to 3.0. In most cases, the amount of work required is minimal, and the Eclipse plug-in development tools provide utilities for automatically migrating your plug-in manifest file for 3.0. All the required migration is carefully described in the _Eclipse 3.0 Porting Guide_, found in the _Platform Plug-in Developer's Guide_ in the Eclipse help system. If you find that your old code is not compiling or running when being developed against Eclipse 3.0, consult the guide to see what changes might have affected you.
11+
12+
See Also:
13+
---------
14+
15+
[FAQ How do I prevent my plug-in from being broken when I update Eclipse?](./FAQ_How_do_I_prevent_my_plug-in_from_being_broken_when_I_update_Eclipse.md "FAQ How do I prevent my plug-in from being broken when I update Eclipse?")
16+

docs/FAQ/FAQ_What_Eclipse_mailing_lists_are_available.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ Although Eclipse newsgroups are intended for users and extenders of the platform
1111
See Also:
1212
---------
1313

14-
* The Eclipse mailing list page ([https://eclipse.org/mail](https://eclipse.org/mail))
14+
* [The Eclipse mailing list page ](https://eclipse.org/mail)
1515

docs/FAQ/FAQ_What_books_have_been_written_on_Eclipse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ FAQ What books have been written on Eclipse?
55

66
In June 2004, books on Eclipse, other than this one, included the following:
77

8-
* Frank Budinsky et al., _Eclipse Modeling Framework_, Addison-Wesley, 2004 ([http://www.aw.com](http://www.aw.com))
8+
* Frank Budinsky et al., _Eclipse Modeling Framework_, Addison-Wesley, 2004
99

1010
* Berthold Daum, _Eclipse 2 for Java Developers_, Wiley, 2003 ([http://www.wileyeurope.com](http://www.wileyeurope.com))
1111

0 commit comments

Comments
 (0)