Skip to content

Commit

Permalink
adding vienna
Browse files Browse the repository at this point in the history
  • Loading branch information
yuhattor committed Jul 9, 2024
1 parent 34a65fa commit f4ae170
Show file tree
Hide file tree
Showing 61 changed files with 3,033 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/hugo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
HUGO_ENV: production
run: |
url="${{ steps.pages.outputs.base_url }}"
directories=("shenzhen-2024" "tokyo-2024" "dublin-2024")
directories=("shenzhen-2024" "tokyo-2024" "dublin-2024" "vienna-2024")
for dir in "${directories[@]}"; do
cd $dir
hugo \
Expand Down
2 changes: 2 additions & 0 deletions vienna-2024/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.DS_Store
node_modules/
5 changes: 5 additions & 0 deletions vienna-2024/archetypes/default.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
title: "{{ replace .Name "-" " " | title }}"
date: {{ .Date }}
draft: true
---
157 changes: 157 additions & 0 deletions vienna-2024/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,157 @@
######################## default configuration ####################
baseURL = "https://gatherings.innersourcecommons.org/dublin-2024"
title = "InnerSource Gathering Dublin 2024"
themesDir = "../themes"
theme = "gathering-theme"
# post pagination
paginate = "4"
# post excerpt
summaryLength = "10"
# disqus short name
disqusShortname = "" # get your shortname form here : https://disqus.com
# disable language
disableLanguages = [] # desable language from here

# output
[outputs]
home = ["HTML", "RSS", "JSON"]

[markup]
defaultMarkdownHandler = "goldmark"

[markup.goldmark]
[markup.goldmark.renderer]
unsafe = true

############################# Plugins ##############################
# CSS Plugins
[[params.plugins.css]]
link = "plugins/bootstrap/css/bootstrap.min.css"
[[params.plugins.css]]
link = "plugins/themefisher-font/themefisher-font.min.css"

# JS Plugins
[[params.plugins.js]]
link = "plugins/jquery/jquery.js"
[[params.plugins.js]]
link = "plugins/bootstrap/js/bootstrap.min.js"
[[params.plugins.js]]
link = "plugins/syotimer/syotimer.min.js"
[[params.plugins.js]]
link = "plugins/search/fuse.min.js"
[[params.plugins.js]]
link = "plugins/search/mark.js"
[[params.plugins.js]]
link = "plugins/search/search.js"
[[params.plugins.js]]
link = "plugins/google-map/map.js"

############################## navigation ###############################
[menu]

[[menu.main]]
name = "About"
URL = "about"
weight = 2

# [[menu.main]]
# name = "Speakers"
# URL = "speaker"
# weight = 3

[[menu.main]]
name = "FAQ"
URL = "faq"
weight = 4

[[menu.main]]
name = "Contact"
URL = "contact"
weight = 5

#################### default parameters ################################
[params]
logo = "images/gathering-dublin-2024.png"
home = "Home"
# Meta data
description = "InnerSource Gathering Dublin 2024"
author = "InnerSource Gathering Organizors"
# email address
email = "[email protected]"
# Google Analitycs
google_analitycs_id = "" # your id
# search for blog page
search = true
images = ["images/ogp/ogp.png"]

# Preloader
[params.preloader]
enable = true
preloader = "" # use jpg, png, svg or gif format.

# Navigation button
[params.navigation_button]
enable = true
label = "Register"
link = "https://innersourcecommons.connpass.com/event/317995/"

# google map
[params.map]
enable = true
gmap_api = "https://maps.googleapis.com/maps/api/js?key=AIzaSyBu5nZKbeK-WHQ70oqOWo-_4VmwOwKP9YQ"
map_latitude = "35.6678347"
map_longitude = "139.7500377,15"
map_marker = "images/marker.png"


############################# social icon ############################
[[params.social]]
icon = "tf-ion-social-twitter"
link = "https://twitter.com/InnerSourceJP"

[[params.social]]
icon = "tf-ion-social-linkedin"
link = "https://www.linkedin.com/company/innersourcecommons/"

[[params.social]]
icon = "tf-ion-social-youtube"
link = "https://www.youtube.com/@InnerSourceCommonsJapan"

################################### English language #####################################
[Languages.en]
languageName = "En"
languageCode = "en-us"
contentDir = "content"
weight = 1
# copyright
copyright = """
[CODE OF CONDUCT](https://innersourcecommons.org/about/codeofconduct/) | © InnerSource Gathering
"""
[Languages.en.params]
home = "Home"
# footer content
footer_content = """
InnerSource Commons is a global community for InnerSource. Established in 2015, it now supports and connects over 3,000 individuals from more than 750 companies, academic institutions, and government agencies. The community shares how to get started with InnerSource and its best practices while fostering discussions about InnerSource values and principles.
"""

############################# Organizers ############################
# Executive Members
[params.organizers]
enable = true
head = "Organizers"

