Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fixed URL in installer.mdtext
Fixed root url in Constants.as Added Greek locale strings from patch provided by Nick Tsitlakidis (https://issues.apache.org/jira/browse/FLEX-33340) Removed hardcoded path from .project file Added sign_and_hash.sh to installer git-svn-id: https://svn.apache.org/repos/asf/flex/utilities/trunk@1429460 13f79535-47bb-0310-9956-ffa450edef68
- Loading branch information
Showing
4 changed files
with
157 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#!/bin/sh | ||
#------------------------------------------------------------------------------ | ||
# Copyright 2004 The Apache Software Foundation | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
#------------------------------------------------------------------------------ | ||
# $Id$ | ||
# | ||
# Creates detached ascii signatures and md5 hashes for each of the files in the | ||
# current directory. | ||
# | ||
# Also verifies the signatures. | ||
# | ||
# For each file in the current directory, two new files are created: | ||
# | ||
# <name>.asc -- ascii-armored detached PGP digital signature | ||
# <name>.md5 -- md5 hash (checksum) | ||
# | ||
# where <name> is the name of the file, not including file path. | ||
# | ||
# For example, foo-1.0-src.tar.gz in the current directory will result in | ||
# foo-1.0-src.tar.gz.asc and foo-1.0-src.tar.gz.md5 added to the current | ||
# directory. | ||
# | ||
# Deletes any .asc or .md5 files in the current directory before processing | ||
# and does NOT recurse subdirectories. | ||
# | ||
# Assumes that you have a pgp id and keypair set up and prompts for the | ||
# passphrase for each signature created. | ||
# | ||
# usage: | ||
# sign_and_hash.sh | ||
# | ||
# requires: | ||
# gpg | ||
# md5sum | ||
#------------------------------------------------------------------------------ | ||
rm -f *.asc | ||
rm -f *.md5 | ||
for file in *; do | ||
if [ -f "$file" ]; then | ||
gpg --print-md MD5 $file > ${file}.md5 | ||
gpg --armor --output ${file}.asc --detach-sig $file | ||
gpg --verify ${file}.asc $file | ||
fi | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,18 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>installerBadge</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>com.adobe.flexbuilder.project.flexbuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>com.adobe.flexbuilder.project.flexnature</nature> | ||
<nature>com.adobe.flexbuilder.project.actionscriptnature</nature> | ||
</natures> | ||
<linkedResources> | ||
<link> | ||
<name>[source path] src</name> | ||
<type>2</type> | ||
<location>C:/p/flex_os/workspace/utilities/ApacheFlexUtilitiesCommon/src</location> | ||
</link> | ||
</linkedResources> | ||
</projectDescription> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<projectDescription> | ||
<name>installerBadge</name> | ||
<comment></comment> | ||
<projects> | ||
</projects> | ||
<buildSpec> | ||
<buildCommand> | ||
<name>com.adobe.flexbuilder.project.flexbuilder</name> | ||
<arguments> | ||
</arguments> | ||
</buildCommand> | ||
</buildSpec> | ||
<natures> | ||
<nature>com.adobe.flexbuilder.project.flexnature</nature> | ||
<nature>com.adobe.flexbuilder.project.actionscriptnature</nature> | ||
</natures> | ||
</projectDescription> |