This file contains 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
// ========================================================================== | |
// Project: Todos.TaskDataSource | |
// Copyright: ©2010 My Company, Inc. | |
// ========================================================================== | |
/*globals Todos */ | |
sc_require('models/task'); | |
Todos.TASKS_QUERY = SC.Query.local(Todos.Task, { | |
orderBy: 'isDone,description' | |
}); |
This file contains 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
<% # SPROUTCORE DEFAULT INDEX TEMPLATE | |
# This template provide provides a basic wrapper for a SproutCore client. | |
# Most of the time, it will be sufficient for your own needs. However, if | |
# you need to create your own template, you can do so by copying this file | |
# into your client, naming it 'index.rhtml' and then adding the options | |
# :layout => 'lib/index' to your Buildfile. | |
# | |
# See the comments in this file for more information on what you can | |
# change. | |
-%> |
This file contains 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
<Keyspaces> | |
<Keyspace Name="sinandra"> | |
<ColumnFamily CompareWith="BytesType" Name="BlogEntries"/> | |
<ColumnFamily CompareWith="TimeUUIDType" Name="TaggedPosts"/> | |
<ColumnFamily CompareWith="UTF8Type" Name="Lists"/> | |
<ColumnFamily CompareWith="TimeUUIDType" Name="Archives"/> | |
<ColumnFamily CompareWith="TimeUUIDType" Name="Comments" | |
CompareSubcolumnsWith="BytesType" ColumnType="Super"/> | |
</Keyspace> | |
</Keyspaces> |
This file contains 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
<% # SPROUTCORE DEFAULT INDEX TEMPLATE | |
# This template provide provides a basic wrapper for a SproutCore client. | |
# Most of the time, it will be sufficient for your own needs. However, if | |
# you need to create your own template, you can do so by copying this file | |
# into your client, naming it 'index.rhtml' and then adding the options | |
# :layout => 'lib/index' to your Buildfile. | |
# | |
# See the comments in this file for more information on what you can | |
# change. | |
-%> |
This file contains 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
require 'rake/clean' | |
# Deploying stuff starts here | |
require 'net/ssh' | |
require 'net/scp' | |
# Change the following constants accordingly | |
USER = 'yourusername' #TODO: change accordingly | |
HOSTNAME = 'yourhostname.com' #TODO: change accordingly | |
APPLICATION = 'hello_sprouts' #TODO: change accordingly |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<Module> | |
<ModulePrefs title="Groups" | |
description="Lets a user view the groups he is a member of." | |
author="Luc Castera (Intellum)" | |
author_email="[email protected]" | |
author_location="Atlanta, GA" | |
author_affiliation="Intellum" | |
author_link="http://intellum.com" | |
thumbnail="http://dev.groupdock.com/images/groups-app-thumbnail.png" |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<Module> | |
<ModulePrefs title="Hello World" | |
description="Hello World Example for GroupDock" | |
author="Luc Castera (Intellum)" | |
author_email="[email protected]" | |
author_location="Atlanta, GA" | |
author_affiliation="Intellum" | |
author_link="http://intellum.com" | |
thumbnail="http://dev.groupdock.com/images/hello-world-thumbnail.png" |
This file contains 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
#!/bin/bash | |
# | |
# Updated/Modified by Luc Castera (2010-06-14). Intellum Inc. | |
# (http://www.intellum.com) | |
# | |
# Munin plugin for ejabberd2. | |
# | |
# Written by Lasse Karstensen <[email protected]> 2007-05-27. | |
# Based on ejabberd-plugin by Christian Dröge <[email protected]> | |
# |