annotate Lib/IMPL/Object/Clonable.pm @ 245:7c517134c42f

Added Unsupported media type Web exception corrected resourceLocation setting in the resource Implemented localizable resources for text messages fixed TT view scopings, INIT block in controls now sets globals correctly.
author sergey
date Mon, 29 Oct 2012 03:15:22 +0400
parents 4d0e1962161c
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
163
6ce1f052b90a temp commit
wizard
parents:
diff changeset
1 package IMPL::Object::Clonable;
6ce1f052b90a temp commit
wizard
parents:
diff changeset
2 use strict;
6ce1f052b90a temp commit
wizard
parents:
diff changeset
3
174
d920d2b70230 minor changes
sergey
parents: 171
diff changeset
4 use IMPL::lang qw(clone);
163
6ce1f052b90a temp commit
wizard
parents:
diff changeset
5
165
76515373dac0 Added Class::Template,
wizard
parents: 163
diff changeset
6 sub Clone {
194
4d0e1962161c Replaced tabs with spaces
cin
parents: 180
diff changeset
7 clone($_[0]);
163
6ce1f052b90a temp commit
wizard
parents:
diff changeset
8 }
6ce1f052b90a temp commit
wizard
parents:
diff changeset
9
180
d1676be8afcc Перекодировка в utf-8
sourcer
parents: 174
diff changeset
10 1;