Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/collaboraonline/online
Collabora Online is a collaborative online office suite based on LibreOffice technology. This is also the source for the Collabora Office apps for iOS and Android.
https://github.com/collaboraonline/online
android cpp documents enterprise free-software hacktoberfest ios javascript libreoffice office open-source opensource productivity
Last synced: 23 days ago
JSON representation
Collabora Online is a collaborative online office suite based on LibreOffice technology. This is also the source for the Collabora Office apps for iOS and Android.
- Host: GitHub
- URL: https://github.com/collaboraonline/online
- Owner: CollaboraOnline
- License: other
- Created: 2020-10-01T05:23:57.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2024-05-01T20:02:39.000Z (6 months ago)
- Last Synced: 2024-05-02T01:33:51.076Z (6 months ago)
- Topics: android, cpp, documents, enterprise, free-software, hacktoberfest, ios, javascript, libreoffice, office, open-source, opensource, productivity
- Language: JavaScript
- Homepage: https://collaboraonline.com
- Size: 259 MB
- Stars: 1,588
- Watchers: 45
- Forks: 623
- Open Issues: 721
-
Metadata Files:
- Readme: README.CONTRIBUTING.md
- Changelog: ChangeLog
- Contributing: CONTRIBUTING.md
- License: COPYING
- Code of conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
- Authors: AUTHORS
Awesome Lists containing this project
README
## Online Contributor Representation & Certificate of Origin v1.0
By making a contribution to this project, I certify that:
(a) The contribution was created in whole or in part by me and I
have the right to submit it under the appropriate
version of the Mozilla Public License v2, or (for artwork)
the Creative Commons Zero (CC0) license; or(b) The contribution is based upon previous work that, to the best of
my knowledge, is covered under an appropriate open source license
and I have the right under that license to submit that work with
modifications, whether created in whole or in part by me, under
the aforementioned licenes, in the appropriate version; or(c) The contribution was provided directly to me by some other person
who certified (a) or (b) and I have not modified it.(d) I understand and agree that this project and the contribution are
public and that a record of the contribution (including all
metadata and personal information I submit with it, including my
sign-off) is maintained indefinitely and may be redistributed
consistent with this project or the open source license(s)
involved.(e) I am granting this work to this project under the terms of both
the Mozilla Public License v2 and the GNU Lesser General Public
License version 3 as published by the Free Software Foundation:When submitting a patch, to make this certification add a line that
states:Signed-off-by: Random J Developer
using your real name and the email address (sorry, no pseudonyms
or anonymous contributions.)## Other information to put into your commit message
When reviewing a patch, we look for the following information in the commit message:
- Title: a single line, short and to the point summary of what the patch does.
- The reason is to be able to do `git log --pretty=oneline` and have a usable result.
- Intro: observation of the current state
- Rationale: the problem to be solved is obvious to you, but not to the reviewer. It's good to
have a list of steps to reproduce the problem.- Problem description: pros and cons of the current state
- Rationale: when some feature doesn't work the way expected, frequently there is some other
use-case that motivated the current behavior. It's easier to not break the old use-case with
your change if you're aware of the old use-case.- If there was an old use-case and you found it by research, please document it, so the person
reading the commit message finds it easily.- Solution: give orders to the codebase
- A short description of how you introduce new behavior while not breaking old behavior is useful,
because it may not be too obvious just by looking at what you changed.An alternative is to have much of this information in a (public) issue, refer to that issue and have
a short commit message. That works better e.g. when using images to demonstrate the problem.