-
Notifications
You must be signed in to change notification settings - Fork 77
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged tests #338
Open
victorddiniz
wants to merge
24
commits into
spgroup:master
Choose a base branch
from
unknown repository
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Merged tests #338
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
97465da
vddmFeatures
victorddiniz 7e90997
sccFeatures
scohen3594 ddbe833
New and modified scenarios in Funder and Member features
cb16 2200209
Scenarios novos/modificados nas features
mjuliagfl 05f1f34
New modified in Book.feature and News.feature
leoribeiro36 a2f398d
New modified in Authentication.feature
leoribeiro36 77a9789
Merge remote-tracking branch 'origin/sccBranch' into mergedScenes
victorddiniz 0be8acf
Conflict sccBranch mjgflBranch
victorddiniz baa9fd9
Conflict cscbbBranch vddmBranch
victorddiniz 72066b2
Conflict sccBranch lrbBranch
victorddiniz d23c033
#if($fileThesis)
victorddiniz 6b4c79f
Parametrizações e Correção gramatical
victorddiniz 516f508
Correção de informação vaga
victorddiniz ca9a467
Correção de Precisão
victorddiniz eaae3d4
no test
leoribeiro36 fd34ce0
vddm commit changes
victorddiniz 5a96b65
Merge remote-tracking branch 'origin/mergedScenes' into mergedScenes
victorddiniz 1bda4fb
Modificações nas features e testes criados
scohen3594 0d1f4fd
Duplicate funder test
victorddiniz a483302
mjgfl BookChaptertest
victorddiniz b4ee25b
Other tests
cb16 857a284
Merge remote-tracking branch 'origin/cscbb2' into mergedTests
victorddiniz b221903
Conflict scc
victorddiniz e1442de
Merge remote-tracking branch 'origin/lrbBranch2' into mergedTests
victorddiniz File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Binary file not shown.
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
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
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
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,79 @@ | ||
<html> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> | ||
<title>Simple PDF demo2</title> | ||
<style> | ||
.sample_table { | ||
width:60%; | ||
background-color:#b2b2b2; | ||
} | ||
.sample_table th { | ||
text-align:center; | ||
text-decoration:underline; | ||
} | ||
.sample_table td { | ||
padding:7px; | ||
background-color: #fff; | ||
} | ||
.small_text { | ||
font-size:8pt; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<h1>Sample PDF Output</h1> | ||
<h2>This is simple HTML</h2> | ||
<h2 style='color:red'>this has inline CSS</h2> | ||
|
||
<h3>Here is some data passed from the contorller...</h3> | ||
<p>Information gathered from the controller: ${randomString}</p> | ||
|
||
<h3>Here is some information sent in the URL and handled by a controller (get variables):</h3> | ||
<table class="sample_table"> | ||
<thead> | ||
<tr> | ||
<th>ID</th> | ||
<th>Name</th> | ||
<th>Age</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr> | ||
<td>${id}</td> | ||
<td>${name}</td> | ||
<td>${age}</td> | ||
</tr> | ||
<tr> | ||
<td colspan="3" class="small_text">styled with css...</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
<img src="<g:resource dir='images' file='laptop.jpg' />" alt="laptop" title="laptop" /> | ||
|
||
<form> | ||
<p>checkbox: | ||
%{-- checkboxes used to cause an error in pdf generation, but now they simply don't show up... --}% | ||
<input type="checkbox" checked="checked" name="sample_box" title="sample_box" /> | ||
</p> | ||
%{-- text field sample --}% | ||
<p>Text Input: | ||
<input name="textField" /> | ||
</p> | ||
</form> | ||
|
||
<h3>Here is some information gathered from a form and handled grails render method (post variables):</h3> | ||
<p>Favorite food: ${pdf?.food}</p> | ||
<p>Favorite food: ${pdf?.food.toString()}</p> | ||
<p>Hometown: ${pdf?.hometown}</p> | ||
|
||
<p>${pdf}</p> | ||
|
||
<p>Images with relative URL's are automatically resolved by the the modified version of XHTMLrenderer included with the plugin</p> | ||
<img src="<g:resource dir='images' file='laptop.jpg' />" alt="laptop" title="laptop" /> | ||
|
||
<p>Images with absolute URI's also do just fine:</p> | ||
<img src="http://system76.com/images/nb1_front_med.jpg" alt="laptop2" title="laptop2" /> | ||
|
||
<p><strong>Hint:</strong> One way to style gsp's that you intend to make into pdf's is to have two seperate style sheets one for media="print" and one for media="screen". The print style sheet will be used to style the PDF, and if PDF generation fails you will get a styled HTML view that isn't all weird because of fonts sized in pt and such.</p> | ||
</body> | ||
</html> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
não pode dar commit neste tipo de arquivo