Difference between revisions of "OpenEMR Wiki"

From OpenEMR Project Wiki
 
(11 intermediate revisions by the same user not shown)
Line 7: Line 7:
:*Google Analytics Integration (Version 2.0.2)
:*Google Analytics Integration (Version 2.0.2)
:*Google Analytics Links (Version 1.2)
:*Google Analytics Links (Version 1.2)
::*Modified googa.php code to open a new window when open link (added target="_blank").
:*EmbedVideo (Version [http://github.com/Whiteknight/mediawiki-embedvideo 'master' from github on 11/1/2011])
:*EmbedVideo (Version [http://github.com/Whiteknight/mediawiki-embedvideo 'master' from github on 11/1/2011])
::*Modified this code to allow full screen view of embedded youtube videos per [http://www.mediawiki.org/wiki/Extension:EmbedVideo instructions here]
::*Modified this code to allow full screen view of embedded youtube videos per [http://www.mediawiki.org/wiki/Extension:EmbedVideo instructions here]
:*ExpandTemplates (Build for Mediawiki version 16.x)
:*ParserFunctions (Version 1.3.0) (Build for Mediawiki version 16.x)
:*Cite (Build for Mediawiki version 16.x; note had to download from Cite prior SVN repository)
:*RenameUser (Build for Mediawiki version 16.x; note had to download from RenameUser prior SVN repository)


*A new skin was also created that was based on MonoBook (note all other skin options were removed to force use of this skin):
*A new skin was also created that was based on MonoBook (note all other skin options were removed to force use of this skin):
:*openemr
:*openemr


*In order to support the 'openemr' skin, modifications were made in the wiki/includes/OutputPage.php script:
*Internationalization
:*At line 2215:
**Utilized mechanism from here: http://wiki.openstreetmap.org/
<pre>
**Involved importing lots of templates and changes to MediaWiki:Common.css and MediaWiki:Common.js pages.
# NEED TO ADD THE ID HERE (wiki vs download vs demo)
**Main description page is here: [[Wiki Translation]]
                # USE THE DOCUMENT TITLE
                if (Sanitizer::escapeClass($this->getTitle()->getPrefixedText()) == "OpenEMR_Features") {
                    $bodyAttrs['id'] = 'features';
                }
                else if (Sanitizer::escapeClass($this->getTitle()->getPrefixedText()) == "OpenEMR_Version_4_1_0_Demo") {
                    $bodyAttrs['id'] = 'demo';
                }
                else if (Sanitizer::escapeClass($this->getTitle()->getPrefixedText()) == "OpenEMR_Downloads") {
                    $bodyAttrs['id'] = 'download';
                }
                else {
                    $bodyAttrs['id'] = 'wiki';
                }
</pre>
 
 
 
[[Category:Project Tools]]
[[Category:Project Tools]]

Latest revision as of 07:50, 28 August 2016

  • This is based on mediwiki version 1.16.5 with following extensions:
  • Confirm user accounts
  • MultipleUpload (Version 2.0)
  • Password Reset (Version 1.7)
  • Google Analytics Integration (Version 2.0.2)
  • Google Analytics Links (Version 1.2)
  • Modified googa.php code to open a new window when open link (added target="_blank").
  • Modified this code to allow full screen view of embedded youtube videos per instructions here
  • ExpandTemplates (Build for Mediawiki version 16.x)
  • ParserFunctions (Version 1.3.0) (Build for Mediawiki version 16.x)
  • Cite (Build for Mediawiki version 16.x; note had to download from Cite prior SVN repository)
  • RenameUser (Build for Mediawiki version 16.x; note had to download from RenameUser prior SVN repository)
  • A new skin was also created that was based on MonoBook (note all other skin options were removed to force use of this skin):
  • openemr
  • Internationalization