/hg/icedtea-web: PolicyEditor updated to use sun.security.provid...
aazores at icedtea.classpath.org
aazores at icedtea.classpath.org
Thu Jul 30 14:57:36 UTC 2015
changeset e09b5c8bf3cb in /hg/icedtea-web
details: http://icedtea.classpath.org/hg/icedtea-web?cmd=changeset;node=e09b5c8bf3cb
author: Andrew Azores <aazores at redhat.com>
date: Thu Jul 30 10:57:21 2015 -0400
PolicyEditor updated to use sun.security.provider.PolicyParser
* NEWS: mention new PolicyEditor support for SignedBy and Principals
* netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java: UI
updates to support SignedBy and Principals
* netx/net/sourceforge/jnlp/security/policyeditor/CustomPolicyViewer.java:
likewise
* netx/net/sourceforge/jnlp/security/policyeditor/PermissionActions.java:
use diamond operator where applicable
* netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditorController.java:
refactor to support use of PolicyIdentifiers rather than plain codebases
* netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditorPermissions.java:
replace fromString with fromPermissionEntry, fix formatting
* netx/net/sourceforge/jnlp/security/policyeditor/PolicyEntry.java:
implement Serializable and Transferable to enable clipboard support. Use
Builder pattern. Support PolicyIdentifiers rather than only plain codebases
* netx/net/sourceforge/jnlp/security/policyeditor/PolicyFileModel.java:
refactor to support PolicyIdentifiers and use PolicyParser
* netx/net/sourceforge/jnlp/security/dialogs/TemporaryPermissionsButton.java:
use PolicyIdentifier to identify current applet by its codebase alone
* netx/net/sourceforge/jnlp/util/docprovider/PolicyEditorTextsProvider.java:
remove -codebase from PolicyEditor help text
* netx/net/sourceforge/jnlp/OptionsDefinitions.java: add SIGNEDBY and
PRINCIPALS for PolicyEditor, define CODEBASE to take exactly one argument
* tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/CustomPolicyViewerTest.java:
use PolicyIdentifier rather than codebase string
* tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyEditorControllerTest.java:
redo to use PolicyIdentifiers, DisplayablePermissions
* tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyEditorParsingTest.java:
use PolicyIdentifier rather than codebase string
* tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyEditorPermissionsTest.java
(testActionsRegex, testTargetRegex,
testRegexesAgainstBadPermissionNames): removed, PolicyParser has replaced
this
* tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyEditorTest.java:
use PolicyIdentifier rather than codebase string
* tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyEntryTest.java:
use DisplayablePermission and PolicyEntry rather than CustomPermission
* tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyFileModelTest.java:
use PolicyIdentifier rather than codebase string
* netx/net/sourceforge/jnlp/security/policyeditor/KeystoreInfo.java: new
file
* netx/net/sourceforge/jnlp/security/policyeditor/PolicyIdentifier.java:
new file
* netx/net/sourceforge/jnlp/security/policyeditor/CustomPermission.java:
removed
* netx/net/sourceforge/jnlp/security/policyeditor/InvalidPolicyException.java:
removed
* tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/CustomPermissionTest.java:
removed
* netx/net/sourceforge/jnlp/resources/Messages.properties: many changes to
PolicyEditor messages for key bindings, UI messages, error messages, etc.
* netx/net/sourceforge/jnlp/resources/Messages_cs.properties: likewise
* netx/net/sourceforge/jnlp/resources/Messages_de.properties: likewise
* netx/net/sourceforge/jnlp/resources/Messages_pl.properties: likewise
diffstat:
ChangeLog | 57 +
NEWS | 7 +-
netx/net/sourceforge/jnlp/OptionsDefinitions.java | 6 +-
netx/net/sourceforge/jnlp/controlpanel/PolicyPanel.java | 1 +
netx/net/sourceforge/jnlp/resources/Messages.properties | 95 +-
netx/net/sourceforge/jnlp/resources/Messages_cs.properties | 54 +-
netx/net/sourceforge/jnlp/resources/Messages_de.properties | 16 +-
netx/net/sourceforge/jnlp/resources/Messages_pl.properties | 22 +-
netx/net/sourceforge/jnlp/security/dialogs/TemporaryPermissionsButton.java | 6 +-
netx/net/sourceforge/jnlp/security/policyeditor/CustomPermission.java | 181 --
netx/net/sourceforge/jnlp/security/policyeditor/CustomPolicyViewer.java | 107 +-
netx/net/sourceforge/jnlp/security/policyeditor/InvalidPolicyException.java | 40 -
netx/net/sourceforge/jnlp/security/policyeditor/KeystoreInfo.java | 110 +
netx/net/sourceforge/jnlp/security/policyeditor/PermissionActions.java | 2 +-
netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java | 844 +++++----
netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditorController.java | 140 +-
netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditorPermissions.java | 47 +-
netx/net/sourceforge/jnlp/security/policyeditor/PolicyEntry.java | 208 +-
netx/net/sourceforge/jnlp/security/policyeditor/PolicyFileModel.java | 219 +-
netx/net/sourceforge/jnlp/security/policyeditor/PolicyIdentifier.java | 147 +
netx/net/sourceforge/jnlp/util/docprovider/PolicyEditorTextsProvider.java | 2 +-
tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/CustomPermissionTest.java | 177 --
tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/CustomPolicyViewerTest.java | 20 +-
tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyEditorControllerTest.java | 293 +-
tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyEditorParsingTest.java | 49 +-
tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyEditorPermissionsTest.java | 40 +-
tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyEditorTest.java | 115 +-
tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyEntryTest.java | 135 +-
tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyFileModelTest.java | 166 +-
29 files changed, 1662 insertions(+), 1644 deletions(-)
diffs (truncated from 5182 to 500 lines):
diff -r f53190734752 -r e09b5c8bf3cb ChangeLog
--- a/ChangeLog Wed Jul 29 18:08:16 2015 +0200
+++ b/ChangeLog Thu Jul 30 10:57:21 2015 -0400
@@ -63,6 +63,63 @@
* tests/reproducers/custom/UnsignedContentInMETAINF/srcs/Makefile: same
+2015-07-27 Andrew Azores <aazores at redhat.com>
+
+ PolicyEditor updated to use sun.security.provider.PolicyParser
+ * NEWS: mention new PolicyEditor support for SignedBy and Principals
+ * netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditor.java: UI
+ updates to support SignedBy and Principals
+ * netx/net/sourceforge/jnlp/security/policyeditor/CustomPolicyViewer.java:
+ likewise
+ * netx/net/sourceforge/jnlp/security/policyeditor/PermissionActions.java:
+ use diamond operator where applicable
+ * netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditorController.java:
+ refactor to support use of PolicyIdentifiers rather than plain codebases
+ * netx/net/sourceforge/jnlp/security/policyeditor/PolicyEditorPermissions.java:
+ replace fromString with fromPermissionEntry, fix formatting
+ * netx/net/sourceforge/jnlp/security/policyeditor/PolicyEntry.java:
+ implement Serializable and Transferable to enable clipboard support. Use
+ Builder pattern. Support PolicyIdentifiers rather than only plain codebases
+ * netx/net/sourceforge/jnlp/security/policyeditor/PolicyFileModel.java:
+ refactor to support PolicyIdentifiers and use PolicyParser
+ * netx/net/sourceforge/jnlp/security/dialogs/TemporaryPermissionsButton.java:
+ use PolicyIdentifier to identify current applet by its codebase alone
+ * netx/net/sourceforge/jnlp/util/docprovider/PolicyEditorTextsProvider.java:
+ remove -codebase from PolicyEditor help text
+ * netx/net/sourceforge/jnlp/OptionsDefinitions.java: add SIGNEDBY and
+ PRINCIPALS for PolicyEditor, define CODEBASE to take exactly one argument
+ * tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/CustomPolicyViewerTest.java:
+ use PolicyIdentifier rather than codebase string
+ * tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyEditorControllerTest.java:
+ redo to use PolicyIdentifiers, DisplayablePermissions
+ * tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyEditorParsingTest.java:
+ use PolicyIdentifier rather than codebase string
+ * tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyEditorPermissionsTest.java
+ (testActionsRegex, testTargetRegex,
+ testRegexesAgainstBadPermissionNames): removed, PolicyParser has replaced
+ this
+ * tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyEditorTest.java:
+ use PolicyIdentifier rather than codebase string
+ * tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyEntryTest.java:
+ use DisplayablePermission and PolicyEntry rather than CustomPermission
+ * tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/PolicyFileModelTest.java:
+ use PolicyIdentifier rather than codebase string
+ * netx/net/sourceforge/jnlp/security/policyeditor/KeystoreInfo.java: new
+ file
+ * netx/net/sourceforge/jnlp/security/policyeditor/PolicyIdentifier.java:
+ new file
+ * netx/net/sourceforge/jnlp/security/policyeditor/CustomPermission.java:
+ removed
+ * netx/net/sourceforge/jnlp/security/policyeditor/InvalidPolicyException.java:
+ removed
+ * tests/netx/unit/net/sourceforge/jnlp/security/policyeditor/CustomPermissionTest.java:
+ removed
+ * netx/net/sourceforge/jnlp/resources/Messages.properties: many changes to
+ PolicyEditor messages for key bindings, UI messages, error messages, etc.
+ * netx/net/sourceforge/jnlp/resources/Messages_cs.properties: likewise
+ * netx/net/sourceforge/jnlp/resources/Messages_de.properties: likewise
+ * netx/net/sourceforge/jnlp/resources/Messages_pl.properties: likewise
+
2015-07-23 Jiri Vanek <jvanek at redhat.com>
Enabled and properly tested Entry-Point attribute check
diff -r f53190734752 -r e09b5c8bf3cb NEWS
--- a/NEWS Wed Jul 29 18:08:16 2015 +0200
+++ b/NEWS Thu Jul 30 10:57:21 2015 -0400
@@ -30,15 +30,16 @@
- fixed issue with -html receiving garbage in width and height
* PolicyEditor
- file flag made to work when used standalone
+ - support for SignedBy and Principals along with existing Codebase
New in release 1.6 (2015-XX-XX):
* Massively improved offline abilities. Added Xoffline switch to force work without inet connection.
* Improved to be able to run with any JDK
* JDK 6 and older no longer supported
* JDK 8 support added (URLPermission granted if applicable)
-* JDK 9 supported
+* JDK 9 supported
* Added support for Entry-Point manifest attribute
-* Added KEY_ENABLE_MANIFEST_ATTRIBUTES_CHECK deployment property to control scan of Manifest file
+* Added KEY_ENABLE_MANIFEST_ATTRIBUTES_CHECK deployment property to control scan of Manifest file
* starting arguments now accept also -- abbreviations
* Added new documentation
* Added support for menu shortcuts - both javaws applications/applets and html applets are supported
@@ -202,7 +203,7 @@
New in release 1.1 (2011-XX-XX):
* Security updates
- - S6983554, CVE-2010-4450: Launcher incorrect processing of empty library path entries
+ - S6983554, CVE-2010-4450: Launcher incorrect processing of empty library path entries
- RH677332, CVE-2011-0706: IcedTea multiple signers privilege escalation
* New Features
- IcedTea-Web now installs to a FHS-compliant location
diff -r f53190734752 -r e09b5c8bf3cb netx/net/sourceforge/jnlp/OptionsDefinitions.java
--- a/netx/net/sourceforge/jnlp/OptionsDefinitions.java Wed Jul 29 18:08:16 2015 +0200
+++ b/netx/net/sourceforge/jnlp/OptionsDefinitions.java Thu Jul 30 10:57:21 2015 -0400
@@ -86,7 +86,9 @@
//policyeditor
//-help
FILE("-file", "policy_file", "PBOFile", NumberOfArguments.ONE),
- CODEBASE("-codebase", "url", "PBOCodebase", NumberOfArguments.ONE_OR_MORE);
+ CODEBASE("-codebase", "url", "PBOCodebase", NumberOfArguments.ONE),
+ SIGNEDBY("-signedby", "certificate_alias", "PBOSignedBy", NumberOfArguments.ONE),
+ PRINCIPALS("-principals", "class_name principal_name", "PBOPrincipals", NumberOfArguments.EVEN_NUMBER_SUPPORTS_EQUALS_CHAR);
public final String option;
@@ -175,6 +177,8 @@
OPTIONS.HELP1,
OPTIONS.FILE,
OPTIONS.CODEBASE,
+ OPTIONS.SIGNEDBY,
+ OPTIONS.PRINCIPALS,
OPTIONS.VERBOSE
}
);
diff -r f53190734752 -r e09b5c8bf3cb netx/net/sourceforge/jnlp/controlpanel/PolicyPanel.java
--- a/netx/net/sourceforge/jnlp/controlpanel/PolicyPanel.java Wed Jul 29 18:08:16 2015 +0200
+++ b/netx/net/sourceforge/jnlp/controlpanel/PolicyPanel.java Thu Jul 30 10:57:21 2015 -0400
@@ -166,6 +166,7 @@
private void launchSimplePolicyEditor(final String filePath) {
if (policyEditor == null || policyEditor.getPolicyEditor().isClosed()) {
policyEditor = PolicyEditor.getPolicyEditorFrame(filePath);
+ policyEditor.getPolicyEditor().openAndParsePolicyFile();
policyEditor.asWindow().setVisible(true);
} else {
policyEditor.asWindow().toFront();
diff -r f53190734752 -r e09b5c8bf3cb netx/net/sourceforge/jnlp/resources/Messages.properties
--- a/netx/net/sourceforge/jnlp/resources/Messages.properties Wed Jul 29 18:08:16 2015 +0200
+++ b/netx/net/sourceforge/jnlp/resources/Messages.properties Thu Jul 30 10:57:21 2015 -0400
@@ -356,10 +356,13 @@
IBOCheck=Checks that all the current settings have valid values.
PBOFile=Specifies a policy file path to open. If exactly one argument is given, and it is not this flag, it is interpreted as a file path to open, as if this flag was given first. This flag exists \
-mostly for compatibility with Policy Tool, but is also needed when opening a policy file and also using the -codebase flag.
-PBOCodebase=Specifies an applet codebase URL. If the specified codebase already exists in the policy file (if any), then it will be selected when the editor opens. If it is a new codebase then it will \
-be added and selected. Multiple URLs may also be given with a single -codebase flag by separating them with spaces. In this case, the last codebase given will be selected, and all will be \
-added. If this flag is given more than once, only the first is used.
+mostly for compatibility with Policy Tool.
+PBOCodebase=Specifies an applet codebase URL. This can be used with the other selector options to select a policy entry upon opening the editor; \
+if no such identifier exists then it will be created and then selected.
+PBOSignedBy=Specifies a certificate alias for a certificate stored in the keystore. This can be used with the other selector options to select a policy entry upon opening the editor; \
+if no such identifier exists then it will be created and then selected.
+PBOPrincipals=Specifies class name/principal name pairs (space-separated) for the policy entry identifier. This can be used with the other selector options to select a policy entry upon opening the editor; \
+if no such identifier exists then it will be created and then selected.
# Option Parser
OPUnevenParams=For option {0} expected an even number of params.
@@ -722,14 +725,17 @@
PEGetEnvDetail=Allow applets to read system environment variables
PECouldNotOpen=Unable to open policy file
PECouldNotSave=Unable to save policy file
-PEAddCodebase=Add new Codebase
-PERemoveCodebase=Remove
-PECodebasePrompt=Enter a new codebase
+PEAddEntry=Add New...
+PERemoveEntry=Remove
+PEEntryPrompt=Enter a new policy entry identifier
+PEAddPrincipal=Add Principal
+PERemovePrincipal=Remove Principal
+PEEditPrincipal=Edit Principal
PEGlobalSettings=All Applets
PESaveChanges=Save changes before exiting?
PEChangesSaved=Changes saved
PECheckboxLabel=Permissions
-PECodebaseLabel=Codebases
+PEEntriesLabel=Entries
PEFileMenu=File
PENewMenuItem=New
PEOpenMenuItem=Open...
@@ -737,26 +743,38 @@
PESaveMenuItem=Save
PESaveAsMenuItem=Save As...
PEExitMenuItem=Exit
-PECodebaseMenu=Codebase
-PEAddCodebaseItem=Add New...
-PERemoveCodebaseItem=Remove
-PERenameCodebaseItem=Rename
-PECopyCodebaseItem=Copy
-PEPasteCodebaseItem=Paste...
-PERenameCodebase=Rename codebase to:
-PEPasteCodebase=Paste copied codebase as:
+PEEntryMenu=Entry
+PEAddEntryItem=Add New...
+PERemoveEntryItem=Remove
+PEModifySubmenuItem=Modify
+PEModifyCodebaseItem=Codebase
+PEModifySignedByItem=Signed By
+PEModifyPrincipalsItem=Principals
+PECopyEntryItem=Copy
+PEPasteEntryItem=Paste...
+PEModifyCodebase=Change Codebase to:
+PEModifyPrincipals=Modify Principals:
+PEModifySignedBy=Changed SignedBy to:
+PEPasteEntry=Paste copied entry with codebase:
PEViewMenu=View
PECustomPermissionsItem=Custom Permissions...
+PECodebaseInputLabel=Codebase URL:
+PESignedByInputLabel=SignedBy:
+PEPrincipalsInputLabel=Principals:
+PEPrincipalClassNameInputLabel=Class Name:
+PEPrincipalPrincipalNameInputLabel=Principal Name:
PEFileModified=File Modification Warning
PEFileModifiedDetail=The policy file at {0} has been modified since it was opened. Reload and re-edit before saving?
PEFileMissing=The policy file was missing from disk. A new file has been saved with the same name.
-PEGAccesUnowenedCode = Execute unowned code
-PEGMediaAccess = Media access
-PEGrightClick = right click to fold/unfold
-PEGReadFileSystem = Read from system
-PEGWriteFileSystem = Write to system
+PEGAccessUnownedCode=Execute unowned code
+PEGMediaAccess=Media access
+PEGRightClick=Right click to fold/unfold
+PEGReadFileSystem=Read from system
+PEGWriteFileSystem=Write to system
PEClipboardError=Clipboard does not appear to contain properly formatted policy entries
-PEInvalidPolicy=Paste Failed: Could not read policy entry for codebase {0} from system clipboard
+PEInvalidPolicy=Paste Failed: Could not read policy entry for entry {0} from system clipboard
+PEInvalidIdentifier=Please fill in/modify at least one of the fields.
+PEIdentifierMatchesAll=Please fill in/modify at least one of the fields.
PEClipboardAccessError=Could not read from clipboard
PEHelpMenu=Help
@@ -799,31 +817,33 @@
# PolicyEditor key mnemonics. See KeyEvent.VK_*
PEFileMenuMnemonic=F
-PECodebaseMenuMnemonic=C
+PEEntryMenuMnemonic=E
PEViewMenuMnemonic=V
PEHelpMenuMnemonic=H
-PEAddCodebaseMnemonic=N
-PEAddCodebaseItemMnemonic=N
-PERemoveCodebaseMnemonic=R
-PERemoveCodebaseItemMnemonic=R
+PEAddEntryMnemonic=N
+PEAddEntryItemMnemonic=N
+PERemoveEntryMnemonic=R
+PERemoveEntryItemMnemonic=R
PENewMenuItemMnemonic=N
PEOpenMenuItemMnemonic=O
PEOpenDefaultMenuItemMnemonic=D
PESaveMenuItemMnemonic=S
PEExitMenuItemMnemonic=X
PECustomPermissionsItemMnemonic=U
-PECopyCodebaseItemMnemonic=C
-PEPasteCodebaseItemMnemonic=P
-PECopyCodebaseToClipboardItemMnemonic=U
+PECopyEntryItemMnemonic=C
+PEPasteEntryItemMnemonic=P
PESaveAsMenuItemMnemonic=A
-PERenameCodebaseItemMnemonic=E
+PEModifySubmenuItemMnemonic=M
+PEModifyEntryCodebaseItemMnemonic=B
+PEModifyEntryPrincipalsItemMnemonic=I
+PEModifyEntrySignedByItemMnemonic=G
PEAboutPolicyEditorItemMnemonic=A
PEPolicyEditorHelpItemMnemonic=H
# See javax.swing.KeyStroke.getKeyStroke(String)
-PEAddCodebaseItemAccelerator=control shift N
-PERemoveCodebaseItemAccelerator=DELETE
+PEAddEntryItemAccelerator=control shift N
+PERemoveEntryItemAccelerator=DELETE
PENewMenuItemAccelerator=control N
PEOpenMenuItemAccelerator=control O
PEOpenDefaultMenuItemAccelerator=control D
@@ -831,10 +851,11 @@
PESaveAsMenuItemAccelerator=control shift S
PEExitMenuItemAccelerator=control Q
PECustomPermissionsItemAccelerator=control U
-PECopyCodebaseItemAccelerator=control C
-PEPasteCodebaseItemAccelerator=control V
-PERenameCodebaseItemAccelerator=F2
-PECopyCodebaseToClipboardItemAccelerator=control shift C
+PECopyEntryItemAccelerator=control C
+PEPasteEntryItemAccelerator=control V
+PEModifyEntryCodebaseItemAccelerator=F2
+PEModifyEntryPrincipalsItemAccelerator=shift F2
+PEModifyEntrySignedByItemAccelerator=control F2
PEAboutPolicyEditorCloseAccelerator=control Q
#conole itself labels
diff -r f53190734752 -r e09b5c8bf3cb netx/net/sourceforge/jnlp/resources/Messages_cs.properties
--- a/netx/net/sourceforge/jnlp/resources/Messages_cs.properties Wed Jul 29 18:08:16 2015 +0200
+++ b/netx/net/sourceforge/jnlp/resources/Messages_cs.properties Thu Jul 30 10:57:21 2015 -0400
@@ -675,14 +675,14 @@
PEGetEnvDetail=Umo\u017en\u00ed aplet\u016fm p\u0159\u00edstup ke \u010dten\u00ed prom\u011bnn\u00fdch syst\u00e9mov\u00e9ho prost\u0159ed\u00ed.
PECouldNotOpen=Nelze otev\u0159\u00edt soubor se z\u00e1sadami
PECouldNotSave=Nelze ulo\u017eit soubor se z\u00e1sadami
-PEAddCodebase=P\u0159idat novou z\u00e1kladnu k\u00f3du (codebase)
-PERemoveCodebase=Odstranit
-PECodebasePrompt=Zadejte novou z\u00e1kladnu k\u00f3du (codebase)
+PEAddEntry=P\u0159idat novou z\u00e1kladnu k\u00f3du (codebase)
+PERemoveEntry=Odstranit
+PEEntryPrompt=Zadejte novou z\u00e1kladnu k\u00f3du (codebase)
PEGlobalSettings=V\u0161echny aplety
PESaveChanges=Ulo\u017eit zm\u011bny p\u0159ed ukon\u010den\u00edm?
PEChangesSaved=Zm\u011bny byly ulo\u017eeny.
PECheckboxLabel=Opr\u00e1vn\u011bn\u00ed
-PECodebaseLabel=Z\u00e1kladny k\u00f3du (codebases)
+PEEntriesLabel=Z\u00e1kladny k\u00f3du (codebases)
PEFileMenu=Soubor
PENewMenuItem=Nov\u00fd
PEOpenMenuItem=Otev\u0159\u00edt...
@@ -690,22 +690,22 @@
PESaveMenuItem=Ulo\u017eit
PESaveAsMenuItem=Ulo\u017eit jako...
PEExitMenuItem=Ukon\u010dit
-PECodebaseMenu=Z\u00e1kladna k\u00f3du (codebase)
-PEAddCodebaseItem=P\u0159idat novou...
-PERemoveCodebaseItem=Odstranit
-PERenameCodebaseItem=P\u0159ejmenovat
-PECopyCodebaseItem=Kop\u00edrovat
-PEPasteCodebaseItem=Vlo\u017eit...
-PERenameCodebase=P\u0159ejmenovat z\u00e1kladnu k\u00f3du (codebase) na:
-PEPasteCodebase=Vlo\u017eit kop\u00edrovanou z\u00e1kladnu k\u00f3du (codebase) jako:
+PEEntryMenu=Z\u00e1kladna k\u00f3du (codebase)
+PEAddEntryItem=P\u0159idat novou...
+PERemoveEntryItem=Odstranit
+PEModifyCodebaseItem=P\u0159ejmenovat
+PECopyEntryItem=Kop\u00edrovat
+PEPasteEntryItem=Vlo\u017eit...
+PEModifyCodebase=P\u0159ejmenovat z\u00e1kladnu k\u00f3du (codebase) na:
+PEPasteEntry=Vlo\u017eit kop\u00edrovanou z\u00e1kladnu k\u00f3du (codebase) jako:
PEViewMenu=Zobrazit
PECustomPermissionsItem=Vlastn\u00ed opr\u00e1vn\u011bn\u00ed
PEFileModified=Varov\u00e1n\u00ed ohledn\u011b zm\u011bny souboru
PEFileModifiedDetail=Soubor se z\u00e1sadami v um\u00edst\u011bn\u00ed {0} byl od posledn\u00edho otev\u0159en\u00ed zm\u011bn\u011bn. Chcete ho p\u0159ed ulo\u017een\u00edm znovu na\u010d\u00edst a upravit?
PEFileMissing=Soubor se z\u00e1sadami na disku chyb\u011bl. Byl ulo\u017een nov\u00fd soubor se stejn\u00fdm n\u00e1zvem.
-PEGAccesUnowenedCode= Spou\u0161t\u011bn\u00ed k\u00f3du, kter\u00fd nevlastn\u00edte
+PEGAccessUnownedCode= Spou\u0161t\u011bn\u00ed k\u00f3du, kter\u00fd nevlastn\u00edte
PEGMediaAccess= P\u0159\u00edstup k m\u00e9di\u00edm
-PEGrightClick= Prav\u00fdm tla\u010d\u00edtkem my\u0161i rozbalit/sbalit nab\u00eddku
+PEGRightClick= Prav\u00fdm tla\u010d\u00edtkem my\u0161i rozbalit/sbalit nab\u00eddku
PEGReadFileSystem= \u010cten\u00ed ze syst\u00e9mu
PEGWriteFileSystem= Zapisov\u00e1n\u00ed do syst\u00e9mu
PEClipboardError=Zd\u00e1 se, \u017ee schr\u00e1nka neobsahuje pat\u0159i\u010dn\u011b form\u00e1tovan\u00e9 polo\u017eky z\u00e1sad.
@@ -731,31 +731,31 @@
# PolicyEditor key mnemonics. See KeyEvent.VK_*
PEFileMenuMnemonic=F
-PECodebaseMenuMnemonic=C
+PEEntryMenuMnemonic=C
PEViewMenuMnemonic=V
PEHelpMenuMnemonic=H
-PEAddCodebaseMnemonic=N
-PEAddCodebaseItemMnemonic=N
-PERemoveCodebaseMnemonic=R
-PERemoveCodebaseItemMnemonic=R
+PEAddEntryMnemonic=N
+PEAddEntryItemMnemonic=N
+PERemoveEntryMnemonic=R
+PERemoveEntryItemMnemonic=R
PENewMenuItemMnemonic=N
PEOpenMenuItemMnemonic=O
PEOpenDefaultMenuItemMnemonic=D
PESaveMenuItemMnemonic=S
PEExitMenuItemMnemonic=X
PECustomPermissionsItemMnemonic=U
-PECopyCodebaseItemMnemonic=C
-PEPasteCodebaseItemMnemonic=P
+PECopyEntryItemMnemonic=C
+PEPasteEntryItemMnemonic=P
PECopyCodebaseToClipboardItemMnemonic=U
PESaveAsMenuItemMnemonic=A
-PERenameCodebaseItemMnemonic=E
+PEModifyEntryCodebaseItemMnemonic=E
PEAboutPolicyEditorItemMnemonic=A
PEPolicyEditorHelpItemMnemonic=H
# See javax.swing.KeyStroke.getKeyStroke(String)
-PEAddCodebaseItemAccelerator=ctrl shift N
-PERemoveCodebaseItemAccelerator=DEL
+PEAddEntryItemAccelerator=ctrl shift N
+PERemoveEntryItemAccelerator=DEL
PENewMenuItemAccelerator=ctrl N
PEOpenMenuItemAccelerator=ctrl O
PEOpenDefaultMenuItemAccelerator=ctrl D
@@ -763,9 +763,9 @@
PESaveAsMenuItemAccelerator=ctrl shift S
PEExitMenuItemAccelerator=ctrl Q
PECustomPermissionsItemAccelerator=ctrl U
-PECopyCodebaseItemAccelerator=ctrl C
-PEPasteCodebaseItemAccelerator=ctrl V
-PERenameCodebaseItemAccelerator=F2
+PECopyEntryItemAccelerator=ctrl C
+PEPasteEntryItemAccelerator=ctrl V
+PEModifyEntryCodebaseItemAccelerator=F2
PECopyCodebaseToClipboardItemAccelerator=ctrl shift C
PEAboutPolicyEditorCloseAccelerator=ctrl Q
diff -r f53190734752 -r e09b5c8bf3cb netx/net/sourceforge/jnlp/resources/Messages_de.properties
--- a/netx/net/sourceforge/jnlp/resources/Messages_de.properties Wed Jul 29 18:08:16 2015 +0200
+++ b/netx/net/sourceforge/jnlp/resources/Messages_de.properties Thu Jul 30 10:57:21 2015 -0400
@@ -561,14 +561,14 @@
PEGetEnvDetail=Applets das Lesen von Systemumgebungsvariablen erlauben
PECouldNotOpen=Kann die Richtliniendatei nicht \u00f6ffnen
PECouldNotSave=Kann die Richtliniendatei nicht speichern
-PEAddCodebase=Neue Codebasis hinzuf\u00fcgen
-PERemoveCodebase=Entfernen
-PECodebasePrompt=Eine neue Codebasis eingeben:
+PEAddEntry=Neue Codebasis hinzuf\u00fcgen
+PERemoveEntry=Entfernen
+PEEntryPrompt=Eine neue Codebasis eingeben:
PEGlobalSettings=Alle Applets
PESaveChanges=Sollen die \u00c4nderungen vor dem Beenden gespeichert werden?
PEChangesSaved=\u00c4nderungen gespeichert
PECheckboxLabel=Berechtigungen
-PECodebaseLabel=Codebasen
+PEEntriesLabel=Codebasen
PEFileMenu=Datei
PEOpenMenuItem=\u00d6ffnen...
PESaveMenuItem=Speichern
@@ -578,9 +578,9 @@
PECustomPermissionsItem=Benutzerdefinierte Berechtigungen...
PEFileModified=Datei\u00e4nderungswarnung
PEFileModifiedDetail=Die Richtliniendatei \u201e{0}\u201c wurde ge\u00e4ndert seit sie ge\u00f6ffnet wurde.\nNeu laden und bearbeiten vor dem Speichern?
-PEGAccesUnowenedCode=Fremden Code ausf\u00fchren
+PEGAccessUnownedCode=Fremden Code ausf\u00fchren
PEGMediaAccess=Medienzugriff
-PEGrightClick=Rechtsklick zum auf-/zuklappen
+PEGRightClick=Rechtsklick zum auf-/zuklappen
PEGReadFileSystem=Zum System lesen
PEGWriteFileSystem=Zum System schreiben
@@ -597,9 +597,9 @@
# PolicyEditor key mnemonics. See java.awt.event.KeyEvent.VK_*
# N
-PEAddCodebaseMnemonic=78
+PEAddEntryMnemonic=78
# E
-PERemoveCodebaseMnemonic=69
+PERemoveEntryMnemonic=69
# O
PEOkButtonMnemonic=79
# A
diff -r f53190734752 -r e09b5c8bf3cb netx/net/sourceforge/jnlp/resources/Messages_pl.properties
--- a/netx/net/sourceforge/jnlp/resources/Messages_pl.properties Wed Jul 29 18:08:16 2015 +0200
+++ b/netx/net/sourceforge/jnlp/resources/Messages_pl.properties Thu Jul 30 10:57:21 2015 -0400
@@ -558,33 +558,33 @@
PEGetEnvDetail=Zezwala aplet-om na odczyt zmiennych \u015brodowiskowych
PECouldNotOpen=Nie mo\u017cna otworzy\u0107 pliku wytycznej
PECouldNotSave=Nie mo\u017cna zapisa\u0107 pliku wytycznej
-PEAddCodebase=Dodaj baz\u0119 kodu
-PERemoveCodebase=Usu\u0144
-PECodebasePrompt=Podaj now\u0105 baz\u0119 kodu
+PEAddEntry=Dodaj baz\u0119 kodu
+PERemoveEntry=Usu\u0144
+PEEntryPrompt=Podaj now\u0105 baz\u0119 kodu
PEGlobalSettings=Wszystkie Applet-y
PESaveChanges=Zapisa\u0107 zmiany przed zako\u0144czeniem?
PEChangesSaved=Zapisano zmiany
PECheckboxLabel=Uprawniena
-PECodebaseLabel=Bazy kodu
+PEEntriesLabel=Bazy kodu
PEFileMenu=Plik
PEOpenMenuItem=Otw\u00f3rz...
PESaveMenuItem=Zapisz
PESaveAsMenuItem=Zapisz\u00a0jako...
PEExitMenuItem=Zako\u0144cz
PEEditMenu=Edycja
-PERenameCodebaseItem=Przemianuj baz\u0119 kodu
-PECopyCodebaseItem=Kopiuj baz\u0119 kodu
-PEPasteCodebaseItem=Wklej baz\u0119 kodu
+PEModifyCodebaseItem=Przemianuj baz\u0119 kodu
+PECopyEntryItem=Kopiuj baz\u0119 kodu
+PEPasteEntryItem=Wklej baz\u0119 kodu
PECopyCodebaseToClipboardItem=Kopiuj URL bazy kodu do schowka
-PERenameCodebase=Przemianowana baza kodu:
-PEPasteCodebase=Skopiowana baza kodu:
+PEModifyCodebase=Przemianowana baza kodu:
+PEPasteEntry=Skopiowana baza kodu:
PEViewMenu=Widok
PECustomPermissionsItem=Uprawnienia\u00a0dostosowane...
PEFileModified=Ostrze\u017cenie o modyfikacji pliku
PEFileModifiedDetail=Plik wytycznej \u201e{0}\u201d zosta\u0142 zmodyfikowany od jego otwarcia. Czy chcesz go za\u0142adowa\u0107 ponownie?
-PEGAccesUnowenedCode=Wykonanie obcego kodu
+PEGAccessUnownedCode=Wykonanie obcego kodu
PEGMediaAccess=Dost\u0119p do medi\u00f3w
-PEGrightClick=Kliknij prawym klawiszem myszy, aby ro/zwin\u0105\u0107
+PEGRightClick=Kliknij prawym klawiszem myszy, aby ro/zwin\u0105\u0107
PEGReadFileSystem=Odczyt w system
PEGWriteFileSystem=Zapis w system
diff -r f53190734752 -r e09b5c8bf3cb netx/net/sourceforge/jnlp/security/dialogs/TemporaryPermissionsButton.java
--- a/netx/net/sourceforge/jnlp/security/dialogs/TemporaryPermissionsButton.java Wed Jul 29 18:08:16 2015 +0200
+++ b/netx/net/sourceforge/jnlp/security/dialogs/TemporaryPermissionsButton.java Thu Jul 30 10:57:21 2015 -0400
@@ -48,6 +48,7 @@
import java.net.URL;
import java.security.Permission;
import java.util.Collection;
More information about the distro-pkg-dev
mailing list