mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-05-22 09:31:22 +00:00
Merge branch 'seeddms-5.1.x' into seeddms-6.0.x
This commit is contained in:
commit
3e12261637
21
.htaccess
Normal file
21
.htaccess
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
RewriteEngine On
|
||||||
|
# Store the current location in an environment variable CWD to use
|
||||||
|
# mod_rewrite in .htaccess files without knowing the RewriteBase
|
||||||
|
RewriteCond $0#%{REQUEST_URI} ([^#]*)#(.*)\1$
|
||||||
|
RewriteRule ^.*$ - [E=CWD:%2]
|
||||||
|
|
||||||
|
# Anything below the following dirs will never be rewritten
|
||||||
|
RewriteRule "^pdfviewer/.*$" "-" [L]
|
||||||
|
RewriteRule "^views/bootstrap/images.*$" "-" [L]
|
||||||
|
RewriteRule "^out/images.*$" "-" [L]
|
||||||
|
RewriteRule "^styles/.*$" "-" [L]
|
||||||
|
|
||||||
|
# Accessing a file in an extension is always possible
|
||||||
|
# Added for old extensions which do not use routes
|
||||||
|
RewriteCond %{REQUEST_FILENAME} -f
|
||||||
|
RewriteRule "^ext/.*$" "-" [L]
|
||||||
|
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-d
|
||||||
|
RewriteCond %{REQUEST_FILENAME} !-l
|
||||||
|
RewriteRule ^.*$ %{ENV:CWD}index.php [QSA,L]
|
|
@ -131,6 +131,7 @@
|
||||||
- added Slim-Framework for a simple router
|
- added Slim-Framework for a simple router
|
||||||
- move most of the login code into a controller, added more hooks in login process
|
- move most of the login code into a controller, added more hooks in login process
|
||||||
- failed login is reported in log file
|
- failed login is reported in log file
|
||||||
|
- update of cytoscape library, fix output of workflow on TriggerWorkflowGraph
|
||||||
|
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
Changes in version 5.1.9
|
Changes in version 5.1.9
|
||||||
|
|
31
styles/bootstrap/cytoscape/cytoscape.min.js
vendored
31
styles/bootstrap/cytoscape/cytoscape.min.js
vendored
File diff suppressed because one or more lines are too long
|
@ -120,7 +120,7 @@ $(document).ready(function() {
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div id="workflowgraph" class="span8">
|
<div id="workflowgraph" class="span8">
|
||||||
<iframe src="out.WorkflowGraph.php?workflow=<?php echo $workflow->getID(); ?>&transition=<?php echo $transition->getID(); ?>&documentid=<?php echo $document->getID(); ?>" width="100%" height="500" style="border: 1px solid #AAA;"></iframe>
|
<iframe src="out.WorkflowGraph.php?workflow=<?php echo $workflow->getID(); ?>&transitions[]=<?php echo $transition->getID(); ?>&documentid=<?php echo $document->getID(); ?>" width="100%" height="500" style="border: 1px solid #AAA;"></iframe>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<?php
|
<?php
|
||||||
|
|
Loading…
Reference in New Issue
Block a user