Example #1
0
def evolve(root):
    # Probably a fossil left over from Karl2 to Karl3 migration.  Some
    # addresses are in the catalog document_map as unicode objects, when they
    # should be UTF-8 encoded strings.
    docmap = find_catalog(root).document_map
    for docid, path in list(docmap.docid_to_address.items()):
        if isinstance(path, unicode):
            print "Converting unicode path in document map:"
            print "\t%s" % path.encode('UTF-8')
            del docmap.address_to_docid[path]
            path = urllib.quote(path.encode('UTF-8'))
            docmap.address_to_docid[path] = docid
            docmap.docid_to_address[docid] = path

    # We have a few broken objects again.  Why?
    remove_broken_objects(root, sys.stdout)

    # Prune catalog
    prune_catalog(root, sys.stdout)
Example #2
0
def evolve(root):
    # Probably a fossil left over from Karl2 to Karl3 migration.  Some
    # addresses are in the catalog document_map as unicode objects, when they
    # should be UTF-8 encoded strings.
    docmap = find_catalog(root).document_map
    for docid, path in list(docmap.docid_to_address.items()):
        if isinstance(path, unicode):
            print "Converting unicode path in document map:"
            print "\t%s" % path.encode('UTF-8')
            del docmap.address_to_docid[path]
            path = urllib.quote(path.encode('UTF-8'))
            docmap.address_to_docid[path] = docid
            docmap.docid_to_address[docid] = path

    # We have a few broken objects again.  Why?
    remove_broken_objects(root, sys.stdout)

    # Prune catalog
    prune_catalog(root, sys.stdout)
Example #3
0
def evolve(context):
    remove_broken_objects(context['profiles'], sys.stdout)

    print "Reindexing people directory"
    peopledir = find_peopledirectory(context)
    reindex_peopledirectory(peopledir)
Example #4
0
def evolve(context):
    remove_broken_objects(context['profiles'], sys.stdout)

    print "Reindexing people directory"
    peopledir = find_peopledirectory(context)
    reindex_peopledirectory(peopledir)