Skip to content

Commit 5b6baf6

Browse files
committed
Small fixes + using target=_blank for external pages.
1 parent cc8164e commit 5b6baf6

15 files changed

+44
-49
lines changed

Diff for: BugTracker.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ underMenu: Development
77
The INET project uses the OMNeT++ Bug Tracker at **bugs.omnetpp.org**.
88

99
<ul>
10-
<a class="btn btn-primary" href="http://dev.omnetpp.org/bugs/view_all_bug_page.php?project_id=2">Open the INET Bug Tracker</a>
10+
<a class="btn btn-primary" href="http://dev.omnetpp.org/bugs/view_all_bug_page.php?project_id=2" target="_balnk">Open the INET Bug Tracker</a>
1111
</ul>
1212

1313
Once there, choose *INET Framework* in the *Project* combo in the top right corner if not automatically chosen.
@@ -18,8 +18,8 @@ Before submitting the bug report, please check that the problem was not reported
1818

1919
If you haven't submitted a bug report before, please read the following pages carefully:
2020

21-
* [Bug Writing Guidelines][2]
22-
* [How to Report Bugs Effectively][3]
21+
* [Bug Writing Guidelines][2]{:target="_blank"}
22+
* [How to Report Bugs Effectively][3]{:target="_blank"}
2323

2424
[2]: https://bugs.eclipse.org/bugs/page.cgi?id=bug-writing.html
2525
[3]: http://www.chiark.greenend.org.uk/%7Esgtatham/bugs.html

Diff for: CodingConventions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Rules for variable names, function names, class names and other identifiers.
3333

