62 |
|
|
63 |
|
# make a new store handler |
64 |
|
my $parentconfig=$self->config; |
65 |
< |
$self->config(Configuration::ConfigureStore); |
65 |
> |
$self->config(Configuration::ConfigureStore->new()); |
66 |
|
$self->config()->db("local",$ad); |
67 |
|
$self->config()->db("parent",$parentconfig); |
68 |
|
$self->config()->policy("cache","local"); |
70 |
|
|
71 |
|
# --- download everything first |
72 |
|
# FIX-ME --- cacheing is broken |
73 |
< |
# $self->parse("download"); |
73 |
> |
$self->parse("download"); |
74 |
|
|
75 |
|
# --- and parse the setup file |
76 |
|
$self->parse("setup"); |
137 |
|
my $docref=$self->activatedoc($url); |
138 |
|
# Set up the document |
139 |
|
$docref->setup(); |
140 |
< |
$self->config()->savepolicy("local"); |
140 |
> |
$self->config()->storepolicy("local"); |
141 |
|
$docref->save(); |
142 |
|
} |
143 |
|
|