This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <v-row> | |
| <v-col xs="12"> | |
| <v-data-table | |
| :headers="headers" | |
| :items="ingredients.edges.map((v) => v.node)" | |
| :loading="this.$apollo.queries.ingredients.loading" | |
| :server-items-length="ingredients.totalCount" | |
| :sort-by.sync="sortBy" | |
| :sort-desc.sync="sortDesc" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| checking for a BSD-compatible install... /usr/local/bin/ginstall -c | |
| checking whether build environment is sane... yes | |
| checking for a thread-safe mkdir -p... /usr/local/bin/gmkdir -p | |
| checking for gawk... no | |
| checking for mawk... no | |
| checking for nawk... no | |
| checking for awk... awk | |
| checking whether make sets $(MAKE)... yes | |
| checking whether make supports nested variables... yes | |
| checking whether make supports the include directive... yes (GNU style) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Run options: --seed 34066 | |
| # Running: | |
| .................................................................................................................................................................................................SSS...................................................................................................................... | |
| Finished in 47.950620s, 6.5484 runs/s, 20.9174 assertions/s. | |
| 314 runs, 1003 assertions, 0 failures, 0 errors, 3 skips | |
| You have skipped tests. Run with --verbose for details. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @@ -13,13 +13,7 @@ export default class OrphanAgendaItem extends AgendaItem { | |
| number: this.number(0), | |
| notes: this.attr(null, notes => | |
| notes.map((n) => { | |
| - const note = new Note(); | |
| - note.id = n.id; | |
| - note.annotation = n.annotation; | |
| - note.public = n.public; | |
| - note.author = n.author; | |
| - note.created = n.created; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <template> | |
| <v-menu | |
| :close-on-content-click="false" | |
| v-model="show" | |
| :nudge-right="40" | |
| lazy | |
| transition="scale-transition" | |
| offset-y | |
| full-width | |
| max-width="290px" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### Example | |
| # okra = Okra.enter | |
| # okra.order('poulet', nan: true, pakora: false) | |
| # | |
| # chainable: | |
| # Okra.enter.order('poulet').order('fish', pakora: true) | |
| ### | |
| class Okra | |
| # Raj's sick today Damayanti's here for the rescue |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Unstaged | |
| modified README.md | |
| @@ -2,7 +2,12 @@ | |
| [](https://travis-ci.org/bierik/plone-vuejs) | |
| -> A simple [Vue.js](https://vuejs.org/) SDK to build web sites easily on top of the [Plone RESTAPI](https://github.com/plone/plone.restapi). | |
| +> A simple [Vue.js](https://vuejs.org/) SDK to build web sites easily on top of the [plone.restapi](https://github.com/plone/plone.restapi). | |
| + | |
| +### Prerequests |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| from django.conf import settings | |
| from django.core.management.base import BaseCommand, CommandError | |
| class Command(BaseCommand): | |
| help = "Drops your database using psql command" | |
| def add_arguments(self, parser): | |
| parser.add_argument( | |
| '-R', '--router', action='store', dest='router', default='default', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import os | |
| from django.conf import settings | |
| from django.core.management.base import BaseCommand, CommandError | |
| class Command(BaseCommand): | |
| help = "Creates your database using psql command" | |
| def add_arguments(self, parser): | |
| parser.add_argument( | |
| '-R', '--router', action='store', dest='router', default='default', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $(document).on("turbolinks:load", function(){ | |
| var availableTimesPath = "<%= Rails.application.routes.url_helpers.pastor_me_available_times_path %>"; | |
| $('#calendar').fullCalendar({ | |
| selectable: true, | |
| selectHelper: true, | |
| header: { | |
| left: 'prev,next', | |
| center: 'title', | |
| right: 'month,agendaWeek' | |
| }, |