mirror of
https://github.com/aptly-dev/aptly.git
synced 2026-05-06 22:18:28 +00:00
Update Go AWS SDK to the latest version
This commit is contained in:
committed by
Andrey Smirnov
parent
d08be990ef
commit
94a72b23ff
+10
-10
@@ -67,12 +67,12 @@ window.onload = function() {
|
||||
pageOldStyle.display = page.style.display;
|
||||
page.style.display = "none";
|
||||
|
||||
divOldStyle.fontSize = div.style.fontSize;
|
||||
divOldStyle.lineHeight = div.style.lineHeight;
|
||||
divOldStyle.display = div.style.display;
|
||||
div.style.fontSize = "x-large";
|
||||
div.style.lineHeight = "150%";
|
||||
div.style.display = "inline-block";
|
||||
divOldStyle.fontSize = div.style.fontSize;
|
||||
divOldStyle.lineHeight = div.style.lineHeight;
|
||||
divOldStyle.display = div.style.display;
|
||||
div.style.fontSize = "x-large";
|
||||
div.style.lineHeight = "150%";
|
||||
div.style.display = "inline-block";
|
||||
which = false;
|
||||
}
|
||||
|
||||
@@ -88,9 +88,9 @@ window.onload = function() {
|
||||
|
||||
page.style.display = pageOldStyle.display;
|
||||
|
||||
div.style.fontSize = divOldStyle.fontSize;
|
||||
div.style.lineHeight = divOldStyle.lineHeight;
|
||||
div.style.display = divOldStyle.display;
|
||||
div.style.fontSize = divOldStyle.fontSize;
|
||||
div.style.lineHeight = divOldStyle.lineHeight;
|
||||
div.style.display = divOldStyle.display;
|
||||
which = true;
|
||||
}
|
||||
|
||||
@@ -158,7 +158,7 @@ window.onload = function() {
|
||||
</div><!-- .container -->
|
||||
</div><!-- #page -->
|
||||
|
||||
|
||||
<script src="/SdkStatic/sdk-priv.js" async="true"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
+1
-1
@@ -203,7 +203,7 @@ function setupInlinePlayground() {
|
||||
code.on('keyup', resize);
|
||||
code.keyup(); // resize now.
|
||||
};
|
||||
|
||||
|
||||
// If example already visible, set up playground now.
|
||||
if ($(el).is(':visible')) {
|
||||
setup();
|
||||
|
||||
+1
-1
File diff suppressed because one or more lines are too long
Generated
Vendored
+1
-1
@@ -35,5 +35,5 @@
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
|
||||
})(jQuery);
|
||||
|
||||
+21
-21
@@ -1,6 +1,6 @@
|
||||
/*
|
||||
* Treeview 1.4.1 - jQuery plugin to hide and show branches of a tree
|
||||
*
|
||||
*
|
||||
* http://bassistance.de/jquery-plugins/jquery-plugin-treeview/
|
||||
* http://docs.jquery.com/Plugins/Treeview
|
||||
*
|
||||
@@ -50,7 +50,7 @@
|
||||
} else {
|
||||
this.hide();
|
||||
if (callback)
|
||||
this.each(callback);
|
||||
this.each(callback);
|
||||
}
|
||||
},
|
||||
prepareBranches: function(settings) {
|
||||
@@ -70,18 +70,18 @@
|
||||
if ( this == event.target )
|
||||
toggler.apply($(this).next());
|
||||
}).add( $("a", this) ).hoverClass();
|
||||
|
||||
|
||||
if (!settings.prerendered) {
|
||||
// handle closed ones first
|
||||
this.filter(":has(>ul:hidden)")
|
||||
.addClass(CLASSES.expandable)
|
||||
.replaceClass(CLASSES.last, CLASSES.lastExpandable);
|
||||
|
||||
|
||||
// handle open ones
|
||||
this.not(":has(>ul:hidden)")
|
||||
.addClass(CLASSES.collapsable)
|
||||
.replaceClass(CLASSES.last, CLASSES.lastCollapsable);
|
||||
|
||||
|
||||
// create hitarea if not present
|
||||
var hitarea = this.find("div." + CLASSES.hitarea);
|
||||
if (!hitarea.length)
|
||||
@@ -94,23 +94,23 @@
|
||||
$(this).addClass( classes );
|
||||
})
|
||||
}
|
||||
|
||||
|
||||
// apply event to hitarea
|
||||
this.find("div." + CLASSES.hitarea).click( toggler );
|
||||
},
|
||||
treeview: function(settings) {
|
||||
|
||||
|
||||
settings = $.extend({
|
||||
cookieId: "treeview"
|
||||
}, settings);
|
||||
|
||||
|
||||
if ( settings.toggle ) {
|
||||
var callback = settings.toggle;
|
||||
settings.toggle = function() {
|
||||
return callback.apply($(this).parent()[0], arguments);
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
// factory for treecontroller
|
||||
function treeController(tree, control) {
|
||||
// factory for click handlers
|
||||
@@ -130,9 +130,9 @@
|
||||
// click on second to expand tree
|
||||
$("a:eq(1)", control).click( handler(CLASSES.expandable) );
|
||||
// click on third to toggle tree
|
||||
$("a:eq(2)", control).click( handler() );
|
||||
$("a:eq(2)", control).click( handler() );
|
||||
}
|
||||
|
||||
|
||||
// handle toggle event
|
||||
function toggler() {
|
||||
$(this)
|
||||
@@ -164,7 +164,7 @@
|
||||
}
|
||||
}
|
||||
this.data("toggler", toggler);
|
||||
|
||||
|
||||
function serialize() {
|
||||
function binary(arg) {
|
||||
return arg ? 1 : 0;
|
||||
@@ -175,7 +175,7 @@
|
||||
});
|
||||
$.cookie(settings.cookieId, data.join(""), settings.cookieOptions );
|
||||
}
|
||||
|
||||
|
||||
function deserialize() {
|
||||
var stored = $.cookie(settings.cookieId);
|
||||
if ( stored ) {
|
||||
@@ -185,13 +185,13 @@
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// add treeview class to activate styles
|
||||
this.addClass("treeview");
|
||||
|
||||
|
||||
// prepare branches and find all tree items with child lists
|
||||
var branches = this.find("li").prepareBranches(settings);
|
||||
|
||||
|
||||
switch(settings.persist) {
|
||||
case "cookie":
|
||||
var toggleCallback = settings.toggle;
|
||||
@@ -222,19 +222,19 @@
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
branches.applyClasses(settings, toggler);
|
||||
|
||||
|
||||
// if control option is set, create the treecontroller and show it
|
||||
if ( settings.control ) {
|
||||
treeController(this, settings.control);
|
||||
$(settings.control).show();
|
||||
}
|
||||
|
||||
|
||||
return this;
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
// classes used by the plugin
|
||||
// need to be styled via external stylesheet, see first example
|
||||
$.treeview = {};
|
||||
@@ -252,5 +252,5 @@
|
||||
last: "last",
|
||||
hitarea: "hitarea"
|
||||
});
|
||||
|
||||
|
||||
})(jQuery);
|
||||
|
||||
Generated
Vendored
+5
-5
@@ -25,12 +25,12 @@
|
||||
</dl>
|
||||
<dl>
|
||||
<dd><a href="#pkg-overview" class="overviewLink">Overview</a></dd>
|
||||
{{if .Consts}}
|
||||
<dd><a href="#pkg-constants" class="examplesLink">Constants</a></dd>
|
||||
{{end}}
|
||||
{{if $.Examples}}
|
||||
<dd><a href="#pkg-examples" class="examplesLink">Examples</a></dd>
|
||||
{{end}}
|
||||
{{if .Consts}}
|
||||
<dd><a href="#pkg-constants" class="examplesLink">Constants</a></dd>
|
||||
{{end}}
|
||||
</dl>
|
||||
</div>
|
||||
<!-- The package's Name is printed as title by the top-level template -->
|
||||
@@ -43,7 +43,7 @@
|
||||
{{comment_html .Doc}}
|
||||
<p>
|
||||
{{if ne $.IfaceLink ""}}
|
||||
The stub package, <a href={{$.IfaceLink}}>{{$.PDoc.Name}}iface</a>, can be used to provide alternative implementations of service clients,
|
||||
The stub package, <a href={{$.IfaceLink}}>{{$.PDoc.Name}}iface</a>, can be used to provide alternative implementations of service clients,
|
||||
such as mocking the client for testing.
|
||||
{{end}}
|
||||
</p?>
|
||||
@@ -193,7 +193,7 @@
|
||||
</div>
|
||||
</div> <!-- #pkg-callgraph -->
|
||||
{{ with .Consts -}}
|
||||
<div id="pkg-consts" class="toggle">
|
||||
<div id="pkg-constants" class="toggle">
|
||||
<div class="collapsed">
|
||||
<h2 class="toggleButton" title="Click to show Index section">Constants ▹</h2>
|
||||
</div>
|
||||
|
||||
+20
-16
@@ -173,7 +173,7 @@ div#mobile-nav {
|
||||
}
|
||||
|
||||
div#logo_container {
|
||||
height:100%;
|
||||
height:100%;
|
||||
display:table-cell;
|
||||
float:left;
|
||||
vertical-align:middle;
|
||||
@@ -186,7 +186,11 @@ div#mobile_only {
|
||||
div#fixed {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
height: 100%;
|
||||
overflow-y: scroll;
|
||||
overflow-x: hidden;
|
||||
-webkit-overflow-scrolling: touch;
|
||||
}
|
||||
|
||||
div .top_link {
|
||||
@@ -768,10 +772,10 @@ a.error {
|
||||
div#mobile-nav {
|
||||
display:inline-block;
|
||||
float:right;
|
||||
border-bottom: 13px double white;
|
||||
border-top: 4px solid white;
|
||||
border-bottom: 13px double white;
|
||||
border-top: 4px solid white;
|
||||
content:"";
|
||||
height: 5px;
|
||||
height: 5px;
|
||||
width:30px;
|
||||
}
|
||||
|
||||
@@ -823,10 +827,10 @@ a.error {
|
||||
div#mobile-nav {
|
||||
display:inline-block;
|
||||
float:right;
|
||||
border-bottom: 13px double white;
|
||||
border-top: 4px solid white;
|
||||
border-bottom: 13px double white;
|
||||
border-top: 4px solid white;
|
||||
content:"";
|
||||
height: 5px;
|
||||
height: 5px;
|
||||
width:30px;
|
||||
padding-left:20px;
|
||||
padding-top:10px;
|
||||
@@ -872,10 +876,10 @@ a.error {
|
||||
div#mobile-nav {
|
||||
display:inline-block;
|
||||
float:right;
|
||||
border-bottom: 13px double white;
|
||||
border-top: 4px solid white;
|
||||
border-bottom: 13px double white;
|
||||
border-top: 4px solid white;
|
||||
content:"";
|
||||
height: 5px;
|
||||
height: 5px;
|
||||
width:30px;
|
||||
}
|
||||
}
|
||||
@@ -981,10 +985,10 @@ a.error {
|
||||
div#mobile-nav {
|
||||
display:inline-block;
|
||||
float:right;
|
||||
border-bottom: 13px double white;
|
||||
border-top: 4px solid white;
|
||||
border-bottom: 13px double white;
|
||||
border-top: 4px solid white;
|
||||
content:"";
|
||||
height: 5px;
|
||||
height: 5px;
|
||||
width:30px;
|
||||
}
|
||||
}
|
||||
@@ -1026,10 +1030,10 @@ a.error {
|
||||
div#mobile-nav {
|
||||
display:inline-block;
|
||||
float:right;
|
||||
border-bottom: 13px double white;
|
||||
border-top: 4px solid white;
|
||||
border-bottom: 13px double white;
|
||||
border-top: 4px solid white;
|
||||
content:"";
|
||||
height: 5px;
|
||||
height: 5px;
|
||||
width:30px;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user