All Projects → hitobito → Hitobito

hitobito / Hitobito

Licence: agpl-3.0
A web application to manage complex group hierarchies with members, events and a lot more.

Programming Languages

ruby
36898 projects - #4 most used programming language

Labels

Projects that are alternatives of or similar to Hitobito

Rust lang cn
China Community for Rust lang
Stars: ✭ 176 (-15.38%)
Mutual labels:  community
Cgx
💻🔥CLI to generate the recommended documentation/files to improve contribution (Github, Gitlab, CodeCommit and Bitbucket)
Stars: ✭ 190 (-8.65%)
Mutual labels:  community
Ru Local Communities
Список русскоязычных it-комьюнити по городам
Stars: ✭ 204 (-1.92%)
Mutual labels:  community
Lairdubois
L'Air du Bois is a Community Driven Woodworkers Sharing Platform.
Stars: ✭ 184 (-11.54%)
Mutual labels:  community
Tutorials
📖 Community driven web development tutorials
Stars: ✭ 189 (-9.13%)
Mutual labels:  community
Supermarket
Chef's community platform
Stars: ✭ 192 (-7.69%)
Mutual labels:  community
Yii2 Podium
Yii 2 forum module project
Stars: ✭ 172 (-17.31%)
Mutual labels:  community
Im.dev
im.dev是一个开源技术社区,支持内容创作、社交互动、在线课程等功能。我是开发,我为技术代言。
Stars: ✭ 206 (-0.96%)
Mutual labels:  community
Open Source Meetup Alternatives
Open-Source Alternatives to Meetup
Stars: ✭ 191 (-8.17%)
Mutual labels:  community
Learnosm
LearnOSM.org content, Jekyll layouts & issue tracking. This repository is dedicated to helping people learn how to map in OpenStreetMap (OSM) and use many of the software and tools in the OSM community.
Stars: ✭ 200 (-3.85%)
Mutual labels:  community
Hackercouch
Hospitality for Hackers
Stars: ✭ 185 (-11.06%)
Mutual labels:  community
Community
Central repository for issues and recipes
Stars: ✭ 189 (-9.13%)
Mutual labels:  community
Devops Patch
A Patch for Dev-Ops community https://t.me/devOpsPatch
Stars: ✭ 193 (-7.21%)
Mutual labels:  community
Cosx.org
统计之都主站
Stars: ✭ 180 (-13.46%)
Mutual labels:  community
Vanilla
Vanilla is a powerfully simple discussion forum you can easily customize to make as unique as your community.
Stars: ✭ 2,460 (+1082.69%)
Mutual labels:  community
Women In Technology
A collection of resources for women in tech, consisting of - courses, learning guides, amazing sites and repos, blogs, programs and events. scholarships, etc.
Stars: ✭ 170 (-18.27%)
Mutual labels:  community
Awesome Community
A curated list of awesome programming, development, technical support and discussion channels, groups, communities, resources and other shiny things
Stars: ✭ 192 (-7.69%)
Mutual labels:  community
Lessy
A respectful and ethical time manager.
Stars: ✭ 209 (+0.48%)
Mutual labels:  community
Symphony
🎶 一款用 Java 实现的现代化社区(论坛/BBS/社交网络/博客)平台。
Stars: ✭ 13,080 (+6188.46%)
Mutual labels:  community
Jvm Bloggers
JVM Bloggers - website and newsletter with JVM blogs from Poland
Stars: ✭ 193 (-7.21%)
Mutual labels:  community

hitobito logo

Welcome to hitobito 人人

hitobito is an open source web application to manage organisation and communities with complex group hierarchies with members, events, courses, mailings, communication and a lot more.

Maintenance Documentation Status GitHub Open Source Helpers Build Status

Development

Check out our development kit

More detailed development documentation can be found in doc/development.

This is where you also find some Deployment Instructions.

Architecture

The architecture documentation in German can be found in doc/architecture.

Two topics shall be mentioned here explicitly:

Group Hierarchy

hitobito provides a powerful meta-model to describe group structures. Groups are always of a specific type and are arranged in a tree. Each group type may have several different role types.

This core part of hitobito does not provide any specific group or role types. They have to be defined in a separate plugin, specific to your organization structure.

An example group type definition might look like this:

class Group::Layer < Group
  self.layer = true

  children Group::Layer, Group::Board, Group::Basic

  class Role < Leader
    self.permissions = [:layer_full, :contact_data]
  end


  class Member < Role
    self.permissions = [:group_read]
  end

  roles Leader, Member
end

A group type always inherits from the class Group. It may be a layer, which defines a set of groups that are in a common permission range. All subgroups of a layer group belong to this range unless a subgroup is a layer itself.

Then all possible child types of the group are listed. When creating subgroups, only these types will be allowed. As shown, types may be organized recursively.

For the ease of maintainability, role types may be defined directly in the group type. Each role type has a set of permissions. They are general indications of what and where. All specific abilities of a user are derived from the role permissions she has in her different groups.

See Gruppen- und Rollentypen for more details and hitobito_generic for a complete example group structure.

Plugin architecture

hitobito is built on the plugin framework Wagons. With Wagons, arbitrary features and extensions may be created for hitobito. As mentioned above, as there are no group types coming from hitobito itself, at least one wagon is required to define group types in order to use hitobito.

See Wagon Guidelines or Wagons for more information on wagons and its available rake tasks.

Contributing

You are invited to contribute new features, fixes, or updates, large or small; we are always thrilled to receive pull requests, and do our best to process them as fast as we can. Before opening any pull request or issue, please search for existing issues (open and closed) and read the contributing guidelines. If you are part of an organisation that uses hitobito, please discuss your intent with the responsible person of your organisation.

Community

hitobito made with 💙 and the incredible community:

  • Jungwacht Blauring Schweiz
  • Puzzle ITC GmbH
  • Pfadibewegung Schweiz
  • hitobito AG
  • CEVI Regionalverband ZH-SH-GL / CEVI Schweiz
  • Dachverband Schweizer Jugendparlamente DSJ
  • Insieme Schweiz
  • Forschungstelle Digitale Nachhaltigkeit
  • CH Open
  • Digital Impact Network
  • Schweizer Blasmusikverband
  • GLP
  • Die Mitte
  • Stiftung für junge Auslandschweizer

Please contact KunoKunz if you want to be part of our community.

License

hitobito is released under the GNU Affero General Public License.

The hitobito logo is a registered trademark of hitobito LTD, Switzerland.


btw: hitobito 人人 means "everyone"

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].