Skip to content

Commit cfd445d

Browse files
committed
Fixing broken links in /ipr/about/
- Legacy-Id: 735
1 parent 0428075 commit cfd445d

2 files changed

Lines changed: 7 additions & 5 deletions

File tree

ietf/ipr/urls.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
(r'^ipr-(?P<ipr_id>\d+)/$', views.show),
1010
(r'^update/$', views.updatelist),
1111
(r'^update/(?P<ipr_id>\d+)/$', new.update),
12-
(r'^new-(?P<type>(specific|generic|third-party))/$', new.new),
12+
(r'^new-(?P<type>specific)/$', new.new),
13+
(r'^new-(?P<type>generic)/$', new.new),
14+
(r'^new-(?P<type>third-party)/$', new.new),
1315
(r'^search/$', search.search),
1416
)
1517

ietf/templates/ipr/disclosure.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@
2525
<p />
2626
<hr>
2727
<p>
28-
<a href="./ipr.cgi"><img src="http://www.ietf.org/images/blue.gif" hspace="3" border="0">File a disclosure about your IPR related to a specific IETF contribution</a>
28+
<a href="{% url ietf.ipr.new.new "specific" %}"><img src="http://www.ietf.org/images/blue.gif" hspace="3" border="0">File a disclosure about your IPR related to a specific IETF contribution</a>
2929
</p>
30-
<p><a href="./ipr_generic.cgi"><img src="http://www.ietf.org/images/blue.gif" hspace="3" border="0">File an IPR disclosure that is not related to a specific IETF contribution</a>
30+
<p><a href="{% url ietf.ipr.new.new "generic" %}"><img src="http://www.ietf.org/images/blue.gif" hspace="3" border="0">File an IPR disclosure that is not related to a specific IETF contribution</a>
3131
</p>
32-
<p><a href="./ipr_notify.cgi"><img src="http://www.ietf.org/images/blue.gif" hspace="3" border="0">Notify the IETF of IPR other than your own</a>
32+
<p><a href="{% url ietf.ipr.new.new "third-party" %}"><img src="http://www.ietf.org/images/blue.gif" hspace="3" border="0">Notify the IETF of IPR other than your own</a>
3333
</p>
3434
<p><a href="{% url ietf.ipr.views.updatelist %}"><img src="http://www.ietf.org/images/blue.gif" hspace="3" border="0">Update an existing IPR disclosure</a>
3535
</p>
36-
<p><a href="./ipr_search.cgi"><img src="http://www.ietf.org/images/blue.gif" hspace="3" border="0">Search the IPR disclosures</a>
36+
<p><a href="{% url ietf.ipr.search.search %}"><img src="http://www.ietf.org/images/blue.gif" hspace="3" border="0">Search the IPR disclosures</a>
3737
</p>
3838
<p><a href="{% url ietf.ipr.views.showlist %}"><img src="http://www.ietf.org/images/blue.gif" hspace="3" border="0">List of IPR disclosures</a><p>
3939
</p>

0 commit comments

Comments
 (0)