From 46e4581fc0e8fe72485b4a63a2382fe5b6f2d33c Mon Sep 17 00:00:00 2001 From: Steven vanZyl Date: Thu, 29 Dec 2016 10:35:02 -0500 Subject: [PATCH 1/4] make 'New Note' text visible This is much cleaner and clearer to the user. --- css/notes.css | 1 - 1 file changed, 1 deletion(-) diff --git a/css/notes.css b/css/notes.css index 57dbbb485..d919a7c12 100644 --- a/css/notes.css +++ b/css/notes.css @@ -9,7 +9,6 @@ } #app-navigation #note-add span { - display: none; font-weight: bold; padding-left: 2px; } From fdeea64407dd75a71b496f6d7ba49639f4a320cc Mon Sep 17 00:00:00 2001 From: rushsteve1 Date: Thu, 29 Dec 2016 10:51:10 -0500 Subject: [PATCH 2/4] ownCloud -> nextcloud just a simple find and replace, mostly for clarity and to fix some links. --- CONTRIBUTING.md | 18 +++++++++--------- Makefile | 2 +- appinfo/app.php | 2 +- appinfo/routes.php | 2 +- controller/errors.php | 2 +- controller/notesapicontroller.php | 2 +- controller/notescontroller.php | 2 +- controller/pagecontroller.php | 2 +- db/note.php | 2 +- js/bower.json | 2 +- js/karma.conf.js | 2 +- js/package.json | 6 +++--- service/notedoesnotexistexception.php | 2 +- service/notesservice.php | 2 +- .../controller/NotesApiControllerTest.php | 2 +- .../controller/NotesControllerTest.php | 2 +- .../unit/controller/NotesApiControllerTest.php | 2 +- tests/unit/controller/NotesControllerTest.php | 2 +- tests/unit/controller/PageControllerTest.php | 2 +- tests/unit/db/NoteTest.php | 2 +- tests/unit/service/NotesServiceTest.php | 2 +- 21 files changed, 31 insertions(+), 31 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5b1fafef8..df5fdda40 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ ## Submitting issues -If you have questions about how to install or use ownCloud, please direct these to the [mailing list][mailinglist] or our [forum][forum]. We are also available on [IRC][irc]. +If you have questions about how to install or use nextcloud, please direct these to the [mailing list][mailinglist] or our [forum][forum]. We are also available on [IRC][irc]. ### Short version @@ -11,19 +11,19 @@ If you have questions about how to install or use ownCloud, please direct these - Go to one of the repositories, click "issues" and type any word in the top search/command bar. - You can also filter by appending e. g. "state:open" to the search string. - More info on [search syntax within github](https://help.github.com/articles/searching-issues) -* This repository ([notes](https://github.com/owncloud/notes/issues)) is *only* for issues within the ownCloud notes code. -* __SECURITY__: Report any potential security bug to security@owncloud.com following our [security policy](https://owncloud.org/security/) instead of filing an issue in our bug tracker +* This repository ([notes](https://github.com/nextcloud/notes/issues)) is *only* for issues within the nextcloud notes code. +* __SECURITY__: Report any potential security bug to security@nextcloud.com following our [security policy](https://nextcloud.com/security/) instead of filing an issue in our bug tracker * Report the issue using our [template][template], it includes all the information we need to track down the issue. Help us to maximize the effort we can spend fixing issues and adding new features, by not reporting duplicate issues. -[template]: https://raw.github.com/owncloud/core/master/issue_template.md +[template]: https://raw.github.com/nextcloud/core/master/issue_template.md [mailinglist]: https://mailman.owncloud.org/mailman/listinfo/owncloud -[forum]: https://forum.owncloud.org/ -[irc]: https://webchat.freenode.net/?channels=owncloud&uio=d4 -[irc-dev]: https://webchat.freenode.net/?channels=owncloud-dev&uio=d4 +[forum]: https://help.nextcloud.com/ +[irc]: https://webchat.freenode.net/?channels=nextcloud&uio=d4 +[irc-dev]: https://webchat.freenode.net/?channels=nextcloud-dev&uio=d4 ### Contribute Code and translations -Please check [core's contribution guidelines](https://github.com/owncloud/core/blob/master/CONTRIBUTING.md) for further information about contributing code and translations. +Please check [core's contribution guidelines](https://github.com/nextcloud/core/blob/master/CONTRIBUTING.md) for further information about contributing code and translations. -For further development questions / discussions you can also join the [#owncloud-dev][irc-dev] IRC channel. \ No newline at end of file +For further development questions / discussions you can also join the [#nextcloud-dev][irc-dev] IRC channel. \ No newline at end of file diff --git a/Makefile b/Makefile index 96b309273..102aecb25 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # -# ownCloud scaffolder tool +# nextcloud scaffolder tool # # Copyright (C) 2013 Bernhard Posselt, # diff --git a/appinfo/app.php b/appinfo/app.php index d407a5bbb..d563e74e9 100644 --- a/appinfo/app.php +++ b/appinfo/app.php @@ -1,6 +1,6 @@ Date: Fri, 30 Dec 2016 13:07:28 -0500 Subject: [PATCH 3/4] Uppercase headers --- CONTRIBUTING.md | 4 ++-- Makefile | 2 +- appinfo/app.php | 2 +- appinfo/routes.php | 2 +- controller/errors.php | 2 +- controller/notesapicontroller.php | 2 +- controller/notescontroller.php | 2 +- controller/pagecontroller.php | 2 +- db/note.php | 2 +- js/karma.conf.js | 2 +- service/notedoesnotexistexception.php | 2 +- service/notesservice.php | 2 +- tests/integration/controller/NotesApiControllerTest.php | 2 +- tests/integration/controller/NotesControllerTest.php | 2 +- tests/unit/controller/NotesApiControllerTest.php | 2 +- tests/unit/controller/NotesControllerTest.php | 2 +- tests/unit/controller/PageControllerTest.php | 2 +- tests/unit/db/NoteTest.php | 2 +- tests/unit/service/NotesServiceTest.php | 2 +- 19 files changed, 20 insertions(+), 20 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index df5fdda40..205bcf47a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -17,13 +17,13 @@ If you have questions about how to install or use nextcloud, please direct these Help us to maximize the effort we can spend fixing issues and adding new features, by not reporting duplicate issues. -[template]: https://raw.github.com/nextcloud/core/master/issue_template.md +[template]: https://raw.github.com/nextcloud/server/master/issue_template.md [mailinglist]: https://mailman.owncloud.org/mailman/listinfo/owncloud [forum]: https://help.nextcloud.com/ [irc]: https://webchat.freenode.net/?channels=nextcloud&uio=d4 [irc-dev]: https://webchat.freenode.net/?channels=nextcloud-dev&uio=d4 ### Contribute Code and translations -Please check [core's contribution guidelines](https://github.com/nextcloud/core/blob/master/CONTRIBUTING.md) for further information about contributing code and translations. +Please check [core's contribution guidelines](https://github.com/nextcloud/server/blob/master/CONTRIBUTING.md) for further information about contributing code and translations. For further development questions / discussions you can also join the [#nextcloud-dev][irc-dev] IRC channel. \ No newline at end of file diff --git a/Makefile b/Makefile index 102aecb25..727654c18 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ # -# nextcloud scaffolder tool +# Nextcloud scaffolder tool # # Copyright (C) 2013 Bernhard Posselt, # diff --git a/appinfo/app.php b/appinfo/app.php index d563e74e9..61b167b35 100644 --- a/appinfo/app.php +++ b/appinfo/app.php @@ -1,6 +1,6 @@ Date: Fri, 30 Dec 2016 16:02:22 -0500 Subject: [PATCH 4/4] More uppercasing --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 205bcf47a..da06b50ed 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,6 @@ ## Submitting issues -If you have questions about how to install or use nextcloud, please direct these to the [mailing list][mailinglist] or our [forum][forum]. We are also available on [IRC][irc]. +If you have questions about how to install or use Nextcloud, please direct these to the [mailing list][mailinglist] or our [forum][forum]. We are also available on [IRC][irc]. ### Short version @@ -11,7 +11,7 @@ If you have questions about how to install or use nextcloud, please direct these - Go to one of the repositories, click "issues" and type any word in the top search/command bar. - You can also filter by appending e. g. "state:open" to the search string. - More info on [search syntax within github](https://help.github.com/articles/searching-issues) -* This repository ([notes](https://github.com/nextcloud/notes/issues)) is *only* for issues within the nextcloud notes code. +* This repository ([notes](https://github.com/nextcloud/notes/issues)) is *only* for issues within the Nextcloud notes code. * __SECURITY__: Report any potential security bug to security@nextcloud.com following our [security policy](https://nextcloud.com/security/) instead of filing an issue in our bug tracker * Report the issue using our [template][template], it includes all the information we need to track down the issue. @@ -26,4 +26,4 @@ Help us to maximize the effort we can spend fixing issues and adding new feature ### Contribute Code and translations Please check [core's contribution guidelines](https://github.com/nextcloud/server/blob/master/CONTRIBUTING.md) for further information about contributing code and translations. -For further development questions / discussions you can also join the [#nextcloud-dev][irc-dev] IRC channel. \ No newline at end of file +For further development questions / discussions you can also join the [#nextcloud-dev][irc-dev] IRC channel.