dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #14344
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 4842: Removed unused files
------------------------------------------------------------
revno: 4842
committer: Lars Helge Overland <larshelge@xxxxxxxxx>
branch nick: dhis2
timestamp: Wed 2011-10-05 17:38:46 +0200
message:
Removed unused files
removed:
dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/images/buttonblue.png
dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/jQuery/jquery.jqprint.0.3.js
modified:
dhis-2/dhis-web/dhis-web-caseentry/src/main/resources/org/hisp/dhis/caseentry/i18n_module.properties
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-caseentry/src/main/resources/org/hisp/dhis/caseentry/i18n_module.properties'
--- dhis-2/dhis-web/dhis-web-caseentry/src/main/resources/org/hisp/dhis/caseentry/i18n_module.properties 2011-10-05 03:39:54 +0000
+++ dhis-2/dhis-web/dhis-web-caseentry/src/main/resources/org/hisp/dhis/caseentry/i18n_module.properties 2011-10-05 15:38:46 +0000
@@ -433,4 +433,6 @@
patient_profile = Beneficiary profile
other_details = Other details
register_event = Register event
-enroll_to_program = Enroll to program
\ No newline at end of file
+enroll_to_program = Enroll to program
+add_dependent = Add dependent
+edit_profile = Edit profile
\ No newline at end of file
=== removed file 'dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/images/buttonblue.png'
Binary files dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/images/buttonblue.png 2010-09-08 10:40:26 +0000 and dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/images/buttonblue.png 1970-01-01 00:00:00 +0000 differ
=== removed file 'dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/jQuery/jquery.jqprint.0.3.js'
--- dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/jQuery/jquery.jqprint.0.3.js 2010-09-16 07:33:22 +0000
+++ dhis-2/dhis-web/dhis-web-commons-resources/src/main/webapp/dhis-web-commons/javascripts/jQuery/jquery.jqprint.0.3.js 1970-01-01 00:00:00 +0000
@@ -1,76 +0,0 @@
-// -----------------------------------------------------------------------
-// Eros Fratini - eros@xxxxxxxxxxx
-// jqprint 0.3
-//
-// - 19/06/2009 - some new implementations, added Opera support
-// - 11/05/2009 - first sketch
-//
-// Printing plug-in for jQuery, evolution of jPrintArea: http://plugins.jquery.com/project/jPrintArea
-// requires jQuery 1.3.x
-//
-// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
-//------------------------------------------------------------------------
-
-(function($) {
- var opt;
-
- $.fn.jqprint = function (options) {
- opt = $.extend({}, $.fn.jqprint.defaults, options);
-
- var $element = (this instanceof jQuery) ? this : $(this);
-
- if (opt.operaSupport && $.browser.opera)
- {
- var tab = window.open("","jqPrint-preview");
- tab.document.open();
-
- var doc = tab.document;
- }
- else
- {
- var $iframe = $("<iframe />");
-
- if (!opt.debug) { $iframe.css({ position: "absolute", width: "0px", height: "0px", left: "-600px", top: "-600px" }); }
-
- $iframe.appendTo("body");
- var doc = $iframe[0].contentWindow.document;
- }
-
- if (opt.importCSS)
- {
- if ($("link[media=print]").length > 0)
- {
- $("link[media=print]").each( function() {
- doc.write("<link type='text/css' rel='stylesheet' href='" + $(this).attr("href") + "' media='print' />");
- });
- }
- else
- {
- $("link").each( function() {
- doc.write("<link type='text/css' rel='stylesheet' href='" + $(this).attr("href") + "' />");
- });
- }
- }
-
- if (opt.printContainer) { doc.write($element.outer()); }
- else { $element.each( function() { doc.write($(this).html()); }); }
-
- doc.close();
-
- (opt.operaSupport && $.browser.opera ? tab : $iframe[0].contentWindow).focus();
- setTimeout( function() { (opt.operaSupport && $.browser.opera ? tab : $iframe[0].contentWindow).print(); if (tab) { tab.close(); } }, 1000);
- }
-
- $.fn.jqprint.defaults = {
- debug: false,
- importCSS: true,
- printContainer: true,
- operaSupport: true
- };
-
- // Thanks to 9__, found at http://users.livejournal.com/9__/380664.html
- jQuery.fn.outer = function() {
- return $($('<div></div>').html(this.clone())).html();
- }
-})(jQuery);
-