-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update Dompdf, code cleanup, and makefile
- Loading branch information
Showing
81 changed files
with
1,964 additions
and
43,895 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,8 @@ | ||
extract = $(shell grep -A2 $(1) Plugin.php | tail -n1 | tr -d " ;'" | sed "s/return//") | ||
|
||
plugin = $(call extract, getPluginName) | ||
version = $(call extract, getPluginVersion) | ||
|
||
all: | ||
@echo "Build archive for plugin ${plugin} version=${version}" | ||
@git archive HEAD --prefix=${plugin}/ --format=zip -o ${plugin}-${version}.zip |
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 |
---|---|---|
@@ -1,16 +1,16 @@ | ||
<div class="panel"><h1>Task2PDF Options</h1> | ||
<br> | ||
<h2><?= t('Font Options') ?>:</h2> | ||
<?= $this->form->radio('task2pdf_cjk', t('Normal Font set when creating PDFs') , 1, isset($values['task2pdf_cjk'])&& $values['task2pdf_cjk']==1) ?> | ||
<?= $this->form->radio('task2pdf_cjk', t('CJK Font set when creating PDFs') , 2, isset($values['task2pdf_cjk'])&& $values['task2pdf_cjk']==2) ?> | ||
<?= $this->form->radio('task2pdf_cjk', t('Normal Font set when creating PDFs'), 1, isset($values['task2pdf_cjk'])&& $values['task2pdf_cjk']==1) ?> | ||
<?= $this->form->radio('task2pdf_cjk', t('CJK Font set when creating PDFs'), 2, isset($values['task2pdf_cjk'])&& $values['task2pdf_cjk']==2) ?> | ||
<br> | ||
<h2><?= t('Embed Task Files Options') ?>:</h2> | ||
<?= $this->form->radio('task2pdf_embed_task', t('Embed Files when creating a PDF for a Task') , 1, isset($values['task2pdf_embed_task'])&& $values['task2pdf_embed_task']==1) ?> | ||
<?= $this->form->radio('task2pdf_embed_task', t('Do not embed Files when creating a PDF for a Task') , 2, isset($values['task2pdf_embed_task'])&& $values['task2pdf_embed_task']==2) ?> | ||
<?= $this->form->radio('task2pdf_embed_projects', t('Embed Files when creating a PDF for all Open Tasks in a Project') , 1, isset($values['task2pdf_embed_projects'])&& $values['task2pdf_embed_projects']==1) ?> | ||
<?= $this->form->radio('task2pdf_embed_projects', t('Do Not Embed Files when creating a PDF for all Open Tasks in a Project') , 2, isset($values['task2pdf_embed_projects'])&& $values['task2pdf_embed_projects']==2) ?> | ||
<?= $this->form->radio('task2pdf_embed_task', t('Embed Files when creating a PDF for a Task'), 1, isset($values['task2pdf_embed_task'])&& $values['task2pdf_embed_task']==1) ?> | ||
<?= $this->form->radio('task2pdf_embed_task', t('Do not embed Files when creating a PDF for a Task'), 2, isset($values['task2pdf_embed_task'])&& $values['task2pdf_embed_task']==2) ?> | ||
<?= $this->form->radio('task2pdf_embed_projects', t('Embed Files when creating a PDF for all Open Tasks in a Project'), 1, isset($values['task2pdf_embed_projects'])&& $values['task2pdf_embed_projects']==1) ?> | ||
<?= $this->form->radio('task2pdf_embed_projects', t('Do Not Embed Files when creating a PDF for all Open Tasks in a Project'), 2, isset($values['task2pdf_embed_projects'])&& $values['task2pdf_embed_projects']==2) ?> | ||
<br> | ||
<h2><?= t('PDF Download or Inline') ?>:</h2> | ||
<?= $this->form->radio('task2pdf_attachment', t('Show PDF inline Browser') , 1, isset($values['task2pdf_attachment'])&& $values['task2pdf_attachment']==1) ?> | ||
<?= $this->form->radio('task2pdf_attachment', t('Download pdf') , 2, isset($values['task2pdf_attachment'])&& $values['task2pdf_attachment']==2) ?> | ||
<?= $this->form->radio('task2pdf_attachment', t('Show PDF inline Browser'), 1, isset($values['task2pdf_attachment'])&& $values['task2pdf_attachment']==1) ?> | ||
<?= $this->form->radio('task2pdf_attachment', t('Download pdf'), 2, isset($values['task2pdf_attachment'])&& $values['task2pdf_attachment']==2) ?> | ||
</div> |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.