Exemplo n.º 1
0
def split_tags_and_flags(tags, obj_type, tags_are_dict=False):
    """
    Based on the given list of flags, we return a dict with 3 list of flags :
    - one with flags used
    - one with flags not used
    - one with the other tags
    """
    final_tags = []
    special_tags = list(FLAGS[obj_type])
    used_special_tags = {}
    for tag in tags:
        if tags_are_dict:
            lower_tag = tag['name'].lower()
        else:
            lower_tag = tag.name.lower()
        if lower_tag in FLAGS[obj_type]:
            used_special_tags[lower_tag] = tag
            special_tags.remove(lower_tag)
        else:
            final_tags.append(tag)

    special_tags = [dict(slug=slugify(tag), name=tag) for tag in special_tags]

    sorted_used_special_tags = [used_special_tags[tag] for tag in FLAGS[obj_type] if tag in used_special_tags]

    return dict(
        special = special_tags,
        special_used = sorted_used_special_tags,
        normal = final_tags
    )
Exemplo n.º 2
0
def split_tags_and_flags(tags, obj_type, tags_are_dict=False):
    """
    Based on the given list of flags, we return a dict with 3 list of flags :
    - one with flags used
    - one with flags not used
    - one with the other tags
    """
    all_tags = []  # for compatibility
    real_tags = []
    special_tags = list(FLAGS[obj_type])
    used_special_tags = {}
    places = []
    projects = []
    for tag in tags:
        if tags_are_dict:
            lower_tag = tag['name'].lower()
        else:
            lower_tag = tag.name.lower()
        if lower_tag in FLAGS[obj_type]:
            used_special_tags[lower_tag] = tag
            special_tags.remove(lower_tag)
        else:
            start = lower_tag[0]
            if start == '@':
                places.append(tag)
            elif start == '#':
                projects.append(tag)
            else:
                real_tags.append(tag)
            all_tags.append(tag)

    special_tags = [dict(slug=slugify(tag), name=tag) for tag in special_tags]

    sorted_used_special_tags = [
        used_special_tags[tag] for tag in FLAGS[obj_type]
        if tag in used_special_tags
    ]

    result = dict(
        special=special_tags,
        special_used=sorted_used_special_tags,
        normal=all_tags,
        tags=real_tags,
        places=places,
        projects=projects,
    )

    # had booleans for flags
    for tag in sorted_used_special_tags:
        if isinstance(tag, dict):
            result[tag['slug']] = True
        else:
            result[tag.slug] = True

    return result
Exemplo n.º 3
0
def split_tags_and_flags(tags, obj_type, tags_are_dict=False):
    """
    Based on the given list of flags, we return a dict with 3 list of flags :
    - one with flags used
    - one with flags not used
    - one with the other tags
    """
    all_tags = []  # for compatibility
    real_tags = []
    special_tags = list(FLAGS[obj_type])
    used_special_tags = {}
    places = []
    projects = []
    for tag in tags:
        if tags_are_dict:
            lower_tag = tag["name"].lower()
        else:
            lower_tag = tag.name.lower()
        if lower_tag in FLAGS[obj_type]:
            used_special_tags[lower_tag] = tag
            special_tags.remove(lower_tag)
        else:
            start = lower_tag[0]
            if start == "@":
                places.append(tag)
            elif start == "#":
                projects.append(tag)
            else:
                real_tags.append(tag)
            all_tags.append(tag)

    special_tags = [dict(slug=slugify(tag), name=tag) for tag in special_tags]

    sorted_used_special_tags = [used_special_tags[tag] for tag in FLAGS[obj_type] if tag in used_special_tags]

    result = dict(
        special=special_tags,
        special_used=sorted_used_special_tags,
        normal=all_tags,
        tags=real_tags,
        places=places,
        projects=projects,
    )

    # had booleans for flags
    for tag in sorted_used_special_tags:
        if isinstance(tag, dict):
            result[tag["slug"]] = True
        else:
            result[tag.slug] = True

    return result
Exemplo n.º 4
0
 def slugify_project(self, project):
     """
     Slugify each part of a project, but keep the slashes
     """
     return "/".join([slugify(part) for part in project.split("/")])
Exemplo n.º 5
0
 def slugify_project(self, project):
     """
     Slugify each part of a project, but keep the slashes
     """
     return '/'.join([slugify(part) for part in project.split('/')])