schedule icon indicating copy to clipboard operation
schedule copied to clipboard

Automatically schedules tasks, work items, meetings, reservations, etc. Schedule takes into account working hours, holidays/days off, people's work schedule/vacation time, as well as task dependencies...

Results 15 schedule issues
Sort by recently updated
recently updated
newest added

Hi This library looks exactly what I need but it seems to have bugs and is not being maintained. **Does anyone know of something similar?** Thanks very much!

Hi, I'm trying to schedule two tasks at the same time on the same date that both require a particular resource whose `isNotReservable` field is set to `true`. As far...

It appears that 'schedule' is no longer a function. ``` $ node test.js .../test.js:94 .schedule(function(d) { return d.availability ? p(d.availability) : undefined; }) ^ TypeError: schedule.tasks(...).id(...).duration(...).schedule is not a function...

If there's a quick way to contribute this I'm happy to do so, it would be great to have a working demo right on the documentation site.

// Define a set of tasks var testTasks = [ {id: 1, duration: 60}, {id: 2, duration: 30, dependsOn: [1], resources: ['A']}, {id: 3, duration: 30, dependsOn: [1], resources: [['A','B']]}...

GitHub changed the way Markdown headings are parsed, so this change fixes it. See [bryant1410/readmesfix](https://github.com/bryant1410/readmesfix) for more information. Tackles bryant1410/readmesfix#1

When running bower install schedule, it fails because of a non-existing dependency in bower json to Later version 1.1.3. Console log: bower install schedule bower not-cached git://github.com/bunkat/schedule.git#* bower resolve git://github.com/bunkat/schedule.git#*...

Is there a way to create a list of ressources with available times, and create a query with a task say: {task:'sometask',duration:'120Min'} and then get unavailable dates (in days) back,...

I would like to manage scheduling dynamically, so that new resources and tasks appear/disappear on the fly. something like: ``` var scheduler = schedule.create(initial_tasks, initial_resources, null, start); setInterval( function() {...

I am having hard time to understand how can I start a given function at scheduled time