repo
string
commit
string
message
string
diff
string
tschmid/tinyos-2.x
08578cbf8e3f475c4fb776b9eacd3cd2acdbf247
First attempt to port of CC2420X driver to CC2520. Still need to add the rest of the layers...
diff --git a/tos/chips/cc2520/CC2520.h b/tos/chips/cc2520/CC2520.h new file mode 100644 index 0000000..3946837 --- /dev/null +++ b/tos/chips/cc2520/CC2520.h @@ -0,0 +1,359 @@ +#ifndef __CC2520_H__ +#define __CC2520_H__ + +typedef nx_struct cc2520x_header_t +{ + nxle_uint8_t length; +} cc2520x_header_t; + +typedef struc...
tschmid/tinyos-2.x
b757d42db3df2f71efbb68b4d30838dc8dbe3889
reset initial threshold to 3.2v, which is just above where the battery will cut off power.
diff --git a/tos/platforms/shimmer/chips/msp430/PowerSupplyMonitorP.nc b/tos/platforms/shimmer/chips/msp430/PowerSupplyMonitorP.nc index d933bb2..7e2ce11 100644 --- a/tos/platforms/shimmer/chips/msp430/PowerSupplyMonitorP.nc +++ b/tos/platforms/shimmer/chips/msp430/PowerSupplyMonitorP.nc @@ -1,178 +1,178 @@ /* * Cop...
tschmid/tinyos-2.x
a62352bc691e1b0c41cfc9a6d8a66728527931d6
mpu.extra: PFLAGS, include dir at the beginning of the command line
diff --git a/support/make/mpu.extra b/support/make/mpu.extra index 7485dac..0eb78f0 100644 --- a/support/make/mpu.extra +++ b/support/make/mpu.extra @@ -1,6 +1,7 @@ # Set up flag for MPU protection to be used (conditional compilation) # Put functions in sections of their own so that linker script can group and align ...
tschmid/tinyos-2.x
a2760c4021f2ca5a61f09234c89d506bc1c92ee3
In accordance with Thomas Schmid, HplSam3uGeneralIOP doesn't use LocalTime anymore. Included forgotten header file in HplSam3uClockP.nc.
diff --git a/tos/chips/sam3u/pins/HplSam3uGeneralIOC.nc b/tos/chips/sam3u/pins/HplSam3uGeneralIOC.nc index b1779d0..06426ae 100644 --- a/tos/chips/sam3u/pins/HplSam3uGeneralIOC.nc +++ b/tos/chips/sam3u/pins/HplSam3uGeneralIOC.nc @@ -1,857 +1,855 @@ /* * Copyright (c) 2009 Stanford University. * All rights reserved...
tschmid/tinyos-2.x
14481bc21cc64941b374f62fa6ced0aa7f52e41b
hsmci: adding in test program -- a little dirty :p
diff --git a/apps/tests/sam3u/hsmci/Makefile b/apps/tests/sam3u/hsmci/Makefile new file mode 100644 index 0000000..b54ef12 --- /dev/null +++ b/apps/tests/sam3u/hsmci/Makefile @@ -0,0 +1,8 @@ +COMPONENT=MoteAppC + +CFLAGS += -DTOSH_DATA_LENGTH=114 +CFLAGS += -DTFRAME_ENABLED + +CLEAN_EXTRA += *.pyc + +include $(MAKERULE...
tschmid/tinyos-2.x
96ef56b43972590ecad6e5ff0ec27bf9f5358afc
Adding in HSMCI initial version
diff --git a/tos/chips/sam3u/hsmci/HplSam3uHsmci.nc b/tos/chips/sam3u/hsmci/HplSam3uHsmci.nc new file mode 100644 index 0000000..6c2b369 --- /dev/null +++ b/tos/chips/sam3u/hsmci/HplSam3uHsmci.nc @@ -0,0 +1,12 @@ +// interface file + +interface HplSam3uHsmci { + command void configureHsmci(); + command void unlockReg...
tschmid/tinyos-2.x
b18c84d604f45999e8b87dfd9d9bcff828145bf6
adc: committing README file for PDC usage in application folder
diff --git a/apps/tests/sam3u/adc/AdcReaderStreamPDC/README b/apps/tests/sam3u/adc/AdcReaderStreamPDC/README new file mode 100644 index 0000000..4b57096 --- /dev/null +++ b/apps/tests/sam3u/adc/AdcReaderStreamPDC/README @@ -0,0 +1,9 @@ +12 bit ADC test program for SAM3U with PDC + +@author JeongGil Ko <jgko@cs.jhu.edu>...
tschmid/tinyos-2.x
f203b8af95fddadd88970896b7f5dd295cf8c271
adc: finishing up implementation for PDC support. Speed looks fine now and the use of PDC for the readStream will work fine. When controlling performing readStream with PDC, the prescal in the configuration should be used to control the sample time instead of the parameter of readStream();
diff --git a/apps/tests/sam3u/adc/AdcReaderStreamPDC/AdcReaderC.nc b/apps/tests/sam3u/adc/AdcReaderStreamPDC/AdcReaderC.nc new file mode 100644 index 0000000..481b7b2 --- /dev/null +++ b/apps/tests/sam3u/adc/AdcReaderStreamPDC/AdcReaderC.nc @@ -0,0 +1,39 @@ +/* +* Copyright (c) 2009 Johns Hopkins University. +* All rig...
tschmid/tinyos-2.x
453db8b1d67e943d38257bb5880bdbfdcf919678
adc: adding in pdc control for readStream -- there is no method of controlling sampling interval in Sam3u; Sampling speed is very slow; prefer not use to pdc for adc
diff --git a/apps/tests/sam3u/adc/AdcReaderStream/Makefile b/apps/tests/sam3u/adc/AdcReaderStream/Makefile index b54ef12..0359d38 100644 --- a/apps/tests/sam3u/adc/AdcReaderStream/Makefile +++ b/apps/tests/sam3u/adc/AdcReaderStream/Makefile @@ -1,8 +1,10 @@ COMPONENT=MoteAppC CFLAGS += -DTOSH_DATA_LENGTH=114 CFLAG...
tschmid/tinyos-2.x
16cb3ee745333803073a6e42eba69d0fa062a45e
mpu: Factored out stuff from TinyThreadSchedulerP, now in mpu/. Tests all run.
diff --git a/tos/lib/tosthreads/chips/sam3u/chip_thread.h b/tos/lib/tosthreads/chips/sam3u/chip_thread.h index 84cd59c..bd73dd1 100644 --- a/tos/lib/tosthreads/chips/sam3u/chip_thread.h +++ b/tos/lib/tosthreads/chips/sam3u/chip_thread.h @@ -1,186 +1,192 @@ /* * Copyright (c) 2009 Stanford University. * All rights ...
tschmid/tinyos-2.x
e444148dcde5caa7b3fcca8cd877fafdb4bbf925
mpu: MP-enabled ThreadInfoP is now in mpu/. Tests all run.
diff --git a/tos/lib/tosthreads/mpu/ThreadInfoP.nc b/tos/lib/tosthreads/mpu/ThreadInfoP.nc new file mode 100644 index 0000000..838601c --- /dev/null +++ b/tos/lib/tosthreads/mpu/ThreadInfoP.nc @@ -0,0 +1,148 @@ +/* + * Copyright (c) 2008 Stanford University. + * All rights reserved. + * + * Redistribution and use in so...
tschmid/tinyos-2.x
40609df853e8eb05a2cc22a9fdea6a1649e95276
sam3u: Added doc.
diff --git a/tos/chips/sam3u/McuSleepC.nc b/tos/chips/sam3u/McuSleepC.nc index 97c4e00..c1bc566 100644 --- a/tos/chips/sam3u/McuSleepC.nc +++ b/tos/chips/sam3u/McuSleepC.nc @@ -1,60 +1,64 @@ /* * Copyright (c) 2009 Stanford University. * All rights reserved. * * Redistribution and use in source and binary form...
tschmid/tinyos-2.x
a44336361982d0e1270e8bcb4fb92b20885b70a4
threads: Added doc.
diff --git a/tos/lib/tosthreads/chips/sam3u/chip_thread.h b/tos/lib/tosthreads/chips/sam3u/chip_thread.h index de77ce5..84cd59c 100644 --- a/tos/lib/tosthreads/chips/sam3u/chip_thread.h +++ b/tos/lib/tosthreads/chips/sam3u/chip_thread.h @@ -1,182 +1,186 @@ /* * Copyright (c) 2009 Stanford University. * All rights ...
tschmid/tinyos-2.x
c99e36686862e2fbd2167a98e59ac55f1b4ff980
file was missing from previous commit
diff --git a/tos/chips/msp430/timer/Msp430TimerMicroMapC.nc b/tos/chips/msp430/timer/Msp430TimerMicroMapC.nc new file mode 100644 index 0000000..2911d4b --- /dev/null +++ b/tos/chips/msp430/timer/Msp430TimerMicroMapC.nc @@ -0,0 +1,47 @@ +/* + * Copyright (c) 2010, Vanderbilt University + * All rights reserved. + * + * ...
tschmid/tinyos-2.x
07c4888bad8d47d29d71b269f54cd81ba51c2116
added entry for higher-speed smclk uart support.
diff --git a/tos/platforms/shimmer/chips/msp430/msp430usart.h b/tos/platforms/shimmer/chips/msp430/msp430usart.h new file mode 100644 index 0000000..a851378 --- /dev/null +++ b/tos/platforms/shimmer/chips/msp430/msp430usart.h @@ -0,0 +1,342 @@ +/* + * Copyright (c) 2004-2006, Technische Universitaet Berlin + * All righ...
tschmid/tinyos-2.x
c2beef938d4496a484c77ade607b9ffed4152562
this subsystem has been abstracted to allow for changing chipsets. container points to appropriate driver for individual platforms.
diff --git a/tos/platforms/shimmer/chips/mma7260/AccelC.nc b/tos/platforms/shimmer/chips/mma7260/AccelC.nc new file mode 100644 index 0000000..5cab906 --- /dev/null +++ b/tos/platforms/shimmer/chips/mma7260/AccelC.nc @@ -0,0 +1,46 @@ +/* + * Copyright (c) 2010, Shimmer Research, Ltd. + * All rights reserved + * + * Red...
tschmid/tinyos-2.x
4867affc57cd216ff8712cdb91333280f195d086
expansion of time/hosttime infrastructure to allow for host-based realtime timestamp setting at runtime. external python scripts can be employed over serial line for this purpose.
diff --git a/tos/platforms/shimmer/HostTime.nc b/tos/platforms/shimmer/HostTime.nc new file mode 100644 index 0000000..487e73d --- /dev/null +++ b/tos/platforms/shimmer/HostTime.nc @@ -0,0 +1,42 @@ +/* + * Copyright (c) 2010, Shimmer Research, Ltd. + * All rights reserved + * + * Redistribution and use in source and bi...
tschmid/tinyos-2.x
b043c21ed1b12a62762d9d2cf3b80c3e9a780201
new platform, forgot *.h!
diff --git a/tos/platforms/shimmer2r/hardware.h b/tos/platforms/shimmer2r/hardware.h new file mode 100644 index 0000000..2d2b828 --- /dev/null +++ b/tos/platforms/shimmer2r/hardware.h @@ -0,0 +1,157 @@ +/* + * Copyright (c) 2007, Intel Corporation + * All rights reserved. + * + * Redistribution and use in source and b...
tschmid/tinyos-2.x
64a1df7dc31d4f85de9d4f4bea2837c6645db9d7
new platform supplanting out-of-production shimmer2
diff --git a/tos/platforms/shimmer2r/.platform b/tos/platforms/shimmer2r/.platform new file mode 100644 index 0000000..253d1dd --- /dev/null +++ b/tos/platforms/shimmer2r/.platform @@ -0,0 +1,88 @@ +# SHIMMER2 - platform includes +# Steve Ayer, June 2009; derived from Konrad Lorincz's SHIMMER platform +# +# Includes th...
tschmid/tinyos-2.x
88e7ba5a144eb14a794528fd5981eb2af7bed3e5
new platform being added.
diff --git a/support/make/shimmer2r.target b/support/make/shimmer2r.target new file mode 100644 index 0000000..8656ac2 --- /dev/null +++ b/support/make/shimmer2r.target @@ -0,0 +1,17 @@ +PLATFORM = shimmer2r + +# Disable MSP430 hardware multiply because it makes MSPGCC die +PFLAGS += -mdisable-hwmul +OPTFLAGS += -O + +...
tschmid/tinyos-2.x
c7274debaec5b12e4cbebde53722bf36ea8ecde0
make sure that the ATM128_I2C_EXTERAL_PULLDOWN flag is set
diff --git a/tos/sensorboards/mts300/.sensor b/tos/sensorboards/mts300/.sensor index e69de29..6f5f0c8 100644 --- a/tos/sensorboards/mts300/.sensor +++ b/tos/sensorboards/mts300/.sensor @@ -0,0 +1,6 @@ +# +# The MTS300 board does not have an external pullup resistor on the I2C +# lines, so we need to enable the internal...
tschmid/tinyos-2.x
6886a62fce63b1046b97738417ef37e3477814ec
checked in precise microsecond alarm/counter/localtime support
diff --git a/tos/chips/msp430/timer/AlarmMicro16C.nc b/tos/chips/msp430/timer/AlarmMicro16C.nc new file mode 100644 index 0000000..acac06b --- /dev/null +++ b/tos/chips/msp430/timer/AlarmMicro16C.nc @@ -0,0 +1,41 @@ +/* + * Copyright (c) 2010, Vanderbilt University + * All rights reserved. + * + * Permission to use, co...
tschmid/tinyos-2.x
ae271bc0b86449f91dacd2beb113934cc005619c
FastSpiByte interface implementation
diff --git a/tos/chips/msp430/usart/Msp430Spi0C.nc b/tos/chips/msp430/usart/Msp430Spi0C.nc index fe87e86..d45a2c4 100644 --- a/tos/chips/msp430/usart/Msp430Spi0C.nc +++ b/tos/chips/msp430/usart/Msp430Spi0C.nc @@ -1,79 +1,108 @@ /** * Copyright (c) 2005-2006 Arched Rock Corporation * All rights reserved. * * Re...
tschmid/tinyos-2.x
b7d012dd3dd777a43d423859e88eb29907ffcca7
removed unnecessary atomics
diff --git a/tos/chips/msp430/usart/HplMsp430Usart0P.nc b/tos/chips/msp430/usart/HplMsp430Usart0P.nc index df07cd4..7357ae9 100644 --- a/tos/chips/msp430/usart/HplMsp430Usart0P.nc +++ b/tos/chips/msp430/usart/HplMsp430Usart0P.nc @@ -1,396 +1,394 @@ /** * Copyright (c) 2005-2006 Arched Rock Corporation * All rights...
tschmid/tinyos-2.x
8cda4f4f472405f54d0fa1adde428630896565b4
suppression moved to H file
diff --git a/tos/lib/net/dip/Dip.h b/tos/lib/net/dip/Dip.h index 0d840f3..ca1970c 100644 --- a/tos/lib/net/dip/Dip.h +++ b/tos/lib/net/dip/Dip.h @@ -1,81 +1,83 @@ #ifndef __DIP_H__ #define __DIP_H__ #define UQ_DIP unique("DIP") #define UQCOUNT_DIP uniqueCount("DIP") enum { DIP_TAU_LOW = 1024L, DIP_TA...
tschmid/tinyos-2.x
21540f5aa3e9d8b10ea8849f594b843a4adb36d1
placeholder
diff --git a/doc/txt/tep138.txt b/doc/txt/tep138.txt new file mode 100644 index 0000000..f8945b4 --- /dev/null +++ b/doc/txt/tep138.txt @@ -0,0 +1,158 @@ +============================ +Source Routing +============================ + +:TEP: 138 +:Group: Net2 Working Group +:Type: Documentary +:Status: Draft +:TinyOS-Vers...
tschmid/tinyos-2.x
027d1db14f083a3bd35cd1057ecff08d70196ea9
Made explicit cast of addresses to uint16_t.
diff --git a/tos/chips/m16c62p/dac/HplM16c62pDacC.nc b/tos/chips/m16c62p/dac/HplM16c62pDacC.nc index 31b3961..42868c0 100755 --- a/tos/chips/m16c62p/dac/HplM16c62pDacC.nc +++ b/tos/chips/m16c62p/dac/HplM16c62pDacC.nc @@ -1,17 +1,17 @@ /** * HPL for the M16c62p D/A conversion susbsystem. * * @author Henrik Makita...
tschmid/tinyos-2.x
27ca70f505924623ef39907ed44c326e3c3a42b3
Fixed a small bug with the buffer length used when writing.
diff --git a/tos/lib/net/Deluge/extra/m16c62p/InternalFlashP.nc b/tos/lib/net/Deluge/extra/m16c62p/InternalFlashP.nc index c08e349..18c6be6 100644 --- a/tos/lib/net/Deluge/extra/m16c62p/InternalFlashP.nc +++ b/tos/lib/net/Deluge/extra/m16c62p/InternalFlashP.nc @@ -1,239 +1,239 @@ /* * Copyright (c) 2009 Communicatio...
tschmid/tinyos-2.x
031dbb238fc6a9374f3ad15e0790805234a2b454
Rewrote the handling of the TOSBoot arguments. The aruments are now stored in the program flash more safely and more the handling of them is more stable.
diff --git a/support/make/m16c62p/crt.S b/support/make/m16c62p/crt.S index 1665c5f..b63b5c8 100755 --- a/support/make/m16c62p/crt.S +++ b/support/make/m16c62p/crt.S @@ -1,218 +1,206 @@ /* * Copyright (c) 2009 Communication Group and Eislab at * Lulea University of Technology * * Contact: Laurynas Riliskis, LTU...
tschmid/tinyos-2.x
f208d574523be9523b60b8944a2e486409690b88
minor fixes to make mspgcc happy
diff --git a/tos/chips/rf2xx/layers/MessageBufferLayerP.nc b/tos/chips/rf2xx/layers/MessageBufferLayerP.nc index 224d2e2..947fca7 100644 --- a/tos/chips/rf2xx/layers/MessageBufferLayerP.nc +++ b/tos/chips/rf2xx/layers/MessageBufferLayerP.nc @@ -1,334 +1,334 @@ /* * Copyright (c) 2007, Vanderbilt University * All r...
tschmid/tinyos-2.x
d7d63f3bddcd125c04299563156511ca487d02f4
manual radio control by applications
diff --git a/tos/lib/net/dhv/AMDhvC.nc b/tos/lib/net/dhv/AMDhvC.nc index ffa47b1..34882e8 100755 --- a/tos/lib/net/dhv/AMDhvC.nc +++ b/tos/lib/net/dhv/AMDhvC.nc @@ -1,46 +1,44 @@ /** * Active Message Configuration. * * Define the interfaces and components. * * @author Thanh Dang * @author Seungweon Park ...
tschmid/tinyos-2.x
a314410999ce22bbc42bf0e75d196f88a2e344c7
manual radio control
diff --git a/apps/tests/TestDhv/TestDhvC-Master.nc b/apps/tests/TestDhv/TestDhvC-Master.nc index 94cf293..7d2c802 100644 --- a/apps/tests/TestDhv/TestDhvC-Master.nc +++ b/apps/tests/TestDhv/TestDhvC-Master.nc @@ -1,29 +1,32 @@ #include "TestDhv.h" configuration TestDhvC { } implementation { components Test...
tschmid/tinyos-2.x
5aa75e46593133acbadd708413c2b55fd433c9ca
doubled debounce time to 250ms.
diff --git a/tos/platforms/shimmer/UserButtonP.nc b/tos/platforms/shimmer/UserButtonP.nc index 5f079ba..ae48eb8 100644 --- a/tos/platforms/shimmer/UserButtonP.nc +++ b/tos/platforms/shimmer/UserButtonP.nc @@ -1,74 +1,74 @@ /** * Copyright (c) 2007 Arch Rock Corporation * All rights reserved. * * Redistribution...
tschmid/tinyos-2.x
60dc2fc5e376a66eb79ec7e08a3e627f2996e33f
added missing container; pio/connection indication was moved on shimmer2
diff --git a/tos/platforms/shimmer2/chips/bluetooth/RovingNetworksC.nc b/tos/platforms/shimmer2/chips/bluetooth/RovingNetworksC.nc new file mode 100755 index 0000000..37c2e0a --- /dev/null +++ b/tos/platforms/shimmer2/chips/bluetooth/RovingNetworksC.nc @@ -0,0 +1,70 @@ +/* + * Copyright (c) 2007, Intel Corporation + * ...
tschmid/tinyos-2.x
50856e04b149342e3b3b9b418f65b47242b411f2
required due to platform heirarchy; shimmer Leds* are found before system.
diff --git a/tos/platforms/shimmer2/Leds.nc b/tos/platforms/shimmer2/Leds.nc new file mode 100644 index 0000000..631b106 --- /dev/null +++ b/tos/platforms/shimmer2/Leds.nc @@ -0,0 +1,125 @@ +// $Id$ + +/* + * "Copyright (c) 2005-2005 The Regents of the University of California. + * All rights reserved. + * + * Permi...
tschmid/tinyos-2.x
f539d834011c5b9e00a72b75296888104742b4aa
somehow, support for all four leds was missing.
diff --git a/tos/platforms/shimmer/Leds.nc b/tos/platforms/shimmer/Leds.nc new file mode 100644 index 0000000..d778ee1 --- /dev/null +++ b/tos/platforms/shimmer/Leds.nc @@ -0,0 +1,144 @@ +// $Id$ + +/* + * "Copyright (c) 2005-2005 The Regents of the University of California. + * All rights reserved. + * + * Permissi...
tschmid/tinyos-2.x
25a6e58803369a4267fb9a9e27ca350f20e716f2
automatically include the chips/sht11 directory
diff --git a/tos/sensorboards/mts400/.sensor b/tos/sensorboards/mts400/.sensor new file mode 100644 index 0000000..adc8359 --- /dev/null +++ b/tos/sensorboards/mts400/.sensor @@ -0,0 +1,4 @@ + +push( @includes, qw( + %T/chips/sht11 +) );
tschmid/tinyos-2.x
6a767cf94c72ab002af73f3299e069b0c9c154a0
initial release of the mts400 codebase (moved from the szte-wsn repository)
diff --git a/tos/sensorboards/mts400/Accel202.h b/tos/sensorboards/mts400/Accel202.h new file mode 100644 index 0000000..c7c2973 --- /dev/null +++ b/tos/sensorboards/mts400/Accel202.h @@ -0,0 +1,39 @@ +/** Copyright (c) 2009, University of Szeged +* All rights reserved. +* +* Redistribution and use in source and binary...
tschmid/tinyos-2.x
ff7f9862d76f42f3bbc7395580901ddb42d55c66
add support for interrupts and UART pins
diff --git a/tos/platforms/mica/MicaBusC.nc b/tos/platforms/mica/MicaBusC.nc index 688d178..3e44751 100644 --- a/tos/platforms/mica/MicaBusC.nc +++ b/tos/platforms/mica/MicaBusC.nc @@ -1,68 +1,100 @@ // $Id$ /* * Copyright (c) 2005-2006 Intel Corporation * All rights reserved. * * This file is distributed und...
tschmid/tinyos-2.x
56ba346557312c957890492e14873f46b235e233
add default fired implementation if the interrupt is not connected
diff --git a/tos/chips/atm128/pins/Atm128GpioInterruptC.nc b/tos/chips/atm128/pins/Atm128GpioInterruptC.nc index 901d70f..7c343c7 100644 --- a/tos/chips/atm128/pins/Atm128GpioInterruptC.nc +++ b/tos/chips/atm128/pins/Atm128GpioInterruptC.nc @@ -1,42 +1,43 @@ /// $Id$ /** * @author Phil Levis */ generic module ...
tschmid/tinyos-2.x
da9d18746b2bf92b9562dec466d8109fce09e0ef
comment update
diff --git a/tos/lib/ftsp/TimeSyncP.nc b/tos/lib/ftsp/TimeSyncP.nc index 6a17381..4b6b9c1 100644 --- a/tos/lib/ftsp/TimeSyncP.nc +++ b/tos/lib/ftsp/TimeSyncP.nc @@ -1,493 +1,494 @@ /* * Copyright (c) 2002, Vanderbilt University * All rights reserved. * * Permission to use, copy, modify, and distribute this sof...
tschmid/tinyos-2.x
25d713fbe8024ee25f69fcb9de610e7921fac988
fixed capture time
diff --git a/tos/chips/atm128/timer/HplAtm128Timer1P.nc b/tos/chips/atm128/timer/HplAtm128Timer1P.nc index 6dfcff0..f8070cf 100644 --- a/tos/chips/atm128/timer/HplAtm128Timer1P.nc +++ b/tos/chips/atm128/timer/HplAtm128Timer1P.nc @@ -1,214 +1,214 @@ /// $Id$ /* * Copyright (c) 2004-2005 Crossbow Technology, Inc. ...
tschmid/tinyos-2.x
df40475779a0af6c3abf71abb81846c019c0ce12
- switch to berkeley's OUI
diff --git a/tos/platforms/epic/chips/ds2411/PlatformIeeeEui64.h b/tos/platforms/epic/chips/ds2411/PlatformIeeeEui64.h index 54f9849..a7cd424 100644 --- a/tos/platforms/epic/chips/ds2411/PlatformIeeeEui64.h +++ b/tos/platforms/epic/chips/ds2411/PlatformIeeeEui64.h @@ -1,37 +1,38 @@ // $Id$ /* * Copyright (c) 2007, ...
tschmid/tinyos-2.x
604a620cf32878c92d95ee624a74c5162efdf30a
add support for the MTS300CB / MTS310CB
diff --git a/tos/sensorboards/mts300/PhotoTempDeviceC.nc b/tos/sensorboards/mts300/PhotoTempDeviceC.nc index 28c1520..9fc2b05 100644 --- a/tos/sensorboards/mts300/PhotoTempDeviceC.nc +++ b/tos/sensorboards/mts300/PhotoTempDeviceC.nc @@ -1,45 +1,49 @@ #include "mts300.h" configuration PhotoTempDeviceC { provides...
anildigital/digitalcodes-org
d68d2c55e4288709d7bbef7b83049445521431d0
Add gauge.
diff --git a/index.html b/index.html index 9202454..bbbe886 100644 --- a/index.html +++ b/index.html @@ -1,26 +1,39 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" -"http://www.w3.org/TR/html4/loose.dtd"> + "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Digital Codes</title...
anildigital/digitalcodes-org
986538205116bf0ba654aab40f461dcd13b41843
Removed lines not necessary
diff --git a/index.html b/index.html index 9d2c656..9202454 100644 --- a/index.html +++ b/index.html @@ -1,32 +1,26 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Digital Codes</title> <meta http-equiv="Content-Type" content...
anildigital/digitalcodes-org
5ea03aaf923d2472f5ceeab5123388f533ce5ca4
Added place, tagline
diff --git a/index.html b/index.html index ad643f7..9d2c656 100644 --- a/index.html +++ b/index.html @@ -1,29 +1,32 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Digital Codes</title> <meta http-equiv="Content-Type" content...
anildigital/digitalcodes-org
d60350b369add8b723020242db76c3599b209154
Added Google Analytics
diff --git a/index.html b/index.html index bac98d7..ad643f7 100644 --- a/index.html +++ b/index.html @@ -1,23 +1,29 @@ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" - "http://www.w3.org/TR/html4/loose.dtd"> +"http://www.w3.org/TR/html4/loose.dtd"> <html> -<head> - <title>Digital Codes</title> - <meta...
anildigital/digitalcodes-org
576a8754f487b67949902804250ccd2677397a89
First checking for digitalcodes.org
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..e43b0f9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.DS_Store diff --git a/images/iron.jpg b/images/iron.jpg new file mode 100644 index 0000000..d37fcc9 Binary files /dev/null and b/images/iron.jpg differ diff --git a/index.html b/index.html new...
simonw/webhook-relay
88b1f5d1b48b7b74772c3cccf60daba3be9ccba4
Link to webhooks.org from readme
diff --git a/readme.txt b/readme.txt index 73b9c17..371afe0 100644 --- a/readme.txt +++ b/readme.txt @@ -1,50 +1,50 @@ webhook-relay ============= Status: Highly experimental, not actively maintained A Node.js server for forwarding webhook requests in a non-blocking manner. -Webhooks are brilliant, but i...
simonw/webhook-relay
faab9ccd146ba0bde0256fd1954e9020d8531081
Show length of queue on stats page
diff --git a/readme.txt b/readme.txt index 18b9c63..73b9c17 100644 --- a/readme.txt +++ b/readme.txt @@ -1,49 +1,50 @@ webhook-relay ============= Status: Highly experimental, not actively maintained A Node.js server for forwarding webhook requests in a non-blocking manner. Webhooks are brilliant, but i...
simonw/webhook-relay
467ef880a13cd7028f11a93ee094c216b37d36bf
Added installation instructions
diff --git a/readme.txt b/readme.txt index c8b201d..18b9c63 100644 --- a/readme.txt +++ b/readme.txt @@ -1,38 +1,49 @@ webhook-relay ============= Status: Highly experimental, not actively maintained A Node.js server for forwarding webhook requests in a non-blocking manner. Webhooks are brilliant, but i...
simonw/webhook-relay
5493558bbcb2f600387d8744471a6cb98651cbd0
Added status and Python client example code
diff --git a/readme.txt b/readme.txt index 0c8fe4a..c8b201d 100644 --- a/readme.txt +++ b/readme.txt @@ -1,24 +1,38 @@ webhook-relay ============= + Status: Highly experimental, not actively maintained + A Node.js server for forwarding webhook requests in a non-blocking manner. Webhooks are brilliant, but i...
simonw/webhook-relay
9a7998d81c2b9b86e3e0ff7cf6f8d80d44cd9ec9
Removed debugging repl
diff --git a/webhook-relay.js b/webhook-relay.js index 53b0ce4..e9a933b 100644 --- a/webhook-relay.js +++ b/webhook-relay.js @@ -1,106 +1,101 @@ var PORT = 8056; var MAX_PARALLEL_REQUESTS = 10; require.paths.unshift(__dirname + '/lib/support/djangode'); require.paths.unshift(__dirname + '/lib/support/restler/lib'...
simonw/webhook-relay
5a50049c27e2b7c9c775366e08d6e46649ae19b9
Initial working implementation
diff --git a/readme.txt b/readme.txt new file mode 100644 index 0000000..0c8fe4a --- /dev/null +++ b/readme.txt @@ -0,0 +1,24 @@ +webhook-relay +============= + +A Node.js server for forwarding webhook requests in a non-blocking +manner. + +Webhooks are brilliant, but implementing them as a provider is a +little trick...
simonw/webhook-relay
6000d17ca86794dde403591085afadc213d53eb8
Dependencies as git submodules
diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 0000000..d1d44e5 --- /dev/null +++ b/.gitmodules @@ -0,0 +1,6 @@ +[submodule "lib/support/djangode"] + path = lib/support/djangode + url = git://github.com/simonw/djangode.git +[submodule "lib/support/restler"] + path = lib/support/restler + url = git://...
mchristensen/tmotp
df3e1125942a8d423520c8007a90bb8d6785c0c4
First draft of game
diff --git a/settings.py b/settings.py index a475fa6..c028262 100644 --- a/settings.py +++ b/settings.py @@ -1,81 +1,81 @@ # Django settings for tmotp project. DEBUG = True TEMPLATE_DEBUG = DEBUG ADMINS = ( # ('Your Name', 'your_email@domain.com'), ) MANAGERS = ADMINS DATABASE_ENGINE = 'sqlite3' ...
esfand/ScalaSnippets
9ee491f81254954b015c02a6d809bd6a8cefa6d7
dependency injection modules
diff --git a/.classpath b/.classpath index 8c6de9f..2cee4d4 100644 --- a/.classpath +++ b/.classpath @@ -1,9 +1,15 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="src"/> + <classpathentry kind="var" path="SCALA_LIB/scalatest-1.2.jar"/> <classpathentry kind="con" path="ch.epf...
esfand/ScalaSnippets
1eaa2713bd5b060cb0d38dc469d6ad93e4e8dafc
add source-code
diff --git a/.classpath b/.classpath new file mode 100644 index 0000000..8c6de9f --- /dev/null +++ b/.classpath @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<classpath> + <classpathentry kind="src" path="src"/> + <classpathentry kind="con" path="ch.epfl.lamp.sdt.launching.SCALA_CONTAINER"/> + <classpathentr...
rtgibbons/shelladdict
4bf2fd0ce20b723ccda6bb46ed5829dc255d4d01
adding account settings page for logged in users
diff --git a/app/config/routes.php b/app/config/routes.php index 13ae4fb..8ed04d8 100644 --- a/app/config/routes.php +++ b/app/config/routes.php @@ -1,34 +1,35 @@ <?php /** * Routes configuration * * In this file, you set up routes to your controllers and their actions. * Routes are very important mechanism t...
rtgibbons/shelladdict
692f8454bb5cfb0646df42c32866bd98d4cf7832
adding some style
diff --git a/app/views/elements/navs/utility.ctp b/app/views/elements/navs/utility.ctp index ff25b5a..8a92d76 100644 --- a/app/views/elements/navs/utility.ctp +++ b/app/views/elements/navs/utility.ctp @@ -1,21 +1,21 @@ - <nav> + <nav id="UtilityNav"> <ul> <?php if($session->check('Auth.User')): ?> <li><a href="/...
rtgibbons/shelladdict
ee249bd96b1c6efff1500238ab8d67db52d3eae4
added email verification to account creation
diff --git a/app/config/routes.php b/app/config/routes.php index 6f32c92..13ae4fb 100644 --- a/app/config/routes.php +++ b/app/config/routes.php @@ -1,32 +1,34 @@ <?php /** * Routes configuration * * In this file, you set up routes to your controllers and their actions. * Routes are very important mechanism t...
rtgibbons/shelladdict
656154301dd3289c0f75eb7cc50e46648b963072
updating to reflect db naming convention
diff --git a/app/config/database.php.default b/app/config/database.php.default index 043ba5c..c593810 100644 --- a/app/config/database.php.default +++ b/app/config/database.php.default @@ -1,95 +1,95 @@ <?php /** * This is core configuration file. * * Use it to configure core behaviour ofCake. * * PHP versi...
rtgibbons/shelladdict
a0f8f48bff19a4ce70030cc6b230f98ce8fc4249
basic user auth and blank template
diff --git a/.gitignore b/.gitignore index 94d3820..42ab98c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ /app/tmp *.tmproj /app/config/core.php /app/config/database.php +.DS_Store diff --git a/app/app_controller.php b/app/app_controller.php new file mode 100644 index 0000000..6d55f4b --- /dev/null +++ b...
rtgibbons/shelladdict
a2b3ab222cfa602197487001f5f6144623bda47c
ignoring database.php file
diff --git a/.gitignore b/.gitignore index 78674e6..94d3820 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /app/tmp *.tmproj /app/config/core.php +/app/config/database.php
rtgibbons/shelladdict
9e016fa1621b011b709051f155448a5ead196447
ignoring environment specific configuration files, updated default seed and cipher security strings
diff --git a/.gitignore b/.gitignore index ab3676f..78674e6 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,3 @@ /app/tmp +*.tmproj +/app/config/core.php diff --git a/app/config/core.php b/app/config/core.php.default similarity index 98% rename from app/config/core.php rename to app/config/core.php.default index b1b...
ezyang/hackage-query
8de73f45ec40832eccd4d98afd67145db79cae16
Dependencies support.
diff --git a/hackage-query.hs b/hackage-query.hs index 4bda2ed..574f41e 100644 --- a/hackage-query.hs +++ b/hackage-query.hs @@ -1,282 +1,316 @@ {-# LANGUAGE DeriveDataTypeable #-} import Prelude hiding (readFile, catch) import Control.Exception import Control.Applicative import Control.Monad.Writer import ...
ezyang/hackage-query
3f4e6b304bde3d735c9bee126b28602ad0ec71ab
Implement tools search.
diff --git a/hackage-query.hs b/hackage-query.hs index 1dc6137..3b09496 100644 --- a/hackage-query.hs +++ b/hackage-query.hs @@ -1,201 +1,251 @@ {-# LANGUAGE DeriveDataTypeable #-} import Prelude hiding (readFile, catch) import Control.Exception import Control.Applicative import Control.Monad.Writer import ...
ezyang/hackage-query
5051dfa5799c0abbf560689d2334478d0380703e
Factor out gadgets for other Hackage querying.
diff --git a/HackageCollision.hs b/HackageCollision.hs index 8d3d0d0..53f57d3 100644 --- a/HackageCollision.hs +++ b/HackageCollision.hs @@ -1,183 +1,205 @@ {-# LANGUAGE DeriveDataTypeable #-} import Prelude hiding (readFile, catch) import Control.Exception import Control.Applicative import Control.Monad.Write...
ezyang/hackage-query
ba48cd0ade2ef870171e54abf85406ca9214f7fd
Majorly rewrite all of the logic.
diff --git a/HackageCollision.hs b/HackageCollision.hs index 9755bb3..8d3d0d0 100644 --- a/HackageCollision.hs +++ b/HackageCollision.hs @@ -1,175 +1,183 @@ {-# LANGUAGE DeriveDataTypeable #-} import Prelude hiding (readFile, catch) import Control.Exception import Control.Applicative import Control.Monad.Write...
ezyang/hackage-query
a6b6e66c0ed241736c7838f5d0a01f0ff32dc0ec
Reorganize code, and remove -Werror.
diff --git a/HackageCollision.hs b/HackageCollision.hs index 677a5ba..9755bb3 100644 --- a/HackageCollision.hs +++ b/HackageCollision.hs @@ -1,163 +1,175 @@ {-# LANGUAGE DeriveDataTypeable #-} import Prelude hiding (readFile, catch) import Control.Exception import Control.Applicative import Control.Monad.Write...
ezyang/hackage-query
92eaebc0b51adb35f626250961f17b4dc93a7586
Convert to Monoidal accumulation of results.
diff --git a/HackageCollision.hs b/HackageCollision.hs index 1daf0ec..677a5ba 100644 --- a/HackageCollision.hs +++ b/HackageCollision.hs @@ -1,147 +1,163 @@ {-# LANGUAGE DeriveDataTypeable #-} import Prelude hiding (readFile, catch) import Control.Exception import Control.Applicative import Control.Monad.Write...
ezyang/hackage-query
d7ae55eedb114ef444b4e864263038e4ac45023a
Fix some bugs, get i18n parsing up.
diff --git a/HackageCollision.hs b/HackageCollision.hs index 8336f59..1daf0ec 100644 --- a/HackageCollision.hs +++ b/HackageCollision.hs @@ -1,110 +1,147 @@ {-# LANGUAGE DeriveDataTypeable #-} -import Prelude hiding (readFile) +import Prelude hiding (readFile, catch) +import Control.Exception import Control.Appli...
ezyang/hackage-query
2763dbf9bd73e55564ff2603da461b92ee1d12a2
Slight refactoring.
diff --git a/HackageCollision.hs b/HackageCollision.hs index 0812eae..8336f59 100644 --- a/HackageCollision.hs +++ b/HackageCollision.hs @@ -1,110 +1,110 @@ {-# LANGUAGE DeriveDataTypeable #-} import Prelude hiding (readFile) import Control.Applicative import Control.Monad.Writer import Control.Monad.State ...
ezyang/hackage-query
426a38cfc5169980829af48d6da1c3d50e3ad3cc
Compile with Wall and Werror.
diff --git a/HackageCollision.hs b/HackageCollision.hs index 05672c5..0812eae 100644 --- a/HackageCollision.hs +++ b/HackageCollision.hs @@ -1,112 +1,110 @@ {-# LANGUAGE DeriveDataTypeable #-} import Prelude hiding (readFile) import Control.Applicative -import Control.Monad -import Control.Monad.Maybe import Co...
ezyang/hackage-query
4b0421b7ab8b92e4dfefc2b7d4caa8889a7a53d2
Cosmetic code cleanup, use strict and add types.
diff --git a/HackageCollision.hs b/HackageCollision.hs index e000dc4..05672c5 100644 --- a/HackageCollision.hs +++ b/HackageCollision.hs @@ -1,123 +1,112 @@ {-# LANGUAGE DeriveDataTypeable #-} -import Foreign +import Prelude hiding (readFile) +import Control.Applicative import Control.Monad import Control.Monad....
tdanford/gse-stereo-t
94e81e9c7d82cc36826468c23874abf039f290ba
Adding a readme.
diff --git a/README b/README new file mode 100644 index 0000000..27f69b1 --- /dev/null +++ b/README @@ -0,0 +1,2 @@ + +GSE-STEREO-T is a project to automatically segment strand-specific tiling microarray data and to call transcripts from the results.
tdanford/gse-stereo-t
e2477a88a84271fe1d0f58bb92c6c4d007575027
Added three new dependencies.
diff --git a/lib/Jama-1.0.2.jar b/lib/Jama-1.0.2.jar new file mode 100644 index 0000000..824d133 Binary files /dev/null and b/lib/Jama-1.0.2.jar differ diff --git a/lib/colt.jar b/lib/colt.jar new file mode 100644 index 0000000..a7192f6 Binary files /dev/null and b/lib/colt.jar differ diff --git a/lib/concurrent.jar b/...
tdanford/gse-stereo-t
6f713655856aa8fa50351f71e756bb899b6ee317
Large import of external ("CGS-tools") code upon which a lot of the GSE-Stereo system depends. These are introduced as source files, since (a) their workings are necessary to understand for GSE-STEREO, and (b) they don't have a home anywhere else anyway.
diff --git a/src/edu/mit/csail/cgs/cgstools/oldregression/ArrayValuation.java b/src/edu/mit/csail/cgs/cgstools/oldregression/ArrayValuation.java new file mode 100644 index 0000000..4e59368 --- /dev/null +++ b/src/edu/mit/csail/cgs/cgstools/oldregression/ArrayValuation.java @@ -0,0 +1,20 @@ +package edu.mit.csail.cgs.cg...
tdanford/gse-stereo-t
7af7e63a2811dbd92229575dd7cab9e581f91f26
Added a jar file with the GSE dependencies (utils, viz, datasets, ewok, clustering, and tools modules).
diff --git a/lib/gse-dependencies-1.0.0.jar b/lib/gse-dependencies-1.0.0.jar new file mode 100644 index 0000000..94c49f4 Binary files /dev/null and b/lib/gse-dependencies-1.0.0.jar differ
sole/jranular
78408df91043a326af1ec28121348936512e7394
more info
diff --git a/README b/README index 9a727c1..45d413b 100644 --- a/README +++ b/README @@ -1,2 +1,4 @@ granular-synths-inspired javascript toy by http://5013.es + +For more information visit http://5013.es/p/4
sole/jranular
353ebfad3d2c7bef26f703f341c147d6ac70a3bc
current code
diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..6c27395 --- /dev/null +++ b/src/index.html @@ -0,0 +1,67 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="utf-8"> + <link rel="stylesheet" type="text/css" href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.0/themes/va...
saketkunwar/erly_boid
d173d8019337de38b7b8336757ca64609c464a99
appletviewer option needs to specify security policy file
diff --git a/Readme.txt b/Readme.txt index 59c4f2d..7d2c8a8 100644 --- a/Readme.txt +++ b/Readme.txt @@ -1,54 +1,56 @@ # Copyright 2009 saket kunwar # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a co...
hariis/yeeyay
4f490600014ce4f355aad2db248ab80241ff0a4c
added delayed_job
diff --git a/app/controllers/venues_controller.rb b/app/controllers/venues_controller.rb index 51526a8..855be87 100644 --- a/app/controllers/venues_controller.rb +++ b/app/controllers/venues_controller.rb @@ -1,350 +1,351 @@ class VenuesController < ApplicationController include GeoKit::Geocoders include Geokit:...
hariis/yeeyay
4c31f23ba45c98eb460d743af344c87c1d1dc356
added status messages after sharing events
diff --git a/app/controllers/events_controller.rb b/app/controllers/events_controller.rb index 60a03c1..78f7336 100644 --- a/app/controllers/events_controller.rb +++ b/app/controllers/events_controller.rb @@ -1,411 +1,411 @@ class EventsController < ApplicationController include GeoKit::Geocoders include Geokit:...
hariis/yeeyay
8e8896e3a518ccc1c7c1afdbf9e28227b95288ff
added status message after sharing venues
diff --git a/app/controllers/venues_controller.rb b/app/controllers/venues_controller.rb index 26ea1c4..6a9f194 100644 --- a/app/controllers/venues_controller.rb +++ b/app/controllers/venues_controller.rb @@ -1,347 +1,349 @@ class VenuesController < ApplicationController include GeoKit::Geocoders include Geokit:...
hariis/yeeyay
1fe10ba60f6fe0cab30a1173c8b183864004bb78
fixed bug
diff --git a/app/models/notifier.rb b/app/models/notifier.rb index ef94dfb..933758c 100644 --- a/app/models/notifier.rb +++ b/app/models/notifier.rb @@ -1,51 +1,51 @@ class Notifier < ActionMailer::Base default_url_options[:host] = "www.plannerbee.com" def password_reset_instructions(user) subject ...
hariis/yeeyay
0f1e3e67179667347d05da43e83faeadc6f383ec
added a method
diff --git a/app/controllers/application.rb b/app/controllers/application.rb index 5d9311e..487321c 100644 --- a/app/controllers/application.rb +++ b/app/controllers/application.rb @@ -1,124 +1,141 @@ # Filters added to this controller apply to all controllers in the application. # Likewise, all the methods added wil...
hariis/yeeyay
9ebd7417a9d368bfc0ba5588bbae5dad1cf7f97c
get mails working
diff --git a/app/models/notifier.rb b/app/models/notifier.rb index 9e49976..ef94dfb 100644 --- a/app/models/notifier.rb +++ b/app/models/notifier.rb @@ -1,51 +1,51 @@ class Notifier < ActionMailer::Base - default_url_options[:host] = "www.yeeyay.com" + default_url_options[:host] = "www.plannerbee.com" def p...
hariis/yeeyay
dc7e5253590ede6697cd7a03e81a77d667c52c4e
added search_by_name for events
diff --git a/app/controllers/application.rb b/app/controllers/application.rb index 4546f72..5d9311e 100644 --- a/app/controllers/application.rb +++ b/app/controllers/application.rb @@ -1,120 +1,124 @@ # Filters added to this controller apply to all controllers in the application. # Likewise, all the methods added wil...
hariis/yeeyay
ee6a9c55a96bfb31e68213c1a77f93c4d00c6a89
street_address split and search by name
diff --git a/app/controllers/events_controller.rb b/app/controllers/events_controller.rb index ba29d74..78819f6 100644 --- a/app/controllers/events_controller.rb +++ b/app/controllers/events_controller.rb @@ -1,386 +1,386 @@ class EventsController < ApplicationController include GeoKit::Geocoders include Geokit:...
hariis/yeeyay
72416276750cad53265d0b8258b938a238bbecc0
tweaked venue_already_exists check
diff --git a/app/models/venue.rb b/app/models/venue.rb index 5655170..c486347 100644 --- a/app/models/venue.rb +++ b/app/models/venue.rb @@ -1,137 +1,137 @@ class Venue < ActiveRecord::Base acts_as_mappable :auto_geocode=>{:field=>:street_address, :error_message=>'could not be located'}, :lat_column_name => 'lat...
hariis/yeeyay
13a8f209d02716235e14a284f403eaac836b9d00
readded migrations
diff --git a/db/migrate/20090112222352_create_categories.rb b/db/migrate/20090112222352_create_categories.rb new file mode 100644 index 0000000..4914ac4 --- /dev/null +++ b/db/migrate/20090112222352_create_categories.rb @@ -0,0 +1,80 @@ +class CreateCategories < ActiveRecord::Migration + def self.up + create_table ...
hariis/yeeyay
8a1b92237fb38fb3dbda6b8b9ca4be1d3f4c77ff
removed incorrect migration file
diff --git a/config/deploy.rb b/config/deploy.rb index e4b1309..78592fb 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -1,40 +1,40 @@ -default_run_options[:pty] = true +default_run_options[:pty] = true #REASON: http://www.mail-archive.com/capistrano@googlegroups.com/msg02817.html set :application, "yeeyay...
hariis/yeeyay
6a73073e5d1d5f4b47834cdae0df1333a1818d78
readded migrations
diff --git a/app/views/events/find.html.erb b/app/views/events/find.html.erb index 042b979..57b8082 100644 --- a/app/views/events/find.html.erb +++ b/app/views/events/find.html.erb @@ -1,71 +1,73 @@ <%= GMap.header %> <%= @map.to_html if @map != nil %> <div id="search-results"> <% count_s = @events ? pluraliz...
hariis/yeeyay
5f9a41bd8fb0f82214bac7b186924ace7e0f771f
readded migrations
diff --git a/db/migrate/20090112222352_create_categories.rb b/db/migrate/20090112222352_create_categories.rb new file mode 100644 index 0000000..4914ac4 --- /dev/null +++ b/db/migrate/20090112222352_create_categories.rb @@ -0,0 +1,80 @@ +class CreateCategories < ActiveRecord::Migration + def self.up + create_table ...
hariis/yeeyay
084f02264347b2c65d295a96307b69b2d29f04da
updaed gapi keys in views
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 931bae7..05100c2 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -1,138 +1,138 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/x...
hariis/yeeyay
4d071a1458b8f029c1004137e898b90ad7ad5343
updaed gapi keys in views
diff --git a/app/models/user.rb b/app/models/user.rb index acd17c1..47670b3 100644 --- a/app/models/user.rb +++ b/app/models/user.rb @@ -1,47 +1,47 @@ class User < ActiveRecord::Base acts_as_authentic has_many :venues, :foreign_key => :added_by has_many :venue_submissions , :class_name => :venues has_many ...
hariis/yeeyay
b24bf54e0d6d656e32158bf7532fb2cf4050caa0
updaed gapi keys in views
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 41182ee..931bae7 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -1,138 +1,138 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/x...
hariis/yeeyay
5b5ac9f1971fab02c96ea84a61d77026f007297b
updaed gapi keys in views
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb index 931bae7..41182ee 100644 --- a/app/views/layouts/application.html.erb +++ b/app/views/layouts/application.html.erb @@ -1,138 +1,138 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/x...