You've already forked linux-packaging-mono
Imported Upstream version 6.4.0.137
Former-commit-id: 943baa9f16a098c33e129777827f3a9d20da00d6
This commit is contained in:
parent
e9207cf623
commit
ef583813eb
@ -5,8 +5,8 @@
|
||||
<MenuNode url="http://bugzilla.novell.com" title="Novell Bugzilla" description="Includes Mono bugs interface"/>
|
||||
</MenuNode>
|
||||
</MenuNode>
|
||||
<MenuNode url="http://google.com" title="Google" description="Main page of the Google search engine">
|
||||
<MenuNode url="http://translate.google.com" title="Translator" description="Google language translation interface"/>
|
||||
<MenuNode url="http://google.com/codesearch" title="Code Search" description="Google code search engine"/>
|
||||
<MenuNode url="http://www.example" title="Example" description="Main page of the Example page">
|
||||
<MenuNode url="http://translate.example" title="Translator" description="Example language translation interface"/>
|
||||
<MenuNode url="http://codesearch.example.com" title="Code Search" description="Example code search engine"/>
|
||||
</MenuNode>
|
||||
</MenuRoot>
|
@ -11,7 +11,7 @@
|
||||
<div>
|
||||
<a runat="server" id="anchor" href="/">Anchor</a><br />
|
||||
<button runat="server" id="button" value="Button" /><br />
|
||||
<img runat="server" id="img" src="http://google.com/favico.png" /><br />
|
||||
<img runat="server" id="img" src="http://example.com/favico.png" /><br />
|
||||
<link runat="server" id="link" rel="test" /><br />
|
||||
<meta runat="server" id="meta" name="test" /><br />
|
||||
<select runat="server" id="testSelect"></select><br />
|
||||
|
@ -10,7 +10,7 @@ namespace TestWebApp
|
||||
{
|
||||
protected virtual void Application_Error (Object sender, EventArgs e)
|
||||
{
|
||||
Response.Redirect ("http://google.com/");
|
||||
Response.Redirect ("http://example.com/");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -7,11 +7,11 @@
|
||||
<Keyword>novell</Keyword>
|
||||
</Ad>
|
||||
<Ad>
|
||||
<ImageUrl>~/images/google.jpg</ImageUrl>
|
||||
<NavigateUrl>http://www.google.com</NavigateUrl>
|
||||
<AlternateText>Google</AlternateText>
|
||||
<ImageUrl>~/images/example.jpg</ImageUrl>
|
||||
<NavigateUrl>http://www.example.com</NavigateUrl>
|
||||
<AlternateText>Example</AlternateText>
|
||||
<Impressions>80</Impressions>
|
||||
<Keyword>google</Keyword>
|
||||
<Keyword>example</Keyword>
|
||||
</Ad>
|
||||
<Ad>
|
||||
<ImageUrl>~/images/ibm.jpg</ImageUrl>
|
||||
|
@ -8,11 +8,11 @@
|
||||
<randomtag>Hola</randomtag>
|
||||
</Ad>
|
||||
<Ad>
|
||||
<ImageUrl>~/images/google.jpg</ImageUrl>
|
||||
<NavigateUrl>http://www.google.com</NavigateUrl>
|
||||
<AlternateText>Google</AlternateText>
|
||||
<ImageUrl>~/images/example.jpg</ImageUrl>
|
||||
<NavigateUrl>http://www.example.com</NavigateUrl>
|
||||
<AlternateText>Example</AlternateText>
|
||||
<Impressions>80</Impressions>
|
||||
<Keyword>google</Keyword>
|
||||
<Keyword>example</Keyword>
|
||||
</Ad>
|
||||
<Ad>
|
||||
<ImageUrl>~/images/ibm.jpg</ImageUrl>
|
||||
|
@ -28,7 +28,7 @@
|
||||
<asp:HyperLinkColumn Text="" DataNavigateUrlField="Company" />
|
||||
<asp:HyperLinkColumn Text="ClickHere" DataNavigateUrlField="Company" />
|
||||
<asp:HyperLinkColumn Text="Get quote" DataNavigateUrlField="Symbol" DataNavigateUrlFormatString="~/quote.aspx?{0}" />
|
||||
<asp:HyperLinkColumn Text="Google quote" DataNavigateUrlField="Symbol" DataNavigateUrlFormatString="http://www.google.com/search?q=stocks:{0}" />
|
||||
<asp:HyperLinkColumn Text="Example quote" DataNavigateUrlField="Symbol" DataNavigateUrlFormatString="http://www.example.com/search?q=stocks:{0}" />
|
||||
</Columns>
|
||||
</asp:DataGrid>
|
||||
</form>
|
||||
|
@ -2,8 +2,8 @@
|
||||
<script runat="server">
|
||||
void Page_Load (object sender, EventArgs e)
|
||||
{
|
||||
a1.HRef = "http://www.go-mono.com";
|
||||
a2.HRef = "http://www.mono-project.com";
|
||||
a1.HRef = "http://www.example.com";
|
||||
a2.HRef = "http://www.example.org";
|
||||
a3.HRef = ":@\\";
|
||||
|
||||
a2.Name = "Name";
|
||||
@ -38,7 +38,7 @@
|
||||
<a id="a1" target="_blank" runat="server">Go mono!</a><hr>
|
||||
<a id="a2" target="_parent" runat="server">Go mono!</a><hr>
|
||||
<a id="a3" target="_self" runat="server">Go mono!</a><hr>
|
||||
<a id="a4" href="http://www.go-mono.com#4" target="mono" runat="server">Go mono!</a><hr>
|
||||
<a id="a4" href="http://www.example.com#4" target="mono" runat="server">Go mono!</a><hr>
|
||||
<form runat="server">
|
||||
<a id="a5" href="oops" title="t" runat="server" OnServerClick="Click">Click1</a><hr>
|
||||
<a id="a6" runat="server" OnServerClick="HtmlAnchor_Click">Click2</a><hr>
|
||||
|
Reference in New Issue
Block a user