|
30.
|
|
|
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../bin/parsechangelog:260 ../lib/Parse/DebianChangelog.pm:1271
../lib/Parse/DebianChangelog/ChangesFilters.pm:182
../lib/Parse/DebianChangelog/Entry.pm:166
../lib/Parse/DebianChangelog/Util.pm:175
|
|
31.
|
|
|
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../bin/parsechangelog:265 ../lib/Parse/DebianChangelog.pm:1276
../lib/Parse/DebianChangelog/ChangesFilters.pm:187
../lib/Parse/DebianChangelog/Entry.pm:171
../lib/Parse/DebianChangelog/Util.pm:180
|
|
32.
|
|
|
Parse::DebianChangelog - parse Debian changelogs and output them in other formats
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../lib/Parse/DebianChangelog.pm:24
|
|
33.
|
|
|
use Parse::DebianChangelog;
|
|
|
represents a line break.
Start a new line in the equivalent position in the translation.
|
|
|
represents a space character.
Enter a space in the equivalent position in the translation.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../lib/Parse/DebianChangelog.pm:28
|
|
34.
|
|
|
my $chglog = Parse::DebianChangelog->init( { infile => 'debian/changelog',
HTML => { outfile => 'changelog.html' } );
$chglog->html;
|
|
|
represents a line break.
Start a new line in the equivalent position in the translation.
|
|
|
represents a space character.
Enter a space in the equivalent position in the translation.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../lib/Parse/DebianChangelog.pm:30
|
|
35.
|
|
|
# the following is semantically equivalent
my $chglog = Parse::DebianChangelog->init();
$chglog->parse( { infile => 'debian/changelog' } );
$chglog->html( { outfile => 'changelog.html' } );
|
|
|
represents a line break.
Start a new line in the equivalent position in the translation.
|
|
|
represents a space character.
Enter a space in the equivalent position in the translation.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../lib/Parse/DebianChangelog.pm:34
|
|
36.
|
|
|
my $changes = $chglog->dpkg_str( { since => '1.0-1' } );
print $changes;
|
|
|
represents a line break.
Start a new line in the equivalent position in the translation.
|
|
|
represents a space character.
Enter a space in the equivalent position in the translation.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../lib/Parse/DebianChangelog.pm:39
|
|
37.
|
|
|
Parse::DebianChangelog parses Debian changelogs as described in the Debian policy (version 3.6.2.1 at the time of this writing). See section L<"SEE ALSO"> for locations where to find this definition.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../lib/Parse/DebianChangelog.pm:44
|
|
38.
|
|
|
The parser tries to ignore most cruft like # or /* */ style comments, CVS comments, vim variables, emacs local variables and stuff from older changelogs with other formats at the end of the file. NOTE: most of these are ignored silently currently, there is no parser error issued for them. This should become configurable in the future.
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../lib/Parse/DebianChangelog.pm:48
|
|
39.
|
|
|
Beside giving access to the details of the parsed file via the L<"data"> method, Parse::DebianChangelog also supports converting these changelogs to various other formats. These are currently:
|
|
|
|
(no translation yet)
|
|
|
|
Located in
../lib/Parse/DebianChangelog.pm:55
|