[[params.organizers.members]]
image = "images/organizers/bory_kb.png"
profile = "https://twitter.com/bory_kb"

[[params.organizers.members]]
image = "images/organizers/piyonakajima.png"
profile = "https://twitter.com/piyonakajima"

[[params.organizers.members]]
image = "images/organizers/rashikawat.png"
profile = "https://github.com/rashikawat"

[[params.organizers.members]]
image = "images/organizers/yuhattor.png"
profile = "https://twitter.com/yuhattor"
7 changes: 7 additions & 0 deletions vienna-2024/content/about/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "About"
date: 2024-01-10T13:51:25+06:00
draft: false
description: "What's InnerSource"
bg_image: "images/gathering-images/gathering-2-dark.jpg"
---
7 changes: 7 additions & 0 deletions vienna-2024/content/blog/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Blog"
date: 2019-09-10T13:51:25+06:00
draft: false
description: "this is meta description"
bg_image: "images/bg/cta-bg.jpg"
---
9 changes: 9 additions & 0 deletions vienna-2024/content/contact/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
title: "Inquiry"
date: 2023-09-10T13:51:25+06:00
draft: false
description: "Inquiry"
bg_image: "images/gathering-images/gathering-4-dark.jpg"
---

Please mail to [email protected]
7 changes: 7 additions & 0 deletions vienna-2024/content/faq/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "FAQ"
date: 2019-09-10T13:51:25+06:00
draft: false
description: "InnerSource Gathering FAQ"
bg_image: "images/gathering-images/gathering-1-dark.jpg"
---
7 changes: 7 additions & 0 deletions vienna-2024/content/schedule/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
title: "Schedule"
date: 2019-09-10T13:51:25+06:00
draft: false
description: "this is meta description"
bg_image: "images/gathering-images/gathering-4-dark.jpg"
---
20 changes: 20 additions & 0 deletions vienna-2024/content/speaker/Kazumi-Sato.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
title: "佐藤 和美 / Kazumi Sato"
date: 2019-09-10T13:51:25+06:00
draft: false
description: |
さまざまなソニー製品向けのLinuxベースのシステムソフトウェアの開発に従事、その技術開発の主導しています。また、オープンソースライセンスコンプライアンスやソニーでのオープンソースコミュニティ連携、オープンソース戦略を主導しています。2002年にソニーがLinuxを商品に搭載したときから、オープンソースライセンスに準拠したシステムソフトウェアの開発主導し製品に導入しています。ソニーのソフトウェア戦略コミッティのメンバーでもあります。
image : "images/speakers/KazumiSato.png"
designation : ソニーグループ株式会社 テクノロジープラットフォーム Technology Infrastructure Center システムプラットフォーム技術部門 主幹技師, Distinguished Engineer
type : "speaker"
social:
# social site loop
# - icon : "tf-ion-social-facebook"
# link : "#"
# # social site loop
# - icon : "tf-ion-social-twitter"
# link : "#"
# social site loop
- icon : "tf-ion-social-linkedin"
link : "https://www.linkedin.com/in/kazumi-sato-5286a2304"
---
11 changes: 11 additions & 0 deletions vienna-2024/content/speaker/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
title: "Speakers"
date: 2019-09-10T13:51:25+06:00
draft: false
description: "登壇者のご紹介"
bg_image: "images/gathering-images/gathering-3-dark.jpg"
---

## 登壇者のご紹介

インナーソースの実践者や、開発文化を変革しているリーダーなど、様々なバックグラウンドを持つ登壇者が、インナーソースに関するトピックについてお話します。
98 changes: 98 additions & 0 deletions vienna-2024/data/en/about.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
Here's a translation of the provided text into English:

################## about #################################
about:
enable : true
title : "What is InnerSource"
content : |
InnerSource means **cultivating an open source-like culture within a company and creating a culture of transparent collaboration**.<br>
This concept was proposed by Tim O'Reilly in 2000 as an innovative idea.
While open source involves sharing source code globally, InnerSource aims to share source code on a large scale within a company.
As companies grow larger, walls between departments and products can emerge, making collaboration difficult.
**InnerSource is a groundbreaking effort to solve these challenges by creating a culture of sharing across the entire organization.**
################## sponsor ###############################
sponsor:
enable : false
# sponsor data comes from "homepage.yml" file

################## Feature ##############################
feature:
enable: true
subtitle: "InnerSource Principles"
title: "Principles of<br>InnerSource"
button:
enable: true
label: "Learn More"
link: "https://innersourcecommons.org/ja/"

