Dave Jarvis' Repositories

git clone https://repo.autonoma.ca/repo/delibero.git

Proper dependency order for building menu and copying libraries before running the app.

AuthorDave Jarvis <email>
Date2015-01-18 16:30:57 GMT-0800
Commit5e1ef3cbf1d7824048e52c0e56fe20e493d43b4a
Parent8c6e5f4
build.gradle
}
-build.dependsOn( copyLibraries )
-copyLibraries.dependsOn( buildMenu )
+buildMenu.dependsOn( copyLibraries )
+run.dependsOn( buildMenu )
dependencies {
source/css/home.css
.synopsis {
- padding-left: 10px;
+ padding-top: 0.3em;
+}
+
+.synopsis, .tags {
+ padding-left: 10px;
}
.synopsis > a {
- text-decoration: none;
font-family: "Montserrat",Helvetica,sans-serif;
font-size: 1.25em;
- color: #46A5E5;
}
.activation > .time, .statistics > .views {
padding-top: 0.25em;
-}
-
-.proposal {
- font-size: 1em;
- font-weight: normal;
- padding-top: 0.3em;
-}
-
-.proposal, .tags {
- padding-left: 10px;
-}
-
-.proposal > a {
- text-decoration: none;
-
- font-family: 'Montserrat', Helvetica, sans-serif;
- font-size: 1.25em;
- color: #46A5E5;
}
source/css/tour.css
-@charset "utf-8";
-
-a {
- text-decoration: none;
- font-weight: bold;
- color: #087ECB;
-}
-
-a:hover {
- color: #B93507;
-}
-
-div.header {
- text-align: center;
-}
-
-hr {
- background-color: #999;
- border: 0 none;
- color: #999;
- height: 1px;
-}
-
-a.page-prev {
- margin-right: 1em;
-}
-
-a.page-next::after {
- content: " →";
-}
-
-a.page-prev::before {
- content: "← ";
-}
-
source/java/to/discuss/App.java
}
- protected void applyProperties( Transformer transformer ) {
- transformer.setOutputProperty( OutputKeys.ENCODING, getEncoding() );
- }
-
/**
* Returns the default character encoding.
private void sendContent() throws Exception {
- getTransformer().transform( getDocument(), getResultStream() );
+ Transformer transformer = getTransformer();
+ transformer.setOutputProperty( OutputKeys.ENCODING, getEncoding() );
+ transformer.transform( getDocument(), getResultStream() );
}
Delta10 lines added, 63 lines removed, 53-line decrease