3434
* Add copyright headers at the top of each source file. Use `//` comments for consistency with NED and MSG files.
3535
* Generally, use `//` comments in the code (except for Doxygen comments)
36-
* For documentation comments (Doxygen and NED), see [Documentation Guidelines][#documentation-guidelines]
36+
* For documentation comments (Doxygen and NED), see [Documentation Guidelines](DocumentationGuidelines.html)
3737

3838
## Class Layout
3939

Diff for: ComponentAdvisors.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ people:
1111
dreibholz: <a href="https://github.com/dreibh">Thomas Dreibholz</a>
1212
dhodson: <a href="https://github.com/doughodson">Doug Hodson</a>
1313
jmaureir: <a href="https://github.com/jmaureir">Juan-Carlos Maureira</a>
14+
kristjanvj: <a href="https://github.com/kristjanvj">Kristjan Valur Jonsson</a>
1415
kyeongsoo: <a href="https://github.com/kyeongsoo">Kyeong Soo (Joseph) Kim</a>
1516
levy: <a href="https://github.com/levy">Levente M&eacute;sz&aacute;ros</a>
1617
lmfeeney: <a href="https://github.com/TODO">Laura Marie Feeney</a>
@@ -41,7 +42,7 @@ developers/maintainers by advising them.
4142
Applications;
4243
VoIPStream: zbojthe;
4344
SimpleVoIP: avirdis;
44-
HttpTools: ;
45+
HttpTools: kristjanvj;
4546
Transport Layer;
4647
TCP, UDP: tuexen, becke, reschka;
4748
TCP (lwIP): zbojthe;

Diff for: ContribGettingStarted.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@ INET is developed using the *git* revision control system, with the repository h
1010

1111
<div class="alert alert-info">
1212
{% capture tmp %}
13-
**New to git?** Read about it on its [web site](http://git-scm.com),
14-
from the [GitHub help](https://help.github.com/articles/good-resources-for-learning-git-and-github/),
15-
or [try it hands-on in a terminal](http://try.github.com/).
13+
**New to git?** Read about it on its [web site](http://git-scm.com){:target="_blank"},
14+
from the [GitHub help](https://help.github.com/articles/good-resources-for-learning-git-and-github/){:target="_blank"},
15+
or [try it hands-on in a terminal](http://try.github.com/){:target="_blank"}.
1616
{% endcapture %} {{ tmp | markdownify }}
1717
</div>
1818

@@ -40,9 +40,9 @@ We recommend the following workflow:
4040
a new component, you can take inspiration from existing parts of the framework.
4141
* If you have questions or something to discuss, don't hesitate to post to the mailing list.
4242

43-
4. When you are ready to submit your changes, contact us via email, or send us
44-
a pull request on GitHub. If the original branch (`master` or `integration`) has
45-
moved on in the meantime, you should rebase your topic branch on top of it.
43+
4. When you are ready to submit your changes, send us a pull request on GitHub.
44+
If the original branch (`master` or `integration`) has moved on in the meantime,
45+
you should rebase your topic branch on top of it.
4646

4747
Pages under the *Development* menu give you general guidance on other topics.
4848

Diff for: Extensions.md

+7-15
Original file line numberDiff line numberDiff line change
@@ -6,26 +6,18 @@ underMenu: Documentation
66

77
There are several INET-based model frameworks, maintained by independent research groups:
88

9-
* [OverSim][1] is an open-source overlay and peer-to-peer network simulation framework for the OMNeT++ simulation environment. The simulator contains several models for structured (e.g. Chord, Kademlia, Pastry) and unstructured (e.g. GIA) P2P systems and overlay protocols.
9+
* [OverSim](http://www.oversim.org){:target="_blank"} is an open-source overlay and peer-to-peer network simulation framework for the OMNeT++ simulation environment. The simulator contains several models for structured (e.g. Chord, Kademlia, Pastry) and unstructured (e.g. GIA) P2P systems and overlay protocols.
1010

11-
* [Veins][2] is an open source Inter-Vehicular Communication (IVC) simulation framework composed of an event-based network simulator and a road traffic microsimulation model.
11+
* [Veins](http://veins.car2x.org/){:target="_blank"} is an open source Inter-Vehicular Communication (IVC) simulation framework composed of an event-based network simulator and a road traffic microsimulation model.
1212

13-
* [SimuLTE][3] is LTE user plane simulation model, with eNodeB and UE models.
13+
* [SimuLTE](http://github.com/inet-framework/simulte){:target="_blank"} is LTE user plane simulation model, with eNodeB and UE models.
1414

15-
* [INETMANET][4] is fork of INET with experimental features related to mobile and ad-hoc networks.
15+
* [INETMANET](http://github.com/aarizaq/inetmanet-2.0){:target="_blank"} is fork of INET with experimental features related to mobile and ad-hoc networks.
1616

17-
* [MiXiM][5] is not an INET extension, but an independent OMNeT++ modeling framework that focuses on the wireless physical, data link and networ layers. MiXiM can be used together with INET. Newer versions of INET (from 2.99.0 up) have the features of MiXiM, and much of the MiXiM code integrated.
17+
* [MiXiM](https://github.com/omnetpp/mixim){:target="_blank"} is not an INET extension, but an independent OMNeT++ modeling framework that focuses on the wireless physical, data link and networ layers. MiXiM can be used together with INET. Newer versions of INET (from 2.99.0 up) have the features of MiXiM, and much of the MiXiM code integrated.
1818

19-
* The [Vehicular Networks and Distributed Control Systems][6] page lists extensions related to the automotive industry.
19+
* The [Vehicular Networks and Distributed Control Systems](http://vehicular.omnetpp.org){:target="_blank"} page lists extensions related to the automotive industry.
2020

2121
* Several extensions are now part of INET (xMIPv6, HTTPTools, VoIPTools, etc.)
2222

23-
**More INET extensions** can be found in the [OMNeT++ Model Catalog][7], such as ReaSE, HIPSim++, INET-HNRL, EPON, mCoA++, EBitSim, INET/Quagga, and others.
24-
25-
[1]: http://www.oversim.org
26-
[2]: http://veins.car2x.org/
27-
[3]: http://github.com/inet-framework/simulte
28-
[4]: http://github.com/aarizaq/inetmanet-2.0
29-
[5]: http://mixim.sourceforge.net
30-
[6]: http://vehicular.omnetpp.org
31-
[7]: http://www.omnetpp.org/models/catalog
23+
**More INET extensions** can be found in the [OMNeT++ Model Catalog](http://www.omnetpp.org/models/catalog){:target="_blank"}, such as ReaSE, HIPSim++, INET-HNRL, EPON, mCoA++, EBitSim, INET/Quagga, and others.

Diff for: GettingStarted.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ the components INET provides, you need to study the documentation.
5353
### Asking for Help
5454

5555
When you are stuck, you can ask for help on the
56-
<a href="https://groups.google.com/forum/?fromgroups#!forum/omnetpp">OMNeT++ mailing list</a>.
56+
<a href="https://groups.google.com/forum/?fromgroups#!forum/omnetpp" target="_blank">OMNeT++ mailing list</a>.
5757
Doing your research before posting and being specific will greatly increase
5858
the chance that you'll receive a useful answer.
5959

Diff for: Installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ underMenu: Documentation
55
---
66

77
<div class="alert alert-warning">
8-
<p><b>Prerequisite:</b> Download and install OMNeT++ from <a href="http://omnetpp.org">omnetpp.org</a>.</p>
8+
<p><b>Prerequisite:</b> Download and install OMNeT++ from <a href="http://omnetpp.org" target="_blank">omnetpp.org</a>.</p>
99
</div>
1010

1111
## Automatic Installation

Diff for: Introduction.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ underMenu: Documentation
66

77
### A Network Simulator
88

9-
INET Framework is an open-source model library for the OMNeT++ simulation
10-
environment. It provides protocols, agents and other models for researchers
11-
and students working with communication networks. INET is especially useful
9+
INET Framework is an open-source model library for the [OMNeT++ simulation
10+
environment](http://omnetpp.org){:target="_blank"}.
11+
It provides protocols, agents and other models for researchers and
12+
students working with communication networks. INET is especially useful
1213
when designing and validating new protocols, or exploring new or exotic
1314
scenarios.
1415

Diff for: MailingList.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ INET Framework developers and contributors discuss matters in the
88
**[inetframework-contrib](mailto:[email protected])** Google Group.
99

1010
<ul>
11-
<a class="btn btn-primary" href="http://groups.google.com/group/inetframework-contrib">Visit the forum on Google Groups</a>
11+
<a class="btn btn-primary" href="http://groups.google.com/group/inetframework-contrib" target="_balnk">Visit the forum on Google Groups</a>
1212
</ul>
1313

1414
If you are interested in INET more than just doing a quick simulation with it,

Diff for: Repository.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ underMenu: Development
77
The INET Framework lives in the **inet-framework/inet** repository on GitHub.
88

99
<ul>
10-
<a class="btn btn-primary" href="http://www.github.com/inet-framework/inet">Browse Repository on GitHub</a>
10+
<a class="btn btn-primary" href="http://www.github.com/inet-framework/inet" target="_blank">Browse Repository on GitHub</a>
1111
</ul>
1212

1313
Branches:
1414

1515
* `master`: Holds the current stable version of INET (as of 2014, version 2.x).
16-
* `integration`: Contains the codebase for the next major version of INET as it is being developed (as of 2014, version, version 3.0)
16+
* `integration`: Contains the codebase for the next major version of INET as it is being developed (as of 2014, version 3.0)
1717
* `topic/<name>`: Temporary branches opened for the development of a particular feature. Topic branches may be deleted, rebased, or their history rewritten at any time.
1818
* `attic/<name>`: Abandoned topic branches. They may be dead, or just resting.
1919

Diff for: SubmittingCode.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ underMenu: Development
77
When you have changes that you'd like to be included in the INET Framework, here is the process:
88

99
1. Prepare your changes (see checklist below)
10-
2. Submit your changes. You can send a pull request on GitHub, or send patches via email.
10+
2. Submit your changes. You can send a pull request on GitHub.
1111
3. Your changes will be reviewed (see details below)
1212
4. When the issues found during review have been resolved, your changes will be merged by the core team
1313

Diff for: TeachingResources.md

+10-10
Original file line numberDiff line numberDiff line change
@@ -11,36 +11,36 @@ OMNeT++ and INET Framework is used in teaching at various universities.
1111
Courses:
1212

1313
* *Wireless Network Security*, Wireless Network and System Security Group, Carnegie-Mellon University (Silicon Valley Campus), 2014
14-
([course][cmu-web], [slides1][cmu-sli1], [slides2][cmu-sli2])
14+
([course][cmu-web]{:target="_blank"}, [slides1][cmu-sli1]{:target="_blank"}, [slides2][cmu-sli2]{:target="_blank"})
1515

1616
* *Simulation and Evaluation of Computer Networks (SECoN)*, TU Darmstadt, Germany, 2014
17-
([course][darm-web], [slides][darm-sli])
17+
([course][darm-web]{:target="_blank"}, [slides][darm-sli]{:target="_blank"})
1818

1919
* *Vehicular Networks (C2X)*, Computer and Communication Systems Group, University of Innsbruck, Austria, 2013
20-
([course][css-web], [slides][css-sli], [lab][ccs-lab])
20+
([course][css-web]{:target="_blank"}, [slides][css-sli]{:target="_blank"}, [lab][ccs-lab]{:target="_blank"})
2121

2222
* *Methods and Tools for Network Systems*, Aalto University, Finland, 2014
23-
([course][aalto-web], [slides][aalto-sli])
23+
([course][aalto-web]{:target="_blank"}, [slides][aalto-sli]{:target="_blank"})
2424

2525
* *Mobile and Wireless Networks*, GRC, Universitat Politecnica de Valencia, Spain, 2013
26-
([course][upv-web], [lab1][upv-lab1], [lab2][upv-lab2], [lab3][upv-lab3])
26+
([course][upv-web]{:target="_blank"}, [lab1][upv-lab1]{:target="_blank"}, [lab2][upv-lab2]{:target="_blank"}, [lab3][upv-lab3]{:target="_blank"})
2727

2828
* *Performance Evaluation*, University of Pisa, Italy, 2014
29-
([course][unipi-web], [slides1][unipi-sli1], [lab1][unipi-lab1], [slides2][unipi-sli2], [lab2][unipi-lab2])
29+
([course][unipi-web]{:target="_blank"}, [slides1][unipi-sli1]{:target="_blank"}, [lab1][unipi-lab1]{:target="_blank"}, [slides2][unipi-sli2]{:target="_blank"}, [lab2][unipi-lab2]{:target="_blank"})
3030

3131
Other materials:
3232

3333
* Tufts Wireless Laboratory, Tufts University, MA
34-
([slides1][tufts-sli1], [slides2][tufts-sli2])
34+
([slides1][tufts-sli1]{:target="_blank"}, [slides2][tufts-sli2]{:target="_blank"})
3535

3636
* Internet Research Lab, Brigham Young University, UT
37-
([tutorial][byu-tut], [lab][byu-lab])
37+
([tutorial][byu-tut]{:target="_blank"}, [lab][byu-lab]{:target="_blank"})
3838

3939
* Christian Timmerer, Multimedia Communication Group, Alpen-Adria-Universitaet Klagenfurt, Austria, 2014.
40-
([slides][timm-sli])
40+
([slides][timm-sli]{:target="_blank"})
4141

4242
* *Middleware* course, University of Luxemburg, Luxemburg, 2008
43-
([lab][unilu-lab])
43+
([lab][unilu-lab]{:target="_blank"})
4444

4545
{% include links.md %}
4646

Diff for: Tutorials.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ underMenu: Documentation
77
Selected tutorial slides:
88

99
* OMNeT++ and INET Tutorial from Brian Ricks, Carnegie-Mellon University, 2014
10-
([part1][cmu-sli1], [part2][cmu-sli2])
10+
([part1][cmu-sli1]{:target="_blank"}, [part2][cmu-sli2]{:target="_blank"})
1111

1212
Selected YouTube videos:
1313

14-
* *"OMNeT++ TCP Congestion Window Test"* ([video](http://www.youtube.com/watch?v=m2n5vZQ4030))
14+
* *"OMNeT++ TCP Congestion Window Test"* ([video](http://www.youtube.com/watch?v=m2n5vZQ4030){:target="_blank"})
1515

16-
* *"OMNeT++ Sequence Chart - Wireless MAC"* ([video](http://www.youtube.com/watch?v=9yZZFgwl4Ns))
16+
* *"OMNeT++ Sequence Chart - Wireless MAC"* ([video](http://www.youtube.com/watch?v=9yZZFgwl4Ns){:target="_blank"})
1717

1818
If you come across others that are worthwhile to mention, please let us
1919
know and we'll update the list.

Diff for: WhyContribute.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You might enjoy contributing, because:
2828

2929
* Simulation and hacking on models can be fun in itself
3030
* The forum is full of helpful people
31-
* You can meet fellow INET people and other OMNeT++ users at the [OMNeT++ Summit][1]! (To get the atmosphere of the event, here's a photo album of the [2014 summit][2].)
31+
* You can meet fellow INET people and other OMNeT++ users at the [OMNeT++ Summit][1]{:target="_blank"}! (To get the atmosphere of the event, here's a photo album of the [2014 summit][2]{:target="_blank"}.)
3232

3333
[1]: http://summit.omnetpp.org
3434
[2]: https://www.dropbox.com/sh/8lsmga0xuv53xhl/AAAavLsweyRdrx_XhJbr2LfMa?dl=0

Diff for: _layouts/default.html

+1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@
9595
<li><a href="https://twitter.com/omnetpp" target="_blank">Twitter</a></li>
9696
<li><a href="https://github.com/inet-framework/inet" target="_blank">GitHub</a></li>
9797
<li><a href="https://groups.google.com/forum/?fromgroups#!forum/omnetpp" target="_blank">Mailing List</a></li>
98+
<li><a href="https://github.com/inet-framework/inet-framework.github.io" target="_blank">Improve This Website</a></li>
9899
<li><a href="mailto:[email protected]" target="_blank">Contact Us</a></li>
99100
</ul>
100101

0 commit comments

Comments
 (0)