feature_item:
# feature item loop
- title: "Openness"
icon: "tf-ion-code" # for a collaborative, community-focused icon
bg_color: "#17a2b8"
content: |
**Source code is made open within the organization, and anyone can freely access it.**
This allows developers to reference and learn from other teams' code.
Knowledge sharing becomes active, leading to overall skill improvement.
# feature item loop
- title: "Transparency"
icon: "tf-ion-qr-scanner" # for an icon symbolizing knowledge or learning
bg_color: "" # defaults to dark color for a sleek look
content: |
**Not only the code but also the discussion process is made public.**
In other words, how decisions were made is transparent.
This allows developers from other teams to easily participate, and the project is recognized as a shared asset across the organization.
# feature item loop
- title: "Prioritized<br>Mentorship"
icon: "tf-ion-person-stalker" # for an icon representing innovation or ideas
bg_color: "#ff4747"
content: |
**Prioritized support is provided to make it easier for new developers to participate.**
By following the contributions of guest teams and lowering the barriers to entry, new contributions to the project continue to emerge.
# feature item loop
- title: "Voluntary<br>Contribution"
icon: "tf-ion-ios-heart" # for an icon depicting synchronization or processes
bg_color: "#4125dd"
content: |
**Contribution to the project is not forced.**<br/>
Support from the project is also voluntary.
Each team respects and collaborates with each other to drive development forward.
################## Resource ##############################
resource:
enable: true
title: "Learn about InnerSource"
body: "The InnerSource community provides resources to help learn about InnerSource in Japan.<br />Here are some representative resources where you can learn about InnerSource in Japanese."
items:
- title: Getting Started<br/>with InnerSource
text: "A book to learn the basics of InnerSource."
url: "https://innersourcecommons.org/learn/books/getting-started-with-innersource/"
image: "https://innersourcecommons.org/images/learn/books/getting-started-with-innersource-cover-thumb.jpg"

- title: InnerSource<br/>Learning Path
text: "A learning path to systematically acquire knowledge about InnerSource."
url: "https://innersourcecommons.org/learn/"
image: "images/learning-path.jpg"

- title: InnerSource<br/> Patterns
text: "A book to learn proven InnerSource practices."
url: "https://patterns.innersourcecommons.org"
image: "https://github.com/InnerSourceCommons/InnerSourcePatterns/raw/main/book/en/innersource-patterns-book-cover.jpg"

- title: Understanding<br/>the InnerSource<br/>Checklist
text: "A checklist to take your InnerSource practice one step further."
url: "https://innersourcecommons.org/learn/books/understanding-the-innersource-checklist/"
image: "https://innersourcecommons.org/images/learn/books/innersource-checklist-cover-thumb.jpg"

slack:
enable: true
title: Join the Slack Community
body: "Join the Slack community to exchange information and ask questions about InnerSource."
button:
enable: true
label: "Join Slack!!"
link: "https://innersourcecommons.org/slack/"
45 changes: 45 additions & 0 deletions vienna-2024/data/en/faq.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
################################# travel ####################################
faq:
title_outline: "FAQ"
title: "Frequently Asked Questions about InnerSource Gathering"
content: "If you have any questions, please feel free to ask the organizers at the bottom right of this page."
faq_item:
- title: "I would like to cover the event"
content: "If you wish to cover the event, you need to register in advance. Please understand that we cannot accept same-day coverage without prior registration."

- title: "What is the event hashtag?"
content: "The official event hashtag is `#ISGD24`. Please share your impressions and insights on Twitter."

- title: "Is there wireless LAN Internet access at the venue?"
content: "We provide wireless LAN access points for participants to use."

- title: "Are there power outlets at the venue?"
content: "We provide power outlets for participants to use."

- title: "Is there a fee to participate?"
content: "Participation is free of charge."

- title: "Will the lecture videos be archived and made public?"
content: "After the conference, videos approved by the speakers will be made public."

- title: "Will the lecture slides be made public?"
content: "The release of slides varies by session. If they are made public, the slide links will be shared on Twitter."

- title: "Is this an online event? Please tell me about infection control measures."
content: "InnerSource Gathering is only for in-person participation. To ensure the safety of participants, we will thoroughly implement infection prevention measures at the venue based on national and local guidelines. We ask for your cooperation. The latest information about the event will be updated on Twitter from time to time."

- title: "Regarding confidentiality"
content: |
The basic rule for handling information at this conference is the Chatham House Rule.
However, the handling of information varies depending on the content of the session or conversation, so please follow the instructions of the session speaker and the speaker in the end.
Please check with the information provider if the information can be made public as necessary.
##### What is the Chatham House Rule?
The Chatham House Rule is a principle to promote open discussion at meetings and seminars.
Participants are free to share information obtained at the meeting externally, but may not reveal the identity of the information provider or the specific meeting at which the information was shared.
The main purpose of this rule is to provide a safe environment where participants can freely exchange opinions.
By applying the rule, sensitive information and opinions that are not normally discussed publicly can be more easily shared as anonymity is guaranteed.
- title: "Regarding infection control measures"
content: "InnerSource Gathering will be held in person, taking into account COVID-19 countermeasures. Following government and local guidelines, we will prioritize the safety of participants while promoting interaction among InnerSource practitioners. Depending on the situation, there is a possibility of switching to a fully online event."
Loading

0 comments on commit f4ae170

Please sign in to comment.