idtglobal.pm (b274bc22) idtglobal.pm (1ba1fd99)
1#**************************************************************
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance

--- 42 unchanged lines hidden (view full) ---

51 $$stringref =~ s/_Optional_/_o_/;
52 $$stringref =~ s/_Tools_/_tl_/;
53 $$stringref =~ s/_Wrt_Flt_/_w_f_/;
54 $$stringref =~ s/_Javafilter_/_jf_/;
55 $$stringref =~ s/_Productivity_/_pr_/;
56 $$stringref =~ s/_Replacement_/_rpl_/;
57}
58
1#**************************************************************
2#
3# Licensed to the Apache Software Foundation (ASF) under one
4# or more contributor license agreements. See the NOTICE file
5# distributed with this work for additional information
6# regarding copyright ownership. The ASF licenses this file
7# to you under the Apache License, Version 2.0 (the
8# "License"); you may not use this file except in compliance

--- 42 unchanged lines hidden (view full) ---

51 $$stringref =~ s/_Optional_/_o_/;
52 $$stringref =~ s/_Tools_/_tl_/;
53 $$stringref =~ s/_Wrt_Flt_/_w_f_/;
54 $$stringref =~ s/_Javafilter_/_jf_/;
55 $$stringref =~ s/_Productivity_/_pr_/;
56 $$stringref =~ s/_Replacement_/_rpl_/;
57}
58
59=head2 create_shortend_feature_gid ($feature_name)
60
61 This is a side effect free version of shorten_feature_gid.
62 The shortened feature name is returned instead of overwriting the given name.
63
64=cut
65sub create_shortend_feature_gid ($)
66{
67 my ($feature_name) = @_;
68 shorten_feature_gid(\$feature_name);
69 return $feature_name;
70}
71
59############################################
60# Getting the next free number, that
61# can be added.
62# Sample: 01-44-~1.DAT, 01-44-~2.DAT, ...
63############################################
64
65sub get_next_free_number
66{

--- 2376 unchanged lines hidden ---
72############################################
73# Getting the next free number, that
74# can be added.
75# Sample: 01-44-~1.DAT, 01-44-~2.DAT, ...
76############################################
77
78sub get_next_free_number
79{

--- 2376 unchanged lines hidden ---