This file contains hidden or 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
<!DOCTYPE html SYSTEM> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>News and information from LightGuardjp :</title> | |
<meta content="width=device-width, initial-scale=1.0" name="viewport" /> | |
<style> | |
body { | |
padding-top: 60px; | |
} |
This file contains hidden or 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
Apache DeltaSpike Overview | |
========================== | |
Jason Porter | |
v1.0, Feb 2013 | |
:title: Apache DeltaSpike Overview | |
:description: Brief 20 minute overview of Apache DeltaSpike for RWP F2F 2013 | |
:copyright: CC BY-SA 2.0 | |
:imagesdir: images | |
:backend: dzslides | |
:linkcss: true |
This file contains hidden or 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
asciidoctor(1) | |
============== | |
:doctype: manpage | |
NAME | |
---- | |
asciidoctor - converts an AsciiDoc text file to HTML, DocBook and other formats | |
This file contains hidden or 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
#!/bin/sh | |
killall Safari | |
killall Google\ Chrome | |
rm -rf /Library/Internet\ Plug-Ins/Silverlight.plugin | |
hdiutil attach /Users/tessieporter/Downloads/Silverlight-1.dmg | |
installer -pkg /Volumes/Silverlight/Silverlight.pkg/ -target "/" | |
hdiutil detach /Volumes/Silverlight |
This file contains hidden or 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
@Inject | |
private IdentitySession identitySession; | |
@Inject | |
private Identity identity; | |
@Inject | |
private UserTransaction tx; | |
@Before |
This file contains hidden or 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
diff --git a/impl/src/main/java/org/jboss/seam/faces/view/config/ViewConfigExtension.java b/impl/src/main/java/org/jboss/seam/faces/view/config/ViewConfigExtension.java | |
index 8d9cc59..610be78 100644 | |
--- a/impl/src/main/java/org/jboss/seam/faces/view/config/ViewConfigExtension.java | |
+++ b/impl/src/main/java/org/jboss/seam/faces/view/config/ViewConfigExtension.java | |
@@ -59,6 +60,14 @@ public class ViewConfigExtension implements Extension { | |
log.warn("ViewConfig annotation should only be applied to interfaces, and [" + tp.getJavaClass() | |
+ "] is not an interface."); | |
} else { | |
+ // SEAMFACES-210 | |
+ boolean securityNotFound = false; |
This file contains hidden or 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
public void handleAuthorizationException(@Handles CaughtException<AuthorizationException> evt) { | |
String newTrace = new ExceptionStackOutput(evt.getException(), new StackFrameFilter() { | |
public StackFrameFilterResult process(StackFrame frame) { | |
return StackFrameFilterResult.TERMINATE; | |
}).printTrace(); | |
messages.error("You do not have the necessary permissions to perform that operation", ""); | |
evt.handled(); | |
} |
This file contains hidden or 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
<!DOCTYPE html PUBLIC "-//W4C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8"/> | |
<title>Google AJAX Search API Sample</title> | |
<script src="http://www.google.com/jsapi" type="text/javascript"></script> | |
<script type="text/javascript"> | |
/* | |
* How to load a feed via the Feeds API. | |
*/ |
This file contains hidden or 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
parent | |
- combined | |
- dist | |
- src | |
- main | |
- assembly (contains assembly.xml, licence.txt, notice.txt, readme.txt) | |
- docs | |
- src | |
- main | |
- assembly (contains assembly.xml) |