Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
persona
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Hexang 息壤平台
persona
Commits
e354532f
Commit
e354532f
authored
13 years ago
by
Austin King
Browse files
Options
Downloads
Patches
Plain Diff
Splitting compress into compress-locales.sh. Fixes Issue#1024
parent
3520fe69
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
scripts/compress-locales.sh
+80
-0
80 additions, 0 deletions
scripts/compress-locales.sh
scripts/compress.sh
+3
-26
3 additions, 26 deletions
scripts/compress.sh
with
83 additions
and
26 deletions
scripts/compress-locales.sh
0 → 100755
+
80
−
0
View file @
e354532f
#!/bin/sh
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# compress-locales.sh creates all artifacts from browserid-locale.rpm
# and depends on compress.sh having already run
cd
$(
dirname
"
$0
"
)
/..
export
PATH
=
$PWD
/node_modules/.bin:
$PATH
UGLIFY
=
`
which uglifyjs 2> /dev/null
`
if
[
!
-x
"
$UGLIFY
"
]
;
then
echo
"uglifyjs not found in your path. Have you npm installed lately?"
exit
1
fi
#set up the path of where all build resources go.
BUILD_PATH
=
`
pwd
`
'/resources/static/build'
if
[
!
-x
"
$BUILD_PATH
"
]
;
then
echo
"****Creating build JS/CSS directory.****"
mkdir
$BUILD_PATH
fi
#set up the path of where all production resources go.
PRODUCTION_PATH
=
`
pwd
`
'/resources/static/production'
if
[
!
-x
"
$PRODUCTION_PATH
"
]
;
then
echo
"****Creating production JS/CSS directory.****"
mkdir
$PRODUCTION_PATH
fi
set
-e
# exit on errors
echo
''
echo
'****Building dialog HTML, CSS, and JS****'
echo
''
cd
$BUILD_PATH
cd
..
pwd
# produce the dialog js
locales
=
`
../../scripts/production_locales
`
echo
"generating for the following locales:"
echo
$locales
for
locale
in
$locales
;
do
mkdir
-p
$BUILD_PATH
/
$locale
mkdir
-p
$BUILD_PATH
/../i18n/
$locale
# Touch as the trigger locale doesn't really exist
touch
$BUILD_PATH
/../i18n/
${
locale
}
/client.json
cat
lib/jquery-1.7.1.min.js lib/winchan.js lib/underscore-min.js lib/vepbundle.js lib/ejs.js shared/javascript-extensions.js i18n/
${
locale
}
/client.json shared/gettext.js shared/browserid.js lib/hub.js lib/dom-jquery.js lib/module.js lib/jschannel.js
$BUILD_PATH
/templates.js shared/renderer.js shared/class.js shared/mediator.js shared/tooltip.js shared/validation.js shared/helpers.js shared/screens.js shared/browser-support.js shared/wait-messages.js shared/error-messages.js shared/error-display.js shared/storage.js shared/xhr.js shared/network.js shared/provisioning.js shared/user.js shared/command.js shared/history.js shared/state_machine.js shared/modules/page_module.js shared/modules/xhr_delay.js shared/modules/xhr_disable_form.js shared/modules/code_check.js shared/modules/cookie_check.js dialog/resources/internal_api.js dialog/resources/helpers.js dialog/resources/state.js dialog/controllers/actions.js dialog/controllers/dialog.js dialog/controllers/authenticate.js dialog/controllers/forgot_password.js dialog/controllers/check_registration.js dialog/controllers/pick_email.js dialog/controllers/add_email.js dialog/controllers/required_email.js dialog/controllers/verify_primary_user.js dialog/controllers/provision_primary_user.js dialog/controllers/primary_user_provisioned.js dialog/controllers/email_chosen.js dialog/start.js
>
$BUILD_PATH
/
$locale
/dialog.uncompressed.js
done
echo
''
echo
'****Building BrowserID.org HTML, CSS, and JS****'
echo
''
#produce the main site js
for
locale
in
$locales
;
do
cat
lib/vepbundle.js lib/jquery-1.7.1.min.js lib/underscore-min.js lib/ejs.js shared/javascript-extensions.js i18n/
${
locale
}
/client.json shared/gettext.js shared/browserid.js lib/dom-jquery.js lib/module.js lib/jschannel.js lib/winchan.js lib/hub.js
$BUILD_PATH
/templates.js shared/renderer.js shared/class.js shared/mediator.js shared/tooltip.js shared/validation.js shared/helpers.js shared/screens.js shared/browser-support.js shared/wait-messages.js shared/error-messages.js shared/error-display.js shared/mediator.js shared/storage.js shared/xhr.js shared/network.js shared/provisioning.js shared/user.js shared/modules/page_module.js shared/modules/xhr_delay.js shared/modules/xhr_disable_form.js shared/modules/code_check.js shared/modules/cookie_check.js pages/page_helpers.js pages/start.js pages/index.js pages/add_email_address.js pages/verify_email_address.js pages/forgot.js pages/manage_account.js pages/signin.js pages/signup.js
>
$BUILD_PATH
/
$locale
/browserid.uncompressed.js
done
echo
''
echo
'****Compressing all JS, CSS****'
echo
''
cd
$PRODUCTION_PATH
pwd
# minify the JS
$UGLIFY
<
$BUILD_PATH
/include.uncompressed.js
>
include.js
for
locale
in
$locales
;
do
mkdir
-p
$locale
$UGLIFY
<
$BUILD_PATH
/
$locale
/dialog.uncompressed.js
>
$locale
/dialog.js
$UGLIFY
<
$BUILD_PATH
/
$locale
/browserid.uncompressed.js
>
$locale
/browserid.js
done
This diff is collapsed.
Click to expand it.
scripts/compress.sh
+
3
−
26
View file @
e354532f
...
...
@@ -3,6 +3,8 @@
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# compress.sh creates all artifacts from browserid.rpm
cd
$(
dirname
"
$0
"
)
/..
...
...
@@ -56,19 +58,6 @@ cd dialog/views
`
BUILD_DIR
=
$BUILD_PATH
../../../../scripts/create_templates.js
`
cd
../..
# produce the dialog js
locales
=
`
../../scripts/production_locales
`
echo
"generating for the following locales:"
echo
$locales
for
locale
in
$locales
;
do
mkdir
-p
$BUILD_PATH
/
$locale
mkdir
-p
$BUILD_PATH
/../i18n/
$locale
# Touch as the trigger locale doesn't really exist
touch
$BUILD_PATH
/../i18n/
${
locale
}
/client.json
cat
lib/jquery-1.7.1.min.js lib/winchan.js lib/underscore-min.js lib/vepbundle.js lib/ejs.js shared/javascript-extensions.js i18n/
${
locale
}
/client.json shared/gettext.js shared/browserid.js lib/hub.js lib/dom-jquery.js lib/module.js lib/jschannel.js
$BUILD_PATH
/templates.js shared/renderer.js shared/class.js shared/mediator.js shared/tooltip.js shared/validation.js shared/helpers.js shared/screens.js shared/browser-support.js shared/wait-messages.js shared/error-messages.js shared/error-display.js shared/storage.js shared/xhr.js shared/network.js shared/provisioning.js shared/user.js shared/command.js shared/history.js shared/state_machine.js shared/modules/page_module.js shared/modules/xhr_delay.js shared/modules/xhr_disable_form.js shared/modules/code_check.js shared/modules/cookie_check.js dialog/resources/internal_api.js dialog/resources/helpers.js dialog/resources/state.js dialog/controllers/actions.js dialog/controllers/dialog.js dialog/controllers/authenticate.js dialog/controllers/forgot_password.js dialog/controllers/check_registration.js dialog/controllers/pick_email.js dialog/controllers/add_email.js dialog/controllers/required_email.js dialog/controllers/verify_primary_user.js dialog/controllers/provision_primary_user.js dialog/controllers/primary_user_provisioned.js dialog/controllers/email_chosen.js dialog/start.js
>
$BUILD_PATH
/
$locale
/dialog.uncompressed.js
done
# produce the dialog css
cat
css/common.css dialog/css/popup.css dialog/css/m.css
>
$BUILD_PATH
/dialog.uncompressed.css
...
...
@@ -76,14 +65,9 @@ cat css/common.css dialog/css/popup.css dialog/css/m.css > $BUILD_PATH/dialog.un
cat
lib/jquery-1.7.1.min.js lib/jschannel.js lib/winchan.js lib/underscore-min.js lib/vepbundle.js lib/hub.js shared/javascript-extensions.js shared/browserid.js shared/mediator.js shared/helpers.js shared/storage.js shared/xhr.js shared/network.js shared/user.js communication_iframe/start.js
>
$BUILD_PATH
/communication_iframe.uncompressed.js
echo
''
echo
'****Building BrowserID.org
HTML, CSS, and J
S****'
echo
'****Building BrowserID.org
CS
S****'
echo
''
#produce the main site js
for
locale
in
$locales
;
do
cat
lib/vepbundle.js lib/jquery-1.7.1.min.js lib/underscore-min.js lib/ejs.js shared/javascript-extensions.js i18n/
${
locale
}
/client.json shared/gettext.js shared/browserid.js lib/dom-jquery.js lib/module.js lib/jschannel.js lib/winchan.js lib/hub.js
$BUILD_PATH
/templates.js shared/renderer.js shared/class.js shared/mediator.js shared/tooltip.js shared/validation.js shared/helpers.js shared/screens.js shared/browser-support.js shared/wait-messages.js shared/error-messages.js shared/error-display.js shared/mediator.js shared/storage.js shared/xhr.js shared/network.js shared/provisioning.js shared/user.js shared/modules/page_module.js shared/modules/xhr_delay.js shared/modules/xhr_disable_form.js shared/modules/code_check.js shared/modules/cookie_check.js pages/page_helpers.js pages/start.js pages/index.js pages/add_email_address.js pages/verify_email_address.js pages/forgot.js pages/manage_account.js pages/signin.js pages/signup.js
>
$BUILD_PATH
/
$locale
/browserid.uncompressed.js
done
# produce the main site css
cat
css/common.css css/style.css css/m.css
>
$BUILD_PATH
/browserid.uncompressed.css
...
...
@@ -94,13 +78,6 @@ echo ''
cd
$PRODUCTION_PATH
pwd
# minify the JS
$UGLIFY
<
$BUILD_PATH
/include.uncompressed.js
>
include.js
for
locale
in
$locales
;
do
mkdir
-p
$locale
$UGLIFY
<
$BUILD_PATH
/
$locale
/dialog.uncompressed.js
>
$locale
/dialog.js
$UGLIFY
<
$BUILD_PATH
/
$locale
/browserid.uncompressed.js
>
$locale
/browserid.js
done
$UGLIFY
<
$BUILD_PATH
/communication_iframe.uncompressed.js
>
communication_iframe.js
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment