Bug 10271: (follow-up) correct tabs
[koha_fer] / cataloguing / value_builder / marc21_field_245h.pl
index e1a26d1..9ab2ca1 100755 (executable)
 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
 #
-# You should have received a copy of the GNU General Public License along with
-# Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
-# Suite 330, Boston, MA  02111-1307 USA
+# You should have received a copy of the GNU General Public License along
+# with Koha; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
 use strict;
+#use warnings; FIXME - Bug 2505
 use C4::Context;
 
-=head1
+=head1 FUNCTIONS
 
-plugin_parameters : other parameters added when the plugin is called by the dopop function
+=head2 plugin_parameters
+
+other parameters added when the plugin is called by the dopop function
 
 =cut
 
@@ -31,17 +34,17 @@ sub plugin_parameters {
     return "";
 }
 
-=head1
+=head2 plugin_javascript
 
-plugin_javascript : the javascript function called when the user enters the subfield.
+Thee javascript function called when the user enters the subfield.
 contain 3 javascript functions :
-* one called when the field is entered (OnFocus). Named FocusXXX
-* one called when the field is leaved (onBlur). Named BlurXXX
-* one called when the ... link is clicked (<a href="javascript:function">) named ClicXXX
+ * one called when the field is entered (OnFocus). Named FocusXXX
+ * one called when the field is leaved (onBlur). Named BlurXXX
+ * one called when the ... link is clicked (<a href="javascript:function">) named ClicXXX
 
 returns :
-* XXX
-* a variable containing the 3 scripts.
+ * XXX
+ * a variable containing the 3 scripts.
 the 3 scripts are inserted after the <input> in the html code
 
 =cut
@@ -78,9 +81,9 @@ function Clic$function_name(subfield_managed) {
 return ($function_name,$res);
 }
 
-=head1
+=head2 plugin
 
-plugin : the true value_builded. The screen that is open in the popup window.
+The true value_builded. The screen that is open in the popup window.
 
 =cut