blob: 123a56c1eaa87dc1bf70fd7a0d0ca34a962c32cf [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
import logging
from tg import config
from ming.orm import session
import sfx
from allura import model as M
from allura.lib import helpers as h
from sfx.model import tables as T
log = logging.getLogger(__name__)
def main():
sfx.middleware.configure_databases(h.config_with_prefix(config, 'sfx.'))
topic_trove = T.trove_cat.select(
T.trove_cat.c.shortname == 'topic').execute().fetchone()
M.ProjectCategory.query.remove()
for t in T.trove_cat.select(
T.trove_cat.c.parent == topic_trove.trove_cat_id).execute():
parent = M.ProjectCategory(
name=t.shortname, label=t.fullname, description=t.description)
for tt in T.trove_cat.select(
T.trove_cat.c.parent == t.trove_cat_id).execute():
M.ProjectCategory(parent_id=parent._id,
name=tt.shortname, label=tt.fullname, description=tt.description)
session(M.ProjectCategory).flush()
if __name__ == '__main__':
main()