Skip to content

Commit

Permalink
Merge branch 'release/1.9.32'
Browse files Browse the repository at this point in the history
  • Loading branch information
muloem committed May 15, 2018
2 parents 4c48814 + cbbe977 commit 778d8a5
Show file tree
Hide file tree
Showing 65 changed files with 1,216 additions and 376 deletions.
7 changes: 7 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
/GAE
/Config
/Dashboard/.sass-cache
/Dashboard/tmp
/.git
/scripts
/tests
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ GAE/war/WEB-INF/lib/geronimo*.jar
GAE/war/WEB-INF/lib/jdo2-api*.jar
GAE/war/WEB-INF/lib/jsr107*.jar
GAE/war/WEB-INF/lib/libservice.jar
GAE/target

# APK paths
WFPMapping/device/debugcert
Expand Down Expand Up @@ -84,3 +85,5 @@ dwsync.xml
out/
.idea/
*.iml
rake.log
lein.log
4 changes: 2 additions & 2 deletions Dashboard/Assetfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class CSSMinFilter < Filter
end
end

output '../GAE/war/admin'
output '../GAE/target/akvo-flow/admin'
input 'app' do

match 'css/main.scss' do
Expand Down Expand Up @@ -126,7 +126,7 @@ input 'app' do

end

output '../GAE/war/vendorjs'
output '../GAE/target/akvo-flow/vendorjs'
input 'app' do
match "js/vendor/**/*.js" do
concat do |input|
Expand Down
2 changes: 1 addition & 1 deletion Dashboard/AssetfilePublic
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ class CSSMinFilter < Filter
end
end

output '../GAE/war/publicmap'
output '../GAE/target/akvo-flow/publicmap'
input 'app' do

match 'css/main.scss' do
Expand Down
4 changes: 4 additions & 0 deletions Dashboard/Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,7 @@ task :watch do
system "bundle exec guard start"
end

desc "Watch for changes in the background"
task :watchbg do
system "bundle exec guard start --no-interactions"
end
2 changes: 1 addition & 1 deletion Dashboard/app/cljs/cp-html.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

OUT_ROOT=../../../GAE/war/admin/frames/
OUT_ROOT=../../../GAE/target/akvo-flow/admin/frames/

mkdir -p ${OUT_ROOT}

Expand Down
12 changes: 6 additions & 6 deletions Dashboard/app/cljs/project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@

:source-paths ["src"]

:clean-targets ^{:protect false} ["../../../GAE/war/admin/frames/users.html"
"../../../GAE/war/admin/frames/users.js"
"../../../GAE/war/admin/frames/out/"]
:clean-targets ^{:protect false} ["../../../GAE/target/akvo-flow/admin/frames/users.html"
"../../../GAE/target/akvo-flow/admin/frames/users.js"
"../../../GAE/target/akvo-flow/admin/frames/out/"]

:aliases {"copyhtml" ["shell" "./cp-html.sh"]
"copyhtml-production" ["shell" "./cp-html.sh" "--production"]
Expand All @@ -34,14 +34,14 @@
:source-paths ["src"]
:compiler {
:main org.akvo.flow.dashboard.users.core
:output-to "../../../GAE/war/admin/frames/users.js"
:output-dir "../../../GAE/war/admin/frames/out"
:output-to "../../../GAE/target/akvo-flow/admin/frames/users.js"
:output-dir "../../../GAE/target/akvo-flow/admin/frames/out"
:asset-path "out"
:optimizations :none
:source-map true}}
{:id "adv"
:source-paths ["src"]
:compiler {
:main org.akvo.flow.dashboard.users.core
:output-to "../../../GAE/war/admin/frames/users.js"
:output-to "../../../GAE/target/akvo-flow/admin/frames/users.js"
:optimizations :advanced}}]})
Loading

0 comments on commit 778d8a5

Please sign in to comment.