Sven

Results 42 comments of Sven

Thanks for the suggestion! :) I guess your use case would be that you already know the date of the meeting, but not yet the specific time? That never occurred...

The Google bot [seems to be missing some required Javascript features](https://plus.google.com/u/0/+JohnMueller/posts/LT4fU7kFB8W).

To find out the supported features of a search engine, we can print them with: ```js document.write('Supported features: ' + JSON.stringify(features) + ''); ```

Depends on #48 .

A prototype implementation is available in the experimental branch https://github.com/NoyaInRain/meetling/tree/notifications .

Thanks for the suggestion! We should complement the documentation and also note that the format is a simple version of ISO 8601 and times are always given in UTC. If...

A first draft is available in #48 .

Depends on noyainrain/micro#19 .

Conversion between `datetime` and `string`: ``` python # string -> datetime datetime(*(int(x) for x in re.split(r'\D', create_time)[:-1])) # datetime -> string create_time.isoformat() + 'Z' ```

For status updates see noyainrain/micro